What is your favorite feature of your IDE/code editor? What makes you like it so much? Is there a feature that it doesn't have that would be a strong enough pull to cause you to switch IDE's (code editors)?
|
1
|
|
|
|
|
|
In VisualStudio, IntelliSense and Auto Complete. Code highlighting cannot be overlooked because of how readable it makes code. Both of these features help me code quicker. IntelliSense can be a pain sometimes, but it saves me time because using it can be as good as having an API handy for those times when you know you need to use a function, but you can't remember exactly the parameters that it requires. |
|||
|
|
|
|
Resharper. |
|||
|
|
Auto-completion features are my favourite, when executed well, in any IDE. They simply save typing all of that extra text - and no IDE should be without them. (Visual Studio's IntelliSense is also brilliant.) |
|||
|
|
|
|
Eclipse quick-fix and refactoring! (and the usual stuff, highlighting, completion) |
|||
|
|
For Visual Studio:
|
|||
|
|
|
|
Visual Studio. Despite all it's goofy "quirks" MS really got it right. Intellisense is fantastic but makes me lazy; I like being lazy. Something that's overlooked is the IDE writes the build script for you. Write something in Anjuta for a GNOME project and then try to build it all manually. |
|||
|
|
All the advanced features that shield me from boiler plate code. Also lately, while using LINQ, Visual Studio's feature which generates classes based on the database schmea (LINQ TO SQL) is brilliant. |
|||
|
|
|
|
I'm a big user of VisualAssist's Alt-G, to go to the declaration or definition of a symbol. |
|||
|
|
|
|
Huge fan of Visual Studio, however, as a (mainly) C# guy, I am very jealous of the VS IntelliSense support of VB.NET. If someone could build an addin for Boo language I would be in heaven. |
|||
|
|
We use Zend Studio for PHP which is one of the few PHP IDE's that supports code completion. It requires a strict use of PHPDocumenter comments though. Another handy feature is integration of Subversion or the Source Control Management-system of your choice. For a webdeveloper, an IDE has to be fluid in a lot of different languages. In my example: PHP, HTML, CSS, JavaScript. Understanding what is which language and providing appropriate code support isn't something you'll find in a lot of clients. |
|||
|
|
|
|
Syntax Highlighting is all I need in an IDE. |
|||
|
|
|
|
Automatic background compilation in Eclipse (Full Solution Analysis in Resharper, and I don't know what its called in all of the other Java IDEs that have this out of the box). There's really nothing else that comes close. A close second is context-sensitive intellisense. About the only thing in Visual Studio to brag on is how easy it is to install Resharper. :) |
|||
|
|
|
|
In Eclipse: Find Reference and Refactoring. I'm doing a lot more code review and code refactoring than code writing. If the IDE has no Find Reference, then I switch to Emacs, because that means the IDE doesn't index the possible calls, and that it's going to be slow as molass when refactoring. |
|||
|
|
|
|
Being absolutely extendable and customizable to my editing style on the fly, along with the ability to have (practically infinite) split-pane editing. I use Emacs. It has a learning curve, but it's worth it. |
||||
|
|
|
Compiling... |
|||
|
|
|
|
|
|||
|
|
|
|
Syntax highlighting - though it's not really an IDE feature anymore, most text editors have it. I like Visual Studio's "Find All References" - it's much more useful than simple text search. "Go to declaration/definition" helps a lot with navigation; it takes a while to go through all the text search results when trying to find the definition of a common function. Auto-completion, I find, is most useful when learning a new language/library/API/etc. It helps you see what is available, what alternatives there are, and even point out some basic mistakes. Source control integration is another nice feature of IDEs that saves time without hindering the usability of the application. |
|||
|
|
In Visual Studio 2008 (might have been available before), you have the ability to "rewind" the code to the point before the exception occurred. You can also change the code while it's paused in the debugger, and continue on running. It's really nice to almost never have to do the stop, fix, build, run scenario every time you find a tiny problem in your programming logic. |
|||
|
|
|
|
The one and only Ctrl+1 (Quick Fix) of Eclipse. Sometimes it annoys me though, some Java beginners just write a bunch of incomplete or wrong code and Quick Fix just makes it compile ! |
|||
|
|
|
|
Code completion in Eclipse is by far my favorite. I can end up writing a large application using Ctrl + Space to write most of the code. |
|||
|
|
|
|
Auto-replace. So I could type # and it would complete to a, say an if block, as an example. |
|||
|
|
|
|
IDLE is equipped with some excellent whitespace support. Tab remaps to four spaces by default, but can be changed to whatever standard you prefer. Ctrl+[ and ] allow multi-line indenting and dedenting. Much like LISP editors and parens, I think people would be a lot happier starting with Python if they used an editor with good whitespace support. |
|||
|
|
In Eclipse: Copy and paste a stack trace from somewhere else--email, log file, etc--and the stack trace becomes browsable. |
|||
|
|
|
|
Constant background compilation or at least close to that . I see errors as soon as they pop or when I save. I'm too lazy to hit make or ant after every change. |
|||
|
|
|
|
In Eclipse, two features that dramatically increased my productivity when I started using it over lesser text editors were the abilities to:
|
|||
|
|
|
|
In Delphi 2007:
I've not done much coding in text editors but I imagine my productivity would drop. In short, I love my IDE! ;) |
|||
|
|
|
|
Man. To pick just one would be awful. More than that, I use two different IDEs, at a minimum. Just a few of the benefits I have found: Visual Studio w/ Visual Assist:
gVim:
|
|||
|
|
Auto-indention, especially the context-aware kind. I would be fine if an IDE just kept the current indention. What makes a nice IDE is the context-aware bit: after I type |
|||
|
|
|
|
In my Vim environment, I can put my cursor over a custom type (eg MyClass) and 'tag' to it. This opens my_class.cpp in a new buffer. I can then check it out, edit it, and hit 'back' to go back to the original file and hit another button to compile and run tests. All without my fingers leaving the keyboard. It makes investigating a breeze and experimenting quick and painless. |
|||
|
|
|
|
Incremental search (CTRL-I in Visual Studio). |
|||
|
|
