Reputation: 5483
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.
Upvotes: 5
Views: 8329
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