Reputation: 205
In Visual Studio Code, you can see some lines in front of tags. How can I configure Visual Studio Code to show these lines?
Upvotes: 1
Views: 83
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
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