For visual studio, is there an appropriate extension for the auto-complete window? By default, all functions and variables are shown in alphabetical order.
What I want is an extension that separates functions of base classes. For example:
- A_MyLocalFunc()
- B_MyOtherLocalFunc()
- C_MyLocalFunc()
- A_baseClasssFunc();
- B_baseClassFunc();
- C_baseClassFunc();
This would simplify the work immensely, because I have a lot of functions in a very popular base class. Sifting through them is no fun
For c++ and c#