Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

enter image description here

question from:https://stackoverflow.com/questions/65895034/getting-rid-of-annoying-rectangular-highlights-in-vs-code

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.7k views
Welcome To Ask or Share your Answers For Others

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...