I like to define my array values with a designator, when possible:
enum Mode {
NONE,
SPLIT_FILES,
SINGLE_FILE,
INVALID
};
const std::string Mode
Comments on every line also works.
enum Mode {
NONE, // Comments
SPLIT_FILES, // On
SINGLE_FILE, // Every
INVALID // Line
};
This answer gave me an acceptable work-around:
Set ColumnLimit
to 0. The trade-off is that no line is automatically wrapped, but this is worth it. All programmers at work tend to not write past column 120 anyway.