When I try to type initializers for a C++ class, SlickEdit keeps trying to indent the list when I don't want it. The first initializer is indented 3 spaces (my normal indent) and subsequent initializers are indented 2 more spaces. (Not sure where 2 comes from -- continuation indent is also 3.) SE 24 doesn't do this. I searched for a Formatting option to control this, but couldn't find one. Is there one that I missed?
FYI, this is what my preferred formatting is:
ABC::ABC()
: member1(0)
, member2(1)
{
...
}