Home > Back-end >  How to remove this line in VSC..?
How to remove this line in VSC..?

Time:10-12

Could you please advise how to remove this line? enter image description here

CodePudding user response:

Search for rulers in the settings pane. Then, from the link edit the .json file.
Or, directly add .vscode/settings.json under your project folder. And paste this: "editor.rulers": [], leave it blank for hiding the visible right margin.

  • Related