VSCODE - disable selection and selection in html tags and editor line

Here are some of the things that I really find visually annoying in VSCODE, I was hoping someone could help me turn them off.

1.) The designation <> in the tags.

Check outlines in the tag.

I do not know about you, but I find it very annoying.

2.) The contour in the active line

enter image description here

I ran through all the workspace settings and set it to false, which could (or at least) be somehow related to the highlight and display, but not luck.

+9
source share
4 answers

Try this "editor.matchBrackets": false in the settings - User / Workspace

image here

+3
source

The active line loop can be disabled as follows:

 "editor.renderLineHighlight": "none" 

As for the highlighting of the brackets, I could not find any settings for this. It seems that there are at least three open questions related to this, so you have to wait until they are resolved:

Personally, I find these indicators useful. :)

+2
source

The boxes really annoyed me, but I like the testimony. I found an extension called sliding brackets. He's great for me. It changes to a subtle underline instead of a field. Here is the link:

Thin match brackets

+2
source

See My last 3 settings Press Ctrl +, to configure VS and search Check the image

-one
source

Source: https://habr.com/ru/post/1014309/


All Articles