我试图弄清楚如何在 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" } } ] }}
3 回答
慕标5832272
TA贡献1966条经验 获得超4个赞
使用范围是variable.other.property.js
"editor.tokenColorCustomizations": {
"textMateRules": [
{ "scope":"variable.other.property.js",
"settings": {"foreground": "#00ff00"}
}
]
}
幕布斯6054654
TA贡献1876条经验 获得超7个赞
尝试一下
"editor.semanticTokenColorCustomizations": {
"[your current theme]": {
"rules": {
"property": "#AE81FF"
}
}
慕桂英4014372
TA贡献1871条经验 获得超13个赞
在您的情况下,如果您想更改 var 颜色,它将是“storage.type.js”
以下链接包含您要查找的信息。
https://github.com/microsoft/vscode/issues/76308?msclkid=bfff79bec58d11eca167869d42275429
添加回答
举报
0/150
提交
取消