Sublime Forum

C "Indent Braces" Option

#1

One of the last things preventing Sublime being the best editor I use is the lack of the option to “Indent Braces” as Visual Studio does.

Essentially, it turns this…

if( foo ) { bar; }
into this…

if( foo )
    {
    bar;
    }

I’m sure this could be hacked into the current C/C++ indentation settings but I can’t figure it out for the life of me.

0 Likes