Does anyone know how to configure clang-format to keep enum\'s on individual lines?
i.e.
enum {
ONE,
TOW,
THREE
};
vs.
Another solution is to use:
BraceWrapping:
AfterEnum: true
Which will result in the following:
enum
{
ONE,
TOW,
THREE,
};
This isn't ideal because it forces a newline before the {
, but in my opinion this is worth considering as ColumnLimit = 0
disables all smart code wrapping, and many people may find that not worth giving up.
Per this answer, setting ColumnLimit
to 0
will also achieve this behaviour.
This was intentionally introduced at some stage (so if you are unable to reproduce the behavior, you are likely on an older version).
clang-format contracts enums to a single line if all elements fit on one line. This conserves spaces and usually does not decrease readability. There is no style option, but you can override this by either adding a line comment somewhere or by adding a trailing comma after the last enumerator, e.g.:
enum {
ONE,
TOW,
THREE,
};
or
enum {
ONE, // This means ...
TOW,
THREE
};