Hello all,
I want to ask the fine team of Whole Tomato, if it is possible to make a more verbose message when displaying enums on the definition bar.
If I have the next declaration:enum MyEnumType
{
eTest1 = 0,
eTest2,
nMyEnumType
};
And I click nMyEnumType somewhere in the code, I only see:
enum nMyEnumType
It would be very nice to see:
enum MyEnumType nMyEnumType
or even:
enum MyEnumType nMyEnumType = 2
This will also display the type-name of the enum (and maybe even it's integer value).
Whould this be possible?
Thank you in advance.
With kind regards,
Patrick Luja
This message was posted in the general forum, I've moved it to this forum, which is a much better place for this.