Tanveer Rifu
Tanveer Rifu

Reputation: 205

How can I display indent lines in front of markup?

In Visual Studio Code, you can see some lines in front of tags. How can I configure Visual Studio Code to show these lines?

enter image description here

Upvotes: 1

Views: 83

Answers (2)

Sean O'Sullivan
Sean O'Sullivan

Reputation: 1

They are known as "indent render guides", if you go to file > preferences > settings you can search for them there and toggle the setting on.

Upvotes: 0

Sajeetharan
Sajeetharan

Reputation: 222722

I think what you are looking for is vertical rules, To configure it, go to menu File → Preferences → Settings and add this to to your user or workspace settings:

"editor.rulers": [80,120]

Upvotes: 1

Related Questions