Question

Is there any way you can make IntelliJ wrap scaladoc at the margin?

Basically, I want this:

/**
 * This is a method description that is long enough to exceed right margin.
 * <p/>
 * Another paragraph of the description placed after blank line.
 * <p/>
 * Line with manual
 * line feed.

to be formatted to this:

/**
 * This is a method description that is long
 * enough to exceed right margin.
 * <p/>
 * Another paragraph of the description
 * placed after blank line.
 * <p/>
 * Line with manual line feed.
 *

... if the line length is set to end here:

                                          ^

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top