Reputation: 885
Please,
Does anyone know an extension for Visual Studio Code that highlight code blocks ( for Javascript and HTML ) as in the image ?
Thank you
Upvotes: 12
Views: 15079
Reputation: 504
As of today, I would recommend Bracket Pair Colorizer
, git, if you use a bracketed language.
Note: At the time of writing the note a new version 2 of the suggested extension were under development.
Update Sep 2024: The first git repo has been removed and the second development repo has been, and quote, "archived by the owner on Nov 4, 2023."
Upvotes: 0
Reputation: 1683
This works for me
"editor.guides.bracketPairs": true, // or active
Upvotes: 6
Reputation: 2072
"editor.renderIndentGuides": true
Upvotes: 20