Reputation: 7317
I need the exact same effect as in this question but in Eclipse.
It should only do the alignment if I explcitly insert a new line before the ":" or if the second operand (the "true" expression) is too long.
Example:
a = cond ? "a veeeeeeeeeeeeeeeery loooooooooooooooooooooooooooong string"
: "";
// ^ put the colon here
Upvotes: 10
Views: 3687
Reputation: 881643
This original answer was for Galileo which is well over a decade ago, so I'm updating it to be a little more current. Original answer remains below.
For Eclipse 2021-12 (under Window though I hope it would be the same across platforms):
Project
, Properties
on the menu.Java Code Style
, choose Formatter
.project-specific settings
. For workspace settings, simply click on the Configure workspace settings
. Then click the edit
button.Line Wrapping
, Wrapping settings
, Other expressions
, there is a Conditionals
item that you can edit.The options you want are:
They give this as an example:
This is the dated answer for Galileo:
Project
, Properties
.Java Code Style
, choose Formatter
.project-specific settings
. For workspace settings, simply click on the Configure workspace settings
. Then click the edit
button.Expressions
, Conditionals
.I have "wrap only when necessary" and "indent on column" which appears to be close to what you want.
If you're not running Galileo, other versions of Eclipse should at least be close to that process. If my settings aren't quite what you want, you may need to fiddle with them a bit, but that Formatter
section is pretty well the entire exposed interface so, if it can't be done with that, it can't be done (short of writing your own plug-in or finding a more configurable third-party one).
Upvotes: 10