In the following case (where | represents the cursor):
if (condition) |
name = "Drew";
...press {...
if (condition) {
|
}
name = "Drew";
This would be a much better outcome:
if (condition) {
|name = "Drew";
}
Drew Noakes
ThoughtWorks, Inc. UK
[EMAIL PROTECTED]
_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://lists.jetbrains.com/mailman/listinfo/eap-features
