The goal I am trying to achieve is to align enum definitions in columns when specifying the value of the enumerator. Please note that I only want my enumerations in columns, not my variable definitions.
enum class MY_ENUM {
A = 1,
BB = 2,
CCC = 3
};
I am using STM-STUDIO, an Eclipse derive IDE for embedded targets to program C/C++. I have used the normal Eclipse formatter to configure my other style requirements but I am unable to find a way to do this.