Intellij IDEA plus sign when String wrap

Viewed 22245

I'm using Intellij IDEA 10.5 Community. If I have a long String and want to split in in mulitple lines I press ENTER key in the middle of a String and get this:

String str = "ONE LONG" +
             "STRING";

Is it possible to put the + sign in the beginning of the line, like this:

String str = "ONE LONG"
             + "STRING";
4 Answers
Related