Sometimes I need to write multi-line-for-statements like the
following:

 for (Container parent = component.getParent();
      parent != null;
      component = parent, parent = component.getParent()) {
   // do something
 }

In older builds (up to build 629), pressing enter after the first
line, IDEA positioned the cursor below the first statement's column
(ok):

 for (Container parent = component.getParent();
      |

In the newer builds, IDEA obviously inserts tabs (my tab-setting is
set to 4 spaces per tab) instead of spaces (annoying):

 for (Container parent = component.getParent();
 --->--->|

This is a little bit annoying to me, because I need to delete the tabs
and insert the spaces myself.

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

Reply via email to