I discovered something weird when formatting a type that I created. When I format my code, I get this:
Type
TString255 = String

    [255];
TString2 = String

    [2];

It should look like this:

Type
TString255 = String[255];
TString2 = String[2];

Any ideas?

Thanks