@b4n, it looked like you are relying on autocomplete's algorithm by cunningly renaming it, but it doesn't work AFAICT, eg:
```c++
struct Bar { int aaab; };
struct Foo { int aaaa; int f(){ aa // now autocomplete shows both aaaa and aaab }; }; ```
Or is that not what its doing.