答案 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)
我找到了一个扩展名:
https://marketplace.visualstudio.com/items?itemName=spywhere.guides
或者这个:
https://marketplace.visualstudio.com/items?itemName=SirTori.indenticator
答案 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中工作。