For me, it was a con "" at the end of the include statement that stopped the code completion plugin. Since the code is still compiled, it was hard to see.
Removing this con "" resolves the issue. Source:
#include "DialogSA.h"'
Changing this line to the following (that is, removing the cheater "'") fixed code in C :: B:
#include "DialogSA.h"
In a nutshell, your problem may not be due to the plugin itself, but a small error in your code (which in my case is still compiled, so it was hard to find)
source share