I've been a Microsoft developer since VB 3, and always considered Microsoft development tools to be the best on the market. However, having used Eclipse for Java development over the last few months, I can see a lot of features that are missing in VS 2008 IDE. Yet I can't find any that I can't find alternatives for in Eclipse. Seems that Visual Studio is falling behind quite a bit.

What are people's favorite IDE features across multiple IDEs, and what are the workarounds for the missing ones.

I saw a few threads here already, but none of them touch on Visual Studio.

http://stackoverflow.com/questions/239732/things-possible-in-intellij-that-arent-possible-in-eclipse

http://stackoverflow.com/questions/54886/hidden-tricks-for-eclipse

link|improve this question
You mean features? Also this should probably be a community wiki as it is a poll. – frankodwyer Jan 6 '09 at 13:07
I prefer NetBeans, although I haven't tried IntelliJ. – Michael Myers Jan 9 '09 at 21:43
You mention missing features but fail to mention any, what is missing? – Sayed Ibrahim Hashimi Aug 5 '10 at 16:39
Open Type, Open Resource (File), View Hierarchy, View Call Tree, Find References just to name a few – Timur Fanshteyn Aug 5 '10 at 19:34
feedback

12 Answers

Not vanilla Visual Studio, but check out the Resharper add-in - I think it's worth the money.

link|improve this answer
resharper is amazing stuff – jle Jun 14 '09 at 21:34
1  
Resharper is not "amazing". In fact Eclipse has most of the resharper features built-in. "resharper" should be fundamental part of visual studio - not something that third-party provides. I am pretty sure they even have some kind of deal with Microsoft. – drozzy Dec 20 '10 at 2:36
1  
@drozzy - I agree VS should have Resharper's options built-in, but it doesn't. Resharper is significantly better than Eclipse, though - try it in depth and see. Compare it to IntelliJ IDEA instead. – orip Dec 20 '10 at 19:27
How is it better? Can you go into specifics? – drozzy Dec 23 '10 at 6:00
1  
Two abilities off the top of my head: more powerful refactorings (jetbrains.com/resharper/features/code_refactoring.html) and incredible value tracking and code inspections (jetbrains.com/resharper/features/code_analysis.html). I've used Eclipse for developing Java, but colleagues told me that IntelliJ IDEA is similar to VS+Resharper and even better. – orip Dec 23 '10 at 9:28
feedback

Eclipse's Quick Fix. Control-1; Command-1 on Mac OS. Whatever's wrong with my code here at the cursor - please fix it for me, IDE! Thanks!

Even when nothing's broken, Eclipse will fix it. Like Assign Parameter To New Field, for instance. Quick Fix is a fantastic timesaver.

link|improve this answer
1  
Even more awesome is Crtl-3 . Just type the command you want to run (search). I haven't seen any IDE other than vim and emacs do something like that. – Adam Gent Feb 3 '11 at 16:29
feedback

Another one from Delphi, that I miss in VS2008 all the time:

You can navigate the properties page with the keyboard. So I can (for example) type "Nam" and it will jump to the "Name" property on the page. Anything that keeps my hands on the keyboard is welcome.

link|improve this answer
feedback

vi keybindings is the feature I am the most attached to, or that I misses the most.

My main IDE is of course vim. And there are several tricks to get vim to interact nicely with Visual Studio, Eclipse, ....

Most of the tricks are also available for other IDE (netbeans, Eclipse, ...)

link|improve this answer
feedback

It seems really minor, but IntelliJ has this option where you can have faint gray lines between your methods. That tiny feature helps my visual comprehension of the code in a huge way.

JetBrains in general just has a great approach to usability that I greatly appreciate.

link|improve this answer
feedback

Same functionality is available in Eclipse. Options window has a type in that will show all pages that are related to a typed keyword.

link|improve this answer
feedback

Intellij have really polished features while missing something (at least that I know) like mylin that is a great task manager available in eclipse. In simple word I could say that Intellij Is wayy better than the current eclipse (eclipse 3.6) for editing code, its refactoring tools, code autocompletion (netbeans is really good at it too), jsp code completion... and the best and something I have never before seen anywhere else: JAVASCRIPT CODE ASSISTANCE <----- almost perfect (haven't tried too much in netbeans and in eclipse is useless).

link|improve this answer
feedback

In Delphi, you can customize your code-completion templates, so I could (for example) set it up so I could type

tryf

Then push Ctrl+J, and it will translate that into

try

finally

end;

But they are totally customizable, so you can configure (for example) a general database connection, and type MyDatabaseConnection, push Ctrl+J and get a full block of code yielding a db connection.

link|improve this answer
It wouldn't be hard to add this feature to DevStudio, writing plugins for that IDE is reasonably easy - there's even a project wizard build into DevStudio. I would have suggested using macros, but an automatic update last year killed macros in VS2005 (grrrr....) – Skizz Jan 6 '09 at 13:30
NetBeans has this. – Michael Myers Jan 9 '09 at 21:44
feedback

I've only used VS from ye-gads-that-was-a-long-time-ago to present, but recently was asked by an associate to work on a Java contract and so installed Netbeans. I like the built-in refactoring, local history and source control integration and the plug-in system is absolutely brilliant.

To be honest, though, both are such a far cry from the sorts of tools I started out with in the late 70's a modern IDE would have to be doing something seriously wrong to disappoint!

link|improve this answer
Yes, NetBeans has a really nice set of comforting editor features. I hope some of those spread across the Windows IDEs. – Moritz Beutel Jun 9 '09 at 17:19
feedback

Delphi and C++Builder have Sync Edit. I let an image speak:

alt text

(A nice explanation can be found here.)

Another noteworthy feature, introduced in Delphi/C++Builder 2006, is Live Templates. Live templates basically work like the code snippets known from prior Delphi versions and other IDEs, but they offer the navigation comfort of Sync Edit (Tab/Shift+Tab) and are fully scriptable.

link|improve this answer
Oh, sync edit? You mean like the regular old refactoring in Eclipse? – drozzy Dec 20 '10 at 2:34
feedback

I use Codelobster PHP Edition. It has Microsoft Visual Studio interface and any plug-ins for most popular frameworks.

link|improve this answer
feedback

A priceless feature of Eclipse, that has been implemented in VS, and I think in NetBeans 6.5 (IntelliJ also has it, I don't know since when) is the Call hierarcy.

This feature shows what methods are called by what other methods (and vice versa), which is priceless when having to work with large codebases and tracing the flow through the code.

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.