如何在 vscode 自定义主题中更改 'this' 关键字颜色

How to change 'this' keyword color in vscode custom theme

我正在为 Atom One 深色主题开发自定义主题,但我不知道如何更改 'this' 关键字颜色。打开 Developer: Inspect Editor Tokens and Scopes 时,它显示为一个变量。 with dark one theme on

但是对于 vscode 常规深色主题,它确实以不同的颜色显示。 with vscode dark theme

有什么想法吗?

谢谢!

你只需要声明一个tokenColorCustomizatons

    "editor.tokenColorCustomizations": {
        "textMateRules": [
            {
                "scope" : "variable.language.this.js",
                "settings": {
                    // Include any settings you want for the this keyword.
                    "foreground": "#FF0000"
                }
            }
        ]
    }