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.
Add to keybindings.json
file
{
"key": "ctrl+e",
"command": "goToWord.find"
}
Override default match word RegExp in User Settings or Workspace Settings
{
"goToWord.matchRegExp": "[^\\s`~!@#$%^&*()-=+\\[{\\]}\\|;:'\",\\.<>/?]+"
}