GCoe
GCoe

Reputation: 885

Code block structure highlighting extension for Visual Studio Code

Please,

Does anyone know an extension for Visual Studio Code that highlight code blocks ( for Javascript and HTML ) as in the image ?

Thank you

Example

Upvotes: 12

Views: 15079

Answers (4)

Carlos J García
Carlos J García

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

JinSnow
JinSnow

Reputation: 1683

This works for me

"editor.guides.bracketPairs": true, // or active

Upvotes: 6

TheBlackMan
TheBlackMan

Reputation: 29

Use blockman, it does something like that

Upvotes: -1

seairth
seairth

Reputation: 2072

  1. Install the latest version of VS Code (1.3.0)
  2. Edit your User or Workspace settings.json.
  3. Add "editor.renderIndentGuides": true

Upvotes: 20

Related Questions