Visual Studio代码侧栏垂直指南(自定义侧栏)

时间:2017-01-27 16:07:12

标签: tree visual-studio-code customization indentation sidebar

是否有人知道Visual Studio代码的扩展名,以便在侧边栏(对于文件和文件夹)上显示垂直指南,例如netbeans?

或者在vscode中有一些设置?

Netbeans Snapshot

感谢您的帮助。

4 个答案:

答案 0 :(得分:3)

June开始,您可以使用以下方法添加准则:

"workbench.tree.renderIndentGuides": "always", // Can also be set to "onHover"

您还可以使用以下方法更改其颜色:

"workbench.colorCustomizations": {
    "tree.indentGuidesStroke": "#008070"
},

如果要更改缩进宽度,可以使用:

"workbench.tree.indent": 18,

答案 1 :(得分:1)

答案 2 :(得分:0)

它仍然无法使用。我认为当涉及到具有复杂目录结构的项目时,你会遇到导航这个树的问题(对我来说这非常非常烦人)。

现在我正在使用扩展程序seti-cons。它不会创建垂直线,但会为文件夹等添加图标。这有点帮助:)

这里,它在示例项目中的样子如何: enter image description here

这不完美,但总是有所不同。

答案 3 :(得分:0)

并且在v1.36中实现了树缩进指南,请参见release notes, tree indent guides

另外,您可以使用以下colorCustomiztion更改其颜色:

"tree.indentGuidesStroke": "#ff0000"

tree indent guides