Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I remove left vertical lines in VS Code?

People also ask

How do you get rid of vertical lines in VSCode?

Answers 1 : of How can I remove left vertical lines in VS Code. Go to the menu Code->Preference->Settings and search for "renderIndentGuides".

How do I get rid of indent lines 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.

What is the vertical line in VSCode?

Vertical Rulers assist developers in making their code more readable by determining when to break the code if it becomes longer than the specified length. It assists in the detection of long lines.


Go to the menu Code->Preference->Settings and search for "renderIndentGuides". The complete setting should appear as:

"editor.renderIndentGuides": true,

Change it to false.

UPDATE:

Keys had changed since v1.61 - on later version set the following instead:

"editor.guides.indentation": false