代码之家  ›  专栏  ›  技术社区  ›  galki

如何在visualstudio代码中自定义HTML模板道具的颜色?

  •  0
  • galki  · 技术社区  · 6 年前

    检查以下代码中的胡须内容 Developer: Inspect TM scopes

    <p>name: {{ name }}</p>
    

    我明白了 text.html.basic ,这意味着没有单独的范围来更改 name 在胡子标签里面。在visualstudio代码中,还有其他方法可以更改模板道具的颜色吗?

    1 回复  |  直到 6 年前
        1
  •  2
  •   Mark    6 年前

    如果你找不到更好的方法使用示波器,你可以试试 highlight extension

    这个设置似乎很管用:

    "highlight.regexes": {
    
        "({{[/!^>#]*\\s*)([^}]+)(\\s*}})": [
             {},  // first match group "{{" gets no color, must be here
             {
                // "overviewRulerColor": "#ffcc00",
                "color": "#f00",
                // "fontWeight": "bold"
             },
             {} // third match group "}}" gets no color, does not need to be here
         ],
    }
    

    example of mustache syntax highlighting