Hello,
I couldn't find any option in the C/C++ Formatter that would keep each item in a comma separated list on a separate. For example, the formatter puts all enumeration constants on a single line (see below).
Am I missing something. If not does TI have another formatter?
Stephen
The formatter changes the following
enum
{
ABC_1 = 0,
ABC_2,
ABC_3,
ABC_4,
ABC_5,
ABC_6,
ABC_8,
ABC_9,
ABC_10
};
To
enum
{
ABC_1 = 0, ABC_2, ABC_3, ABC_4, ABC_5, ABC_6, ABC_8, ABC_9, ABC_10
};

