Reputation: 227
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.
I don't know about you, but I find this very annoying.
2.) Outline in the active line
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.
Upvotes: 14
Views: 4672
Reputation: 476
Try this one "editor.matchBrackets": false
in your Preferences - User/Workspace setting
It's in Settings under Editor: Match Brackets
Upvotes: 11
Reputation: 11
See My Last 3 Setting's Press ctrl + , for VS Setting and Search Check Image
Upvotes: -1
Reputation: 397
The boxes really annoyed me, but I do like the indication. I found an extension called Subtle Match Brackets. It works perfect for me. It changes to a subtle underline instead of the box. Here's a link:
Upvotes: 3
Reputation: 34128
The active line outline can be disabled like this:
"editor.renderLineHighlight": "none"
As for bracket highlighting, I couldn't find any setting for this either. It looks like there are at least three open issues related to this, so you might have to wait until those are resolved:
Personally, I find these indicators helpful. :)
Upvotes: 2