我试图弄清楚如何在 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"
}
}
]
}
}
慕标5832272
幕布斯6054654
慕桂英4014372
相关分类