如何更改VS代码中的行注释格式?

时间:2018-01-28 11:13:06

标签: visual-studio-code

我使用默认切换注释行(editor.action.commentLine)来添加/删除行注释(PHP)。

我的评论看起来像

// $someVar = null;

我想将评论行格式从//更改为// ~。有没有办法更改默认的行注释格式?

1 个答案:

答案 0 :(得分:2)

我已经做了一个扩展,Custom Language Properties,来做到这一点。演示:

php lineComment demo

设置很简单:

mozjpeg

许多语言都支持修改 "custom-language-properties": { "php.comments.lineComment": "// ~" } blockComments(以及 brackets) - 用户可以非常轻松地添加其他语言支持。