做出特定的评论样​​式

时间:2019-01-06 09:30:20

标签: visual-studio-code comments

在VScode中,有一个捷径可以像这样进行注释/标题

  

/ * --------------------------------------------- ---------------

     

网站标题

     

-------------------------------------------------- ------------- * /

我该怎么做? 如果我需要某种扩展名,请告诉我。

2 个答案:

答案 0 :(得分:0)

为此使用custom snippet。然后,您可以setup a keybinding for the snippet

以下是此类代码片段的示例绑定:

{
  "key": "cmd+k 1",
  "command": "editor.action.insertSnippet",
  "when": "editorTextFocus",
  "args": {
    "snippet": "/*------------------------------------------------------------\n${TM_FILENAME}\n------------------------------------------------------------*/"
  }
}

如果您希望标题始终插入文件的顶部,则需要create a simple extension

答案 1 :(得分:0)

另一种更好的方法,实际上与我所要求的不同,但是有点酷。 VSCode扩展名为“更好的注释”,可让您添加带有颜色代码的注释。 Link For the same extension

Sample Screenshot for the same