csharp-tmbundle icon indicating copy to clipboard operation
csharp-tmbundle copied to clipboard

Indent for enums

Open AShim3D opened this issue 11 years ago • 0 comments

Hi!

Can you fix intent for emuns or tell where i can do this?

Problem:

public enum NAME {
    VALUE_1 = 0, // after press Enter unnecessary intent
        VALUE_2 = 1,
            ...     
}

Wants:

public enum NAME {
    VALUE_1 = 0, // after press Enter NO unnecessary intent
    VALUE_2 = 1,
    ...     
}

TextMate version 2.0-beta.6

AShim3D avatar Nov 07 '14 09:11 AShim3D