How can I hide indent guides in Visual Studio Code?

前端 未结 5 1953
甜味超标
甜味超标 2021-01-03 21:01

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 t

5条回答
  •  走了就别回头了
    2021-01-03 21:39

    Go to

    Menu FilePreferencesSettings

    And search for "editor.folding". Set it to

    "editor.folding": false

    This will disable the lines and the folding function.

    Since you want to disable the render indent guides,

    From the documentation

      "editor.renderIndentGuides": false,
    

    This will disable the indent guides.

提交回复
热议问题