Reputation: 15121
I want to remove the distracting match bracket lines below.
The settings that I have used so far are:
{
"editor.renderLineHighlight": "none",
"editor.matchBrackets": "never"
}
Upvotes: 2
Views: 2234
Reputation: 168
This worked for me:-
open settings.json CTRL + SHIFT + P and type "Open Settings (JSON)"
paste the following code at the bottom:-
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.matchBrackets": "near",
"editor.guides.highlightActiveBracketPair": false,
Upvotes: 0
Reputation: 27525
On a similar issue:
Below is what I was looking for (removes vertical lines on left):
File: settings.json
Setting:
"editor.guides.indentation": false
Old that does not work anymore:
"editor.renderIndentGuides": false
More details: https://code.visualstudio.com/docs/getstarted/userinterface#_indent-guides
Upvotes: 5
Reputation: 15121
Thank rioV8 for your comments.
Add the following settings:
"bracketPairColorizer.showHorizontalScopeLine": false,
"bracketPairColorizer.showVerticalScopeLine": false
Upvotes: 0