Using sublime text (3) I'd like to use this old fashioned kind of indentation (https://en.wikipedia.org/wiki/Indentation_style#Whitesmiths_style):
if (a > 1)
{
printf("yay");
return;
}
but all I get from the settings is this:
if (a > 1)
{
printf("boo");
return;
}
is there a way to have the bracket auto indented as in my first example? I'm somewhat ok with having to push tab once myself to indent, but sublime text insists on adding another indentation after that so that the brackets no longer line up with the start of the printf statement.