In ReSharper, I have "Wrap Long Lines" on, and all "Wrap Parameters" options set to "Chop if long".
If I have a line of code like this:
DisplayMessage("This is a really long string that cuts off the screen ...", type, item);
ReSharper wants to format the line like this:
DisplayMessage(
"This is a really long string that cuts off the screen ...",
type,
item);
But I want it to format it like this:
DisplayMessage("This is a really long string that cuts off the screen ...",
type,
item);
Is this possible? I realize that it's because of the long string as the first parameter, so it wants to put it on its own line, but I prefer chopped parameters to be in line with the opening parenthesis.
It's like I need a [ ] Don't put the first parameter on its own line
option.