Visual Studio feature list sorting is reduced to code order rather than alphabetically

A colleague asked a question, and we could not find it - under unforeseen circumstances I thought it might be useful to ask.

In the file you can:

void BFunction() void AFunction() void CFunction() 

now in the drop-down list of functions it will be sorted in alphabetical order:

 AFunction BFunction CFunction 

I prefer it so really. However, my colleague wonders if you can make this snapshot sorted in the order in which the functions are displayed in the code, so this will also be in the drop-down list:

 BFunction AFunction CFunction 

Any suggestions?

+6
visual-studio-2008 visual-studio visual-studio-2010 intellisense
source share
1 answer

I know that this is not what you are asking for, but you can try the VS10x CodeMap Visual Studio 2010 Extension, it works the way you want.

But if you are very interested in changing the functionality of the drop-down list, I'm afraid that you will have to develop your own navigation bar.

Hope helps!

+1
source share

All Articles