This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Description
I have a switch/case statement. The code block under a case statement has one nested level like below:
case 1:
if ($a) foo();
break;
I wanted to add curly braces to the if statement line. When I typed {, the code indentation was automatically moved backwards to the same level of case such
case 1:
if ($a) {
foo();
}
break;
Then, I had to manually fix the indentation to get it right like below:
case 1:
if ($a) {
foo();
}
break;
To get more clear picture, check the following animated gif or the original video file (if it is not broken).

I'm not sure it is related to Brackets core or any particular extension. My Brackets version is 1.3.