How to "Go to next symbol highlight" #21193
Unanswered
shybyte
asked this question in
General Q&A
Replies: 1 comment
-
It's not mapped by default, but you can do a custom keymap for e.g. [
{
"context": "Editor",
"bindings": {
"f7": ["editor::SelectNext", { "replace_newest": true }]
}
}
] |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
When I move the cursor on a symbol in the editor, it highlights all occurrences of this symbol in the current file.
How can I move the cursor (jump) between these highlighted symbols?
In VS-Code this functionality is called "Go to next symbol highlight" and it is very prominently mapped to F7.
Interestingly it's very easy extend the (multi)selection to include the next occurrence:
But I don't want to extend the selection, I just want to jump/navigate/toggle between all occurrences.
Beta Was this translation helpful? Give feedback.
All reactions