I don't believe that this was the case in old versions of VA, or by default in Visual Studio.
A specific example:
if I have 2 functions
int SomeFunc( char param, bool param2 = true );
int SomeFunc( int param, bool param2 = true );
And in code I type
Somefunc( x );
if I then go back and change x to say y, a tooltip appears. This tooltip starts with [1 of 2] if I press the down arrow to advance to the next line, my cursor stays where it is, and the tooltip shows a new function prototype, and starts with [2 of 2].
I don't like this behavior. Is there someway to not allow tootips to capture the arrow keys? so that I can have tooltips, and continue to navigate a file with the arrow keys?
EnderJSC