答案 0 :(得分:0)
在VS Code中,打开settings.json(通过“文件”>“偏好设置”>“设置”,然后查找“在settings.json中编辑”)。 多亏了editor.tokenColorCustomizations,您可以覆盖预定义语法范围的颜色设置(您感兴趣的是@Mark回答的string.regexp)。
例如
{
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "source.js string.regexp",
"settings": {
"foreground": "#339999" // pick the color you want here
}
},
]
}
}