You CANNOT go
from

       line 1:     if (true)
       line 2:          int i = 0 ;
       line 3:          int j = 0 ;
to
       line 1:     if (true) {
       line 2:          int i = 0 ;
       line 3:          int j = 0 ;
       line 4:     }

with [Alt-Ctrl-T]

In other words,
it works
      when you put the cursor on line 2,

=> result :
       line 1:     if (true) {
       line 2:          int i = 0 ;
       line 3:     }
       line 4:          int j = 0 ;

but does not work
      when you select line 2 and 3



Alain Ravet


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

Reply via email to