VS Code 设置 JavaScript 属性颜色

我试图弄清楚如何在 VS Code 中更改 JS 文件中的对象属性颜色。例如:


var vehicle = {

    type: "Fiat",

    model: "500",

    color: "white"

};

如何设置“类型、型号和颜色”属性的颜色?


我以为这可以在 settings.json 中使用,但事实并非如此:


"editor.tokenColorCustomizations": {

    "functions": {

        "fontStyle": ""

    },

    "[TommyTachas]": {

        "comments": "#db33a3",

        "textMateRules": [

            {

                "scope": "support.type.property-name.js",

                "settings": {

                    "foreground": "#ff0000"

                }

            }

        ]

    }

}


FFIVE
浏览 154回答 3
3回答

慕标5832272

使用范围是variable.other.property.js  "editor.tokenColorCustomizations": {    "textMateRules": [      { "scope":"variable.other.property.js",        "settings": {"foreground": "#00ff00"}      }    ]  }

幕布斯6054654

尝试一下  "editor.semanticTokenColorCustomizations": {     "[your current theme]": {        "rules": {        "property": "#AE81FF"     }  }

慕桂英4014372

在您的情况下,如果您想更改 var 颜色,它将是“storage.type.js”以下链接包含您要查找的信息。https://github.com/microsoft/vscode/issues/76308?msclkid=bfff79bec58d11eca167869d42275429
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript