Indentation of many-line statements
Since there is no support, assume ">" indicates one level of indentation.
I would like long string statements to be aligned this way:
string s =
>"long part 1\n" +
>"long part 2";
Unfortunately, it would appear that the only relevant setting in ReSharper Options is found under C# | Other | Indentation | Continuous line indent multiplier; setting this value to "1" yields:
string s =
>"long part 1\n" +
>>]]>"long part 2";
Setting this value to "0" yields:
string s =
"long part 1\n" +
"long part 2";
Neither is correct. Am I missing something, or is the formatting I desire not possible?
Please sign in to leave a comment.
Hello,
We appreciate your feedback.
The corresponding JIRA request has been created, and you are welcome to monitor
its status at http://www.jetbrains.net/jira/browse/RSRP-33135.
Best regards,
- Development Team.