Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VSCODE - Disable highlighting and outlining in html tags and editor line

These are some of the things I really find visually annoying in VSCODE, I was hoping someone could help me disable them.

1.) Outlining <> in tags.

Check out the outlines in the tag.

I don't know about you, but I find this very annoying.

2.) Outline in the active line

enter image description here

I ran through all the workspace settings and set to false all that might - or at least - in any way related to highlighting and outlining but no luck.

like image 321
Chris Javier Oliveros Avatar asked Jan 23 '17 00:01

Chris Javier Oliveros


People also ask

How do I turn off highlighting in VS Code?

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 .

How do I get rid of indent VS line in code?

You can click on View and then Click on Command Palette or type Ctrl + Shift + P keyboard shortcut. Click on Toggle Render Whitespace. This option can be used to toggle Indentation dots in VSCode.

How do I get rid of the blue lines in VS Code?

Press command+shift+p (open command pallete) Then type Disable Error Squiggles. And click on that Disable Error Squiggles.

How do you hide a line in VS Code?

Open up your VSCode keybindings. You'll notice that my keybinding is CMD + L. You can choose whatever you want, as long as it's not already taken. Save your file, and now you should be able to toggle line numbers on/off with whatever keybinding you added in your keybindings file.


1 Answers

Try this one "editor.matchBrackets": false in your Preferences - User/Workspace setting

image here


Newer Visual Studio Code:

It's in Settings under Editor: Match Brackets

U

like image 96
Ashraf Farhan Avatar answered Sep 28 '22 10:09

Ashraf Farhan