Highlight the supplied bracket in Visual Studio Code

Is there a way to highlight the parentheses when the cursor is anywhere within the enclosed parentheses? The default settings only highlight it when I place the cursor next to the brackets.

+3


source to share


1 answer


VS Code only supports bracket matching when the cursor is near an open or closing bracket. Maybe an extension will help highlight the enclosed parentheses wherever you are, but I couldn't find it.



If you just want to quickly find matching brackets, curly braces, parsers, etc., you can try Bracket Pair Colorizer or Rainbow Brackets .

+3


source







All Articles