How can I hide the following lines to get a cleaner code view?
Like this in the official documentation:
How can I do that or find settings in the documentation?
See Question&Answers more detail:osHow can I hide the following lines to get a cleaner code view?
Like this in the official documentation:
How can I do that or find settings in the documentation?
See Question&Answers more detail:osPress Ctrl + Shift + p, type settings
and select Preferences: Open Settings (JSON)
to open User Settings, and add this:
// Controls whether the editor should render indent guides "editor.renderIndentGuides": false,
This will disable the indent guides.
See the documentation for User Settings.