0

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?

rioV8
  • 24,506
  • 3
  • 32
  • 49
Ali
  • 1,268
  • 1
  • 13
  • 20

1 Answers1

1

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" },
],
Ghost4Man
  • 1,040
  • 1
  • 12
  • 19