我想知道更改“ THIS”颜色的正确格式。
"editor.tokenColorCustomizations": {
"[Monokai Pro (Filter Spectrum)]": {
"textMateRules": [
{
"scope": "this",
"settings": {
"fontStyle": "italic",
"foreground": "#c50000"
}
}
]
}
}
答案 0 :(得分:1)
我知道这很旧,但是我试图弄清楚这个问题,并遇到了一个对我有用的解决方案。因此,对于其他正在寻找的人:
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope":"variable.language.this",
"settings": {
"foreground": "#ffa7a7",
"fontStyle": "italic"
}
}
]
}