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.
CodePudding user response:
In your settings.json
"editor.rulers": [
80
],
Change this number to null
"editor.rulers": [],
More on rulers here: vs-code-vertical-rulers