1

enter image description here

What is the name of the line that you're seeing in the picture above in Atom editor?
And how to have it in Visual Studio Code?

1

1 Answer 1

2

In VS Code it's called a ruler (AKA column guide(line) / indent guide / wrap guide in other editors). You can configure them using the editor.rulers setting:

"editor.rulers": [80, 100], 

or with colors:

"editor.rulers": [ { "column": 80, "color": "#88776655" }, { "column": 100, "color": "#ff887766" }, ], 
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.