KAVA
KAVA

Reputation: 337

How don't show excess vertical lines in VSCode

I have 2 files, first .phtml

Screen of code from there:

enter image description here

And second file .vue:

enter image description here

Using the red arrows in the screenshot above, I want to show that there are extra vertical lines in the Vue file, which, it seems, do not connect anything.

There are no such lines in the .phtml file

How can I remove them?

Upvotes: 0

Views: 416

Answers (2)

KAVA
KAVA

Reputation: 337

Its work for me:

"editor.detectIndentation": false 

Upvotes: 0

Mike B
Mike B

Reputation: 2776

You have to set that in the settings file as stated in the docs of VSCode settings
Press Ctrl + Shift + p, type settings and go to Preferences: Open Settings (JSON) to open User Settings, and add this:

  "editor.renderIndentGuides": false,

Upvotes: 2

Related Questions