Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vertical lines in visual studio codes editor window?

I have these wierd two vertical lines in VSCode editor window. What are they & how do you remove them?

enter image description here https://www.diaryofacoder.com/screenshot.png

The following was in my settings.json file that caused the problem:

"editor.rulers": [
        72,50
    ],
like image 588
coding4fun Avatar asked Feb 09 '19 03:02

coding4fun


People also ask

How do I enable vertical lines in Visual Studio?

Navigate to Tools –> Options –-> Text Editor–> General, and then you will find “Show structure guide lines” option is Checked.

How do I get rid of the squiggly lines in VSCode?

How do I remove the indentation line in VSCode? Click on menu File → Preferences → Settings. Untick the box which says "Controls whether the editor should render indent guides". This removes the indent guides.


1 Answers

Remove the "editor.rulers": [140] from editor settings as follows:

enter image description here enter image description here

like image 114
TanvirArjel Avatar answered Nov 15 '22 09:11

TanvirArjel