Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 889 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 889 Bytes

Go to Word

Go to any word in current file, work like Sublime Text Goto # (ctrl+;).

It works similar to command Go to Symbol in File but it also searching in comments, strings, variables and supports any file type.

Setup

Add to keybindings.json file

{
    "key": "ctrl+e",
    "command": "goToWord.find"
}

Options

Override default match word RegExp in User Settings or Workspace Settings

{
    "goToWord.matchRegExp": "[^\\s`~!@#$%^&*()-=+\\[{\\]}\\|;:'\",\\.<>/?]+"
}

example

Links