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

Categories

0 votes
1.6k views
in Technique[技术] by (71.8m points)

vscode settings - 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

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...