I have a project with a main.cpp, stdafx.cpp and stdafx.h. (The precompiled header is empty apart from the "#pragma once".) The main.cpp contains just the following:
#include "stdafx.h"
class A
{
public:
int Method(int a, int b);
};
int main()
{
A* pA;
return 0;
}
Now I go onto the empty line before the return statement and type: "pA->M(". This gets correctly expanded to "pA->Method(", but the parameter tooltip does not appear automatically. To make it appear, I have to press Ctrl-Shift-Space or remove and retype the opening parenthesis.
By simply disabling VAX (no other options changed), the behaviour becomes as expected: the tooltip appears as soon as the opening parenthesis is typed for the first time.
Is there some option I am missing, or is this a bug?
Visual Studio version: 14.0.23107.0
Visual Assist version: 10.9.2089.0