I often will write some code that is going to need some variable or symbol declarations:
if (key.QueryValue(kszContentType, strContentType))
key is defined, QueryValue() is defined, but kszContentType and/or strContentType are not.
I go up a line or two, and start typing:
CString strCo
At this point, it would be nice if "strContentType" were given as an autocompletion option.
Its not uncommon, at least for me, to write this way. "What do I want to do"... followed by "what do I need to do it".
VA is aware of the symbol "strContentType" because its underlined it as unknown. So I'd just like to have declarations use unknown context to fill in the blank.
I hope that all makes sense. Happy to expand on it or answer questions to make it more clear.