正则表达式文字的语法突出显示

时间:2019-03-30 16:49:37

标签: regex visual-studio-code

如何防止VS代码突出显示Javascript regular expression literals(正斜杠),如下所示?

enter image description here

我宁愿将其突出显示为类似于示例中的字符串。

1 个答案:

答案 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
            }
        },
    ]
  }
}