Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sorting the Visual Studio Function List drop down to code order instead of alphabetical order

Colleague has asked the question and we were unable to find it - on the off chance thought it might be worth asking.

In a file you may have:

void BFunction()

void AFunction()

void CFunction()

now in the function list drop down, it'll have sorted those in alphabetical order:

AFunction
BFunction
CFunction

I prefer it this way actually. However my colleague is wondering if you can make that drop down sorted to the order the functions appear in the code, so that in the drop down it'd also be:

BFunction
AFunction
CFunction

Any suggestions?

like image 243
Mark Mayo Avatar asked Feb 04 '11 10:02

Mark Mayo


1 Answers

I know thats this is not what you asking for, but you could try the VS10x CodeMap Visual Studio 2010 extension, it works the way you want.

But if you are very interested on changing the functionality of drop down list, i'm afraid that you would have to develop your own navigation bar.

Hope helps!

like image 173
Morvader Avatar answered Sep 27 '22 16:09

Morvader