I want to write an Add-In for Visual Studio that provides instant search for the solution explorer. So you press a key combination and while you are typing a list first containing all files of the solution explorer gets narrowed down.

But how can I get access to the solution explorer using C#? Does anyone have some good resources?


Edit: I edited the title, so that it more relates to the content, since all of you posted already made plug-ins.

link|improve this question

79% accept rate
I'm so glad you asked this question. I've been looking for a plug-in like this for a while but didn't think to post on SO. – Jordan Parmer Nov 19 '08 at 18:14
Thanks j0rd4n! I have never heard of some plug-in like this before, so I just thought about asking! I'm glad it was helpful to you! – Sebastian Hoitz Nov 20 '08 at 15:19
feedback

5 Answers

up vote 5 down vote accepted

Sonic File Finder it's free

When you hit the shortcut you have a search box with autocomplete: alt text

link|improve this answer
I just tried this and it works great! I chose this over CodeRush Express because CodeRush doesn't play well with my ViEmu shortcuts. Sonic File Finder does exactly what it advertises (one thing and one thing well). – Jordan Parmer Nov 20 '08 at 16:35
Sadly, the download link is broken at the moment. :( – Martín Marconcini Nov 27 '09 at 23:59
feedback

Why re-invent the wheel? DevExpress + Microsoft tied up to offer CodeRush Express for free @ PDC2008 that does just that if I understand you correctly.

AFAIR I think the magic key combo for Jump to File is Ctrl+Alt+F and it does substring matches too. I tried it and it worked for me. Pretty nifty. Here's the link to a recording in case I goofed up on the actual keystroke... some really nice tips in it.

Update: Wrote a blog post for those who're short of time.

link|improve this answer
feedback

Visual Studio is already perfectly capable of doing that; just drag the "Edit.GoToFindCombo" to the toolbar, if it's not already there. (Press Ctrl+D if it is, to activate) and type ">of s" for all files starting with the letter 's'.

Example of the GoToFindCombo with the 'open' command

The GoToFindCombo is more powerful than this though, you can set aliases ">alias $aliasHere $SomeCommand" for virtually every command in Visual Studio. For example, to make an alias for find in files you type ">alias ff Edit.FindinFiles"

link|improve this answer
feedback

Don't forget Workspace Whiz - it's free for non-commercial use. I can't live without it and just bought a licence. It does many other things too...

alt text

link|improve this answer
feedback

DPack really beats all of them (and moreover it's FREE).
Check out the Alt+U and Alt+M shortcuts (also I recommend others too).

Additionally I have found StudioTools to have very impressive GoTo feature if you want to jump to specific point (type member) in another file (really very fast).

NOTE: R# also has such feature but IMO it's weaker than DPack's version.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.