Given this Java code:
class Barffoo {
boolean flag1;
boolean flag2;
boolean flag3;
public void f() {
flag1);
flag2);
flag3);
}
}
#1:
Place the cursor at the start of line "flag1);"
Shift-Down 3-times.
Execute convert_to_multiple_cursors.
Wierd result, see [size=78%]"MultipleCursorsFail.jpg"[/size]
#2:
Place the cursor at the start of line "flag1);"
Ctrl+Click
Flag2);
Flag3);
Press TAB.
Each line is indented a different amount, see "MultipleCursorsFail2.jpg"
#3:
Place the cursor at the start of line "flag1);"
Ctrl+Click
Flag3[size=78%]);[/size]
Flag2[/size][size=78%]);[/size]
(Notice, 3 first, then 2).
Press TAB.
Press UNDO.
The cursor on "flag2" is removed.
You cannot UNDO the indenting.