I'm having trouble with the indentation of the cases's code-blocks in my switch statements
it looks like this:
switch(var)
{
case "case1":
case's code line 1;
case's code line 2;
break;
default:
stuff...
break;
}
I'd really prefer that it looked like this:
switch(var)
{
case "case1":
case's code line 1;
case's code line 2;
break;
default:
stuff...
break;
}
it was working properly before, so I took a look at the mode's .el file, but I didn't understand anything so I left it there.