如何为vscode tmllanguage启用注释快捷方式?

时间:2018-12-14 06:46:02

标签: visual-studio-code

我创建了一个自己的扩展名为tmlanguage.json的文件,以便突出显示自定义语言的语法。

 "patterns" : [
    {
      "match" : "(#)(.*)",
      "name" : "comment.less"
    },
    {
      "match" : "(#)(.*)",
      "name" : "comment.line.less"
    }]

如何获取注释快捷键 Ctrl + K C Ctrl + 工作吗?

1 个答案:

答案 0 :(得分:1)

要配置注释和其他基本语言功能,请尝试创建language-configuration.json文件。此文件用于扩展程序的package.json中的语言贡献:

"contributes": {
    "languages": [
        {
            "id": "unicorn-language",
            ...
            "configuration": "./language-configuration.json"
        }, ...
    ]
    ...
}

language-configuration.json文件定义了该语言的基本文本功能。您可能需要配置comments

{
   "comments": {
       "lineComment": "//",
       "blockComment": [ "/*", "*/" ]
   }
}