Hello,

Consider the code

   myMethod(aaaaa,|
            bbbbb,
            ccccc);

typing Enter results in the expected indention:

   myMethod(aaaaa,
            |
            bbbbb,
            ccccc);

Howerver, typing Enter in the following case:

   myMethod(aaaaa,
            bbbbb,
            ccccc|);

results in the unexpected indenting:

 myMethod(aaaaa,
          bbbbb,
          ccccc
 |);

The same problem happens when I type a method name and args :

  myMethod(aaaaa,
            bbbbb,|

typing Enter in this case results in the unexpected indenting:

  myMethod(aaaaa,
            bbbbb,
  |


I am using IDEA #459. Is this a bug or just a misconfiguration of my
preferences ?

Thanks,

Tal





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

Reply via email to