GorvGoyl
GorvGoyl

Reputation: 49680

VS code - highlight selected word in minimap

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?

enter image description here

Upvotes: 29

Views: 3638

Answers (3)

Mark
Mark

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

HaaLeo
HaaLeo

Reputation: 11772

It is not available yet. But this feature request is tracked here.

Upvotes: 4

David Refoua
David Refoua

Reputation: 3617

I use the mde.select-highlight-minimap plugin, which works great.

VS code - highlight selected word in minimap

Upvotes: 8

Related Questions