Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable angle bracket highlighting in Visual Studio Code?

I just want to disable the character highlighting that happens on angle brackets, as I find the square box to be annoying. Is there a way to turn it off?

enter image description here

like image 812
Vadim Peretokin Avatar asked Jul 25 '17 10:07

Vadim Peretokin


People also ask

How do you turn off colored brackets in VSCode?

"editor. bracketPairColorization. enabled": "false", Or search for "Bracket pair" in the settings UI.

How do I turn off highlighting in VSCode?

You can enable / disable semantic highlighting in the VS Code settings. Press F1 to open the command window, and then enter "Open Settings (UI)". Search "semantic" to find the Editor>Semantic Highlighting item . Set the value to true to enable semantic highlighting; otherwise set it to false .


2 Answers

You can search keyword highlight in setting, and you change Editor:Match Bracket to never, like this:

enter image description here

like image 51
Asad Avatar answered Oct 15 '22 16:10

Asad


You can use the following: // Highlight matching brackets when one of them is selected. "editor.matchBrackets": false, however it disables highlighting all the brackets not only the angle brackets.

like image 42
Sourav De Avatar answered Oct 15 '22 16:10

Sourav De