我使用的是一个黑暗的专业主题,但我不喜欢的颜色突出显示缩进。

此设置无助于:
"workbench.colorCustomizations": {
"editorIndentGuide.activeBackground": "#9e9e9e"
},它不是editorIndentGuide,因为我甚至不能用以下方法关闭它们:
"editor.renderIndentGuides": false,发布于 2022-06-09 16:16:21
现在,托架对着色剂-2已被废弃,新的解决方案是。
{
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"workbench.colorCustomizations": {
"editorBracketHighlight.foreground1": "#ffe625",
"editorBracketHighlight.foreground2": "#00ff15",
"editorBracketHighlight.foreground3": "#25deff",
"editorBracketHighlight.foreground4": "#c825ff",
"editorBracketHighlight.foreground5": "#ff0077",
"editorBracketHighlight.foreground6": "#ff803b",
"editorBracketHighlight.unexpectedBracket.foreground": "#ff0000"
}
}https://stackoverflow.com/questions/66849686
复制相似问题