A feature request in the 'formatting options' area ..
We enclose all switch case/default blocks in curly braces .. adding this formatting option would be good ..
switch ( expr )
{
case 4:
{
some code;
break;
}
default:
{
some code;
break;
}
}
