How to reformat multi-line comments in Eclipse PDT?

拟墨画扇 提交于 2019-12-22 03:44:26

问题


In Eclipse PDT, Ctrl-Shift-F reformats code. However, it doesn't modify comments at all. Is there some way to reformat ragged multi-line comments to 80 characters per line (or whatever)?

i.e. convert

// 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.

to

// 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.

(I think this applies to regular Eclipse as well.)

Update Turns out that Eclipse in Java mode will reformat the lines above, but only if they're /* */-style comments. It will shorten // lines that are too long, but it won't join lines that are too short together.


回答1:


You probably need to configure the Java formatter to include comments.

Preferences -> Java -> Code Style -> Formatter -> Edit... -> Comments

Make sure that "Enable XXX comment formatting" is enabled.




回答2:


I've never really been able to get the Eclipse formatter to format my code exactly how I want, and this is just one of several shortcomings I've encountered. I've heard the Jalopy formatter is much better. There's both a commercial and free version available with Eclipse plugins for both. I've heard the commercial version is more sophisticated (development on the free version appears to have stalled), but I haven't actually used either personally.




回答3:


My solution involves using the vrapper plugin (free): http://vrapper.sourceforge.net/home/ which gives you vim support within your text editor.

Once the vrapper plugin is installed you can press v to go into visual mode, highlight your multi-line comment and then press G+Q to auto format the comment so that lines are 80 columns in width (default). You can change the default column width, but you'll need to read the documentation for the vrapper plugin. Cheers!



来源:https://stackoverflow.com/questions/132504/how-to-reformat-multi-line-comments-in-eclipse-pdt

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!