ceylon-ide-eclipse icon indicating copy to clipboard operation
ceylon-ide-eclipse copied to clipboard

Auto reindentation of multi-line string literals

Open FroMage opened this issue 9 years ago • 0 comments

When I have:

throws(`class Exception`, "Follows a long
                           multiline string")
void f(){}

And I press ENTER right before the string, to indent it, I get:

throws(`class Exception`, 
  "Follows a long
                           multiline string")
void f(){}

Which is just wrong now. I think we should do something about the rest of the multi-line string when changing its first line, no?

FroMage avatar Sep 16 '15 12:09 FroMage