In the following case (where | represents the cursor):

        if (condition1) {
            //
        } else |
        if (condition2) {
            //
        }

...press {...

        if (condition1) {
            //
        } else |        if (condition2) {
            //
        }

This would be nicer:

        if (condition1) {
            //
        } else |if (condition2) {
            //
        }

Drew Noakes

ThoughtWorks, Inc. UK
[EMAIL PROTECTED]



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

Reply via email to