如何更改 vscode 中的缩进指南符号?
How can i change the indentationGuides symbols in vscode?
实际上可以更改 Visual Studio 代码中的缩进引导符号吗?
从 VSCode 1.16 开始,这是不可能的。功能请求在此处跟踪:https://github.com/Microsoft/vscode/issues/29634
您目前可以通过设置 editorWhitespace.foreground
来更改这些符号的颜色
"workbench.colorCustomizations": {
"editorWhitespace.foreground": "#f0f"
},
实际上可以更改 Visual Studio 代码中的缩进引导符号吗?
从 VSCode 1.16 开始,这是不可能的。功能请求在此处跟踪:https://github.com/Microsoft/vscode/issues/29634
您目前可以通过设置 editorWhitespace.foreground
"workbench.colorCustomizations": {
"editorWhitespace.foreground": "#f0f"
},