I’m not kind of guy hungry for thousands of new features in my current development IDE. In fact I’m happy for decently smart editor, because my work mainly involves BL etc. But couple of new features in new Visual Studio 2010 I really like.
One is called Quick Search. It simply allows you to find a lot of stuff from simple window – files in solution, methods etc. And it’s smart too. If you have file named, let’s say MyCoolClass.cs, you can type just MCC and the file will be found too. Nice, isn’t it? Almost as fast as navigating in text in VI editor.
And other is called Call Hierarchy. It’s simple tree showing you who is calling selected methods and vice versa. You can easily traverse through this tree and see paths where your code is going. And you can of course navigate to methods selected in the window.
Simple functions, but may help a lot. What is your favourite in upcoming VS or current VS maybe with some plugin?




#1 by Tomáš Herceg on 11.3.2009 - 10:57
Quote
I think that navigation in Visual Studio is currently more efficient and faster than in VI editor. Everyone thinks that VI is the most effective text editor, but for simple and often done things like saving a file you need to press about 5 keys instead of Ctrl-S.
#2 by cincura.net on 11.3.2009 - 11:02
Quote
I don’t think so (but I’m used to use VI a lot). For saving you need only “:” and “w” (and maybe Esc if you’re in edit mode). If you need to jump in text, using keyboard, in VI you’re way faster than in VS.
#3 by Adriano dos Santos Fernandes on 19.7.2010 - 16:06
Quote
I like gedit + grep + bash much more.
But to debug, VS is greater than gdb in general.
#4 by cincura.net on 19.7.2010 - 16:09
Quote
Yes, I’m using grep too. But sometimes you can’t match exactly what you need (overloads, property names with only different suffix, …).