C# Dev Kit; v0.0.516-alpha
Steps to reproduce:
- Add a new case statement to a switch
- New line
- Type break;
- Enter
Expected
The break; is intended one deeper than the case statement.
Actual
Case and break are at the same level of indentation.
Notes
If I format the document the indentation gets corrected
Example code (correctly fromatted)
public enum MyEnum
{
Hello,
World
}
public Foo(MyEnum My)
{
switch (my)
{
case MyEnum.Hello:
break;
}
}
C# Dev Kit; v0.0.516-alpha
Steps to reproduce:
Expected
The break; is intended one deeper than the case statement.
Actual
Case and break are at the same level of indentation.
Notes
If I format the document the indentation gets corrected
Example code (correctly fromatted)