Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>linkify-patternNew to Visual Studio Code? Get it now.
linkify-pattern

linkify-pattern

Sebastian Barfurth

|
8 installs
| (0) | Free
Turn patterns into clickable links.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

linkify-pattern

Turn patterns into clickable links.

Configuration

The linkify-pattern extension only accepts one configuration option: A list of patterns and URLs. Each pattern will be linked using the respective URL. Patterns may contain capture groups that can be used in the URL with $1, $2 etc. The entire match is available as $0. If multiple patterns overlap, the first match wins and all other matches will be ignored.

{
  "linkify-pattern.patterns": [
    {
      "pattern": "TODO-([0-9]+)",
      "url": "https://my-todo-tracker.com/$1",
    },
  ],
}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft