ReSharper 7 case indents Follow
I currently have ReSharper 7 installed with the setting "Block under case
label" set to "At next line (BSD style)" (in fact, all the entries in the
Braces Layout section are set to BSD style). When I enter a new case
statement with braces, ReSharper formats the current case statement
correctly:
switch(someValue)
{
case 1:
{
int i = 0;
break;
}
}
When I enter the braces for the next case statement, ReSharper 7 re-indents
the entire switch statement Whitesmiths or GNU style:
switch(someValue)
{
case 1:
{
int i = 0;
break;
}
case 2:
{ }
}
The result is that all the braces in all case statements are indented
Whitesmith or GNU style instead of BSD style. Is there another setting
somewhere that will fix this, or is this a bug in ReSharper 7 that needs to
be fixed?
Please sign in to leave a comment.
It is still not working in R# 2017.1. This effectively forces me to manually reindent EVERY line inside a case-block.