"editor.bracketPairColorization.enabled": true only colorizing one nesting level vs-code

Viewed 10

I am trying to use "editor.bracketPairColorization.enabled" but it seems to works only with one nesting level and keep the same color for all nested brackets.

enter image description here

I've tried to force the color manually but only affects the very first brackets pair.

enter image description here

I am using vs code for mac Version: 1.71.2 (Universal)! Someone here has faced the same issue?

1 Answers

Solved: Set "editor.bracketPairColorization.independentColorPoolPerBracketType": false.

It was set to true. Now it works as espected.

enter image description here

Related