如何重新在Eclipse PDT多行注释?(How to reformat multi-line c

2019-08-02 08:50发布

Eclipse PDTCtrl-Shift-F重新格式化代码。 但是,它不会修改意见的。 是否有某种方式来重新衣衫褴褛的多行注释,每行(或其他)80个字符?

即转换

// We took a breezy excursion and 
// gathered Jonquils from the river slopes.  Sweet Marjoram grew 
// in luxuriant 
// profusion by the window that overlooked the Aztec city.

// We took a breezy excursion and gathered Jonquils 
// from the river slopes.  Sweet Marjoram grew in 
// luxuriant profusion by the window that overlooked 
// the Aztec city.

(我认为这也适用于普通的Eclipse为好。)

更新原来, EclipseJava模式将重新上面的线,但只有当他们/ * * / -风格的注释。 这将缩短//太长线,但它不会加入太短在一起线。

Answer 1:

你可能需要配置Java格式包括注释。

首选项 - >爪哇 - >代码样式 - >格式化 - >编辑 - >评论

确保“启用XXX评论格式化”已启用。



Answer 2:

我从来没有真正能够得到Eclipse的格式来格式化我的代码究竟是如何想,这就是我所遇到的几个缺点之一。 我听说老爷车格式化要好得多。 有一个双方的商业和免费可用的Eclipse插件两个版本。 我听说过的商业版本是更复杂的(开发的免费版本似乎已陷入停滞),但我还没有实际使用,也可以亲自。



Answer 3:

我的解决方案包括使用vrapper插件(免费): http://vrapper.sourceforge.net/home/ ,让你的文本编辑器中VIM支持。

一旦vrapper插件安装,您可以按V进入可视化模式 ,突出你的多行注释,然后按住G + Q自动格式的注释,使线的宽度(默认值)80列。 您可以更改默认列宽,但你需要阅读的vrapper插件的文档。 干杯!



文章来源: How to reformat multi-line comments in Eclipse PDT?