I often have to do something like this:

String abc = "|";

and then paste a chunk of multiline text inside the quotes. It would make
sense if IDEA would wrap each line of pasted text with quotes and
concatenated them with a +, so that pasting 

a very long
multiline
text


would result in:

String abc = "a very long\n" +
                "multiline\n" +
                "text\n";

instead of current:

String abc = "a very long
multiline
text
";


and it would right away be correct code. right now I have to go and manually
fix these.
This is not a biggie but would defenitely be very nice....


--
fedor.

----
People need good lies.  There are too many bad ones.
                -- Bokonon, "Cat's Cradle" by Kurt Vonnegut, Jr.

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

Reply via email to