Reputation: 337
I have 2 files, first .phtml
Screen of code from there:
And second file .vue:
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
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