"VSCODE" - 如何改变功能标签的颜色? -
"VSCODE" - How to change function tag color? -
我想将 Monokai 模板更新为 “lazy eye” 综合症。为此,我需要更改一些标签颜色。一个是功能,但是当我添加到 setting.json
"workbench.colorCustomizations": {
"[Monokai]": {
"textMateRules": [
{
"scope": "entity.name.function",
"settings": { "fontStyle": "", "foreground": "#000000" }
}
]
}
}
我收到消息 Property textMateRules is not allowed.
我该如何改变它?
我在 mac
需要更改的设置是"editor.tokenColorCustomizations"
我想将 Monokai 模板更新为 “lazy eye” 综合症。为此,我需要更改一些标签颜色。一个是功能,但是当我添加到 setting.json
"workbench.colorCustomizations": {
"[Monokai]": {
"textMateRules": [
{
"scope": "entity.name.function",
"settings": { "fontStyle": "", "foreground": "#000000" }
}
]
}
}
我收到消息 Property textMateRules is not allowed.
我该如何改变它?
我在 mac
需要更改的设置是"editor.tokenColorCustomizations"