Reputation: 49680
Just shifted to VS code from Atom (nostalgia :P).
I'm looking for a way to highlight selected word in minimap. Any idea how to get this for VS code?
Upvotes: 29
Views: 3638
Reputation: 182974
From this PR: Minimap - highlight all instances of selected word a colorCustomization is being added to highlight other occurrences of the selected word:
"workbench.colorCustomizations": {
"minimap.selectionOccurrenceHighlight": "#ff0000"
}
Should be in Stable v1.61, in Insiders now.
Upvotes: 2
Reputation: 11772
It is not available yet. But this feature request is tracked here.
Upvotes: 4
Reputation: 3617
I use the mde.select-highlight-minimap
plugin, which works great.
Upvotes: 8