Consider:
// In a header file:
const int _TYPE1 = 1; // Should use algorithm 1
const int _TYPE2 = 2; // Should use algorithm 2
// Somewhere else in code:
struct SWhatever
{
int type; // Refers to _TYPE1 or _TYPE2 constant
};
If you position your caret on _TYPE1 in "// Refer to _TYPE1..." and press alt+g, it will not go that symbol.
Is this feature available somehow already?
If not, can this be added so that no matter where the caret is, even if it's in a comment, it will attempt to go to the symbol beneath the caret when using alt+g?
Best regards,
Rick C. Hodgin