如何更改特定的vscode主题参数?

时间:2017-09-28 07:04:51

标签: visual-studio-code vscode-settings

如何更改特定的vscode主题参数?在我的情况下,我想改变" wordHighlight"和" wordHighlightStrong"。我试试:

"editor.tokenColorCustomizations": {
    "textMateRules": [
        {

        }
    ]
},

但是不能理解写什么。

1 个答案:

答案 0 :(得分:1)

试试这个:

"editor.tokenColorCustomizations": {
    "textMateRules": [{
        "scope": "var.identifier",
        "foreground": "#00FF00",
        "fontStyle": "bold"
    }]
}

提示:按F1,然后输入Developer: Inspect TM Scopes(这适用于VSCode版本1.17.0)。
also there is an issue

见:
TextMate Grammars
Themes, Snippets and Colorizers
TextMate Scope Selectors
TextMate Language Grammars

我希望这会有所帮助。