Folks! How about having a format-code feature/option to remove (or add) the
extra braces like these ??

1-
if( a_condition )
{
     do_an_action();
}

2-
for( int i=0; i<100; i++ )
{
     do_an_action();
}

will convert them to :

1-
if( a_condition )
     do_an_action();

2-
for( int i=0; i<100; i++ )
     do_an_action();

Or vice versa (adding braces!)

Regards,
Armond



_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-features

Reply via email to