/*
*
* This is a long comment. I broke it into lines, but that made it impossible to edit without screwing up the formatting. Is there a way to make Netbeans add line breaks automatically?
*
*/
Reads: This is a long comment. I broke it into lines, but that made it impossible to edit without screwing up the formatting. Is there a way to make Netbeans add line breaks automatically?
Your IDE won't format the comment for you. You will have to do it by hand. Yes, that means you have to re-format it once you add new words to it.
Go to tools->options->editor->formatting find line wrap and choose one the wrapping style you desire,there are two options : afterword and anywhere. and then click OK! :D
nb : I suggest you to choose afterword
As for today, the current NetBeans (7.3) word-wraps comments with some nice available extra options when formatting. NB: Unfortunately, this is currently only available for the Java language.
You can launch the formatter with the context menu→
Format
, or if you did not change the standard shortcuts, Alt+Shift+F should do.To access the corresponding configuration:
Tools
→Options
→Editor
→Formatting
;Language
:Java
;Category
:Comments
If you press Enter to insert a new line, NetBeans will simply extend the docblock formatting - it won't break anything. There's also a useful option in the Preferences to display a line in the right margin, so you know when to break a line. It's in:
Is this what you're looking for?