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 Answer
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" }, ], 