如何更改VSCODE中括号之间的缩进引导线颜色?

时间:2017-12-22 13:31:12

标签: visual-studio-code vscode-settings

我想更改2个括号之间的线条颜色。

实际上,我想要这个

enter image description here

这是我想要的

enter image description here

有谁知道怎么做?

非常感谢

5 个答案:

答案 0 :(得分:10)

VSCode v.1.23(2018年5月发布)增加了对活动和其他非活动缩进指南进行着色的功能:

"workbench.colorCustomizations": {
    "editorIndentGuide.activeBackground": "#ff0000",
    "editorIndentGuide.background": "#ff00ff"
}

请参阅release notes indent guides

如果您只想显示有效指南,请将非活动指南的背景设置为透明ala:

"workbench.colorCustomizations": {
    "editorIndentGuide.background": "#fff0"
}

答案 1 :(得分:5)

这些是缩进指南。它们的颜色可以在settings.json中修改:

"workbench.colorCustomizations": {

   "editorIndentGuide.background": "#ff0000"
}

答案 2 :(得分:0)

答案 3 :(得分:0)

您可以使用它, 我相信这就是你想要的

参考:https://code.visualstudio.com/updates/v1_23#_highlighted-indent-guides

"workbench.colorCustomizations":{
   "editorIndentGuide.activeBackground":"#ff0000"
}

答案 4 :(得分:0)

我从Visual Studio Marketplace安装了Indent Guides扩展。在VS 2019中工作。