如何在VSCode中隐藏缩进指南?

时间:2018-03-13 12:13:54

标签: visual-studio-code vscode-settings

如何隐藏这一行:
enter image description here

获得更清晰的代码视图。在官方文档中这样: enter image description here

我该怎么做或在文档中找到设置?

UPD。解决了。谢谢大家。

"editor.renderIndentGuides": false,

5 个答案:

答案 0 :(得分:8)

CTRL + 打开用户设置,然后添加:

Private Sub GroupBox1_MouseDown(sender As Object, e As MouseEventArgs) Handles GroupBox1.MouseDown
    GroupBox1.Capture = False
    Dim msg As Message = Message.Create(Me.Handle, &HA1, 2, 0&)
    Me.DefWndProc(msg)
End Sub

这将禁用缩进指南。

请参阅documentation for User Settings

答案 1 :(得分:2)

这是一种隐藏缩进线但保留活动线指示器的方法。

将此添加到settings.json

"workbench.colorCustomizations": {
  "editorIndentGuide.background": "#00000000" // hide via 100% transparency.
}

仅活动缩进块将可见。 only active guide showing

要控制活动线的颜色,请添加...

"editorIndentGuide.activeBackground": "#444444b9" // Grey with some transparency.

答案 2 :(得分:1)

转到

文件 - >偏好 - >设置

并搜索 "editor.folding" 将其设置为

<强> "editor.folding" : false

这将禁用线条和折叠功能。

编辑:

由于您要禁用渲染缩进指南,

来自 docs

  "editor.renderIndentGuides": false,

这将禁用缩进指南。

答案 3 :(得分:1)

解决: “editor.renderIndentGuides”:false

答案 4 :(得分:0)

我尝试了上面的方法,但是它不允许我这样做,因为它说文件是只读的,所以我找到的解决方案如下:-

点击文件>首选项>设置

在搜索框中,键入“渲染缩进指南”(不带“”)

取消选中显示“控制编辑器是否应显示缩进指南”的框

这将删除缩进参考线。