我希望评论能够以传统的方式在Apple的Xcode中使用C语言。我已经安装了VVDocumentor,我真的很喜欢它的默认方式,即:
/*
* Comments go here
*/
/*
* multiple
* lined
* comment
*/
我希望能够使用CComment来帮助我做到这一点,但它的作用只是
/* comments go here */
/* multiple
lined
comment*/
哪个很难看。 VVDocumentor也没有帮助,因为如果一个命中输入结果是
/*
* multiple
* lined
* comment
new comment here
*/
哪个无益。
我想修改Xcode,这样点击输入的行为就是这个。
/*
* multiple
* lined
* comment
*/
到这个
/*
* multiple
* line
* comment
* new comment line here
*/
我知道你可以简单地阻止评论,选择文字并按⌘+ /,但这不能达到我想要的效果,更重要的是当我评论时我必须再次按下它我按下回车的时间。
我确信其他人正在寻找这个,因为这是一种非常普遍的风格,但到目前为止我的google-fu已经失败了。