proamar
proamar

Reputation: 21

Getting rid of annoying rectangular highlights in vs code

I want to get rid of highlights as shown in the below picture. I find it really annoying.

enter image description here

Upvotes: 1

Views: 458

Answers (1)

Mark
Mark

Reputation: 182941

Without more info it could be one of two things:

setting: Editor: Selection Highlight disable that or

change its color via:

"workbench.colorCustomizations": {
  "editor.selectionHighlightBackground": "#f000",
 }

The last digit in that hex is opacity.

or they could be find matches in which case you will have to do:

"workbench.colorCustomizations": {
  "editor.findMatchHighlightBackground": "#0000"
}

The hexes can also be "#ff000000" eight characters - last two being opacity.

Upvotes: 3

Related Questions