我正在寻找一个可以自动将方括号括起来并添加如下注释的插件:
.my-class{
css code
} // /.my-class
或
label{
code
}// /label
有可能找到类似的东西吗?
答案 0 :(得分:1)
在您的摘要文件中尝试以下操作:
"cssComment": {
"prefix": "css//",
"body": [
"$1 {",
"\t$2",
"} /* $1 */"
],
"description": "add comment to end of css entry"
},
css//
TAB .my-class
TAB TAB 结果:
.my-class {
[cursor here]
} /* .my-class */