doufu
doufu

Reputation: 180

Visual Studio Code highlight selection on minimap (not scrollbar)

Is there a way to highlight all matches position on the vsc's minimap when double click a word in the editor?

I have tried select highlight in minimap, but it renders the highlight on the scrollbar instead of the minimap as figer 1.

Does anyone know a way to achieve my requirements, thanks!

There is an extension of visual studio named RockMargin as figure 2.

enter image description here Figure 1.

enter image description here Figure 2.

Update: the author of extension select highlight in minimap replied it's not possible to edit the minimap rendering for the moment(202004). Hope it can be realized in the future T_T.

Upvotes: 2

Views: 2215

Answers (1)

Mark
Mark

Reputation: 181639

This is the one you are looking for:

"minimap.selectionOccurrenceHighlight": "#ff0000",

You can try these in your colorCustomiztions in settings.json:

"workbench.colorCustomizations": {

  "minimap.selectionOccurrenceHighlight": "#ff0000",

  "minimap.selectionHighlight": "#bbff00",
  "minimap.findMatchHighlight": "#ff0000",
  "minimap.warningHighlight": "#ff0000"
}

Definitely reload vscode after making any changes to colorCustomiztions. I get some funky behaviour if I don't do that.

Upvotes: 2

Related Questions