When I’m at the far left of a line, and I hit enter from in between braces, indenting works as expected:
stuff {
//bam
}
However, if I’m tabbed in at all, it doesn’t:
stuff {
morestuff {
//sadface
}
}
I want it to work like this:
stuff {
morestuff {
//happyface
}
}
How?