Hello,
if you could add an 'indent closing' checkbox to the Indent and Braces
tab that would be fabulous. The following is your preview code
formatted the way that I prefer. This differs from what I can achieve
with the existing options only where the closing braces are all indented
an extra 4 spaces.
cheers
Markus
public class Foo {
public void foo( boolean a, int x,
int y, int z ) {
do {
try {
if ( x > 0 ) {
doIf();
}
else if ( x < 0 ) {
doElseIf();
}
else {
doElse();
}
switch ( a ) {
case 0:
doCase0();
break;
default:
doDefault();
}
}
catch ( Exception e ) {
processException( e.getMessage(),
x + y, z, a );
}
finally {
processFinally();
}
} while ( true );
}
}
_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://lists.jetbrains.com/mailman/listinfo/eap-features