tmp dev
tmp dev

Reputation: 9219

VS Code, navigate among file symbols

When you select a symbol in VSCode it highlights (underlines) the symbols in the file. Is there a command (keyboard shortcut) that is available which I can use to navigate among the occurrences of the symbol in the file.

Upvotes: 4

Views: 1100

Answers (1)

Matt Bierner
Matt Bierner

Reputation: 65593

Try the Go to next symbol highlight command: editor.action.wordHighlight.next. It is bound to F7 by default.

That command jumps to the next highlighted occurrence in the file. shiftF7 jumps to the previous one

Upvotes: 2

Related Questions