哪个代码编辑器使用下面的注释样式作为PHP,CSS和JS的默认样式?
/*
* this is a multi-line comment, which needs to be used
* for explanations, and preferably be OUTSIDE the a
* function's or class' and provide information to developers
* that would not belong to a generated API documentation.
*/
是否可以在Sublime Text和Coda上使用它作为默认值?而不是手动输入。
答案 0 :(得分:2)
我建议使用Sublime Text的插件DocBlockr(我不使用Coda)。
要安装它,只需安装the Package Control,打开命令面板(Ctrl + Shift + P),输入package control install package
(我个人pci
),然后搜索{{1 }}
它不会改变你的正常评论,但它会这样做:
DocBlockr
按Tab键或输入
/**
它也会相应地添加行,例如:
/**
*
*/
按enter键
/**
* cursor on this line
*/
答案 1 :(得分:1)
在coda中,您可以通过选择要注释的文字来阻止评论,然后按CMD + /
它不会向每一行添加*
,但如果这是你想要实现的目标。