答案 0 :(得分:0)
这在函数声明中很好用:
settings.json
个文件)"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "variable.parameter",
"settings": {
"fontStyle": "",
"foreground":"#413f39"
}
}
]
}
答案 1 :(得分:0)
尝试:
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "variable.parameter.ts, variable.other.object.ts",
"settings": {
"foreground":"#f00"
}
}
]
}
如果使用调色板命令Developer: Inspect TM Scopes
检查变量,您将看到两个实例都是variable
,但还有许多其他事情。您可以使用我上面使用的两个范围来缩小范围,以实现所需的功能。
答案 2 :(得分:0)
成功上色有两个条件:
语言必须支持语义解析。
当前主题必须包含
"semanticHighlighting": 真