Jim Carr
Jim Carr

Reputation: 5483

Vertical LInes Displayed In Editor

Since reinstalling Visual Studio Code a few days ago, I have two vertical lines displayed in my editor. I've not seen this before, I'm not sure what it represents, and I can't figure out how to turn it off.

enter image description here

Upvotes: 5

Views: 8329

Answers (1)

Rohith Nambiar
Rohith Nambiar

Reputation: 3720

In your settings.json

"editor.rulers": [
     80
],

Change this number to null

"editor.rulers": [],

More on rulers here: vs-code-vertical-rulers

Upvotes: 10

Related Questions