gpt4 book ai didi

javascript - VS Code - 使用 TextMate 突出显示一些变量

转载 作者:行者123 更新时间:2023-11-29 16:41:09 29 4
gpt4 key购买 nike

VS Code 1.15 添加了对 TextMate 语法规则的支持。我想用这些规则在 JavaScript 中突出显示一些变量:self,me。我该怎么做?

最佳答案

简短的回答:你不能。

我假设您指的是 new editor.tokenColorCustomizations setting .此设置仅允许您更改与 TextMate 语法已经定义的特定范围关联的颜色。 selfme 没有被 JS 语法特殊对待,它们使用与任何其他变量相同的 variable.other.readwrite.js 作用域:

将 this 与 this 关键字进行对比:它有自己独特的 variable.language.this.js 作用域,因此我们可以使用该设置为 this 着色 红色:

"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "variable.language.this.js",
"settings": {
"foreground": "#FF0000"
}
}
]
}

关于javascript - VS Code - 使用 TextMate 突出显示一些变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45631153/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com