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
|
|
|
|
|
|
Context auto-completeion in Eclipse by pressing Alt+/. It works everywhere in every file, even in unknown files with unknown languages. It just seeks similar word near current word you are typing, and completes it. |
|||
|
|
|
|
For me having the IDE manage build dependencies (that is what an IDE is for, I suppose) is the kill feature. Writing make/ant/etc. files by hand is a waste (and a pain). |
|||
|
|
|
|
In Visual Studio, I really like turning on the word-wrap option. No more faffing around with underlines, which then don't work right on another PC or another resolution. I hate scrolling left and right in code. I've not met many who like this, though. The feature I most want is support for multiple monitors, and it's supposedly coming soon :) |
|||
|
|
|
|
Eclipse debug, and the usual stuff, highlighting, completion.. |
|||
|
|
|
|
Having the ability to perform any function with out having to reach for the mouse, including reasonable text navigation. (Emacs) |
|||
|
|
|
|
My favorite is Visual Studio's "auto-include" feature. If you're typing the name of a type that one of your project's references contains, but doesn't have the namespace included in the current file, a small underscore appears under that type. From there you can press "Ctrl + .", and opt to include that namespace. Also, the "Organize usings -> Remove Unused" is nice. |
|||
|
|
|
|
Go to definition and back in Visual Studio. It's invaluable when trying to read code. |
|||
|
|
In Emacs (and this is also a major feature in Vim) - feeling superior to people who use IDEs such as Eclipse, IntelliJ IDEA, Visual Studio, etc. :) |
|||
|
|
|
|
Maybe this is also part of code completion, but I think automatically resolve and insert the correct import (for Java) or using (for C#) commands is the best thing since sliced bread. Imagine you always had to browse the documentation to find in which package/namespace a certain class resides. |
|||
|
|
|
|
I like NetBeans and now it will detect file types and give you the panels to add elements in. Also the auto complete and auto space indentation is really nice right out of the box. |
|||
|
|
|
|
One of my favorites must be being able to look up a specific file in a project by its name. When the project has a complex directory structure, it usually requires a bit of mouse+keyboard wizardry to navigate to the file you're after. The following prove themselves useful (on Mac OS X) each day:
|
|||
|
|
|
|
Incremental search (CTRL-I in Visual Studio). |
|||
|
|
|
|
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. |
|||
|
|
|
|
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 |
|||
|
|
|
|
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:
|
|||
|
|
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! ;) |
|||
|
|
|
|
In Eclipse, two features that dramatically increased my productivity when I started using it over lesser text editors were the abilities to:
|
|||
|
|
|
|
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: Copy and paste a stack trace from somewhere else--email, log file, etc--and the stack trace becomes browsable. |
|||
|
|
|
|
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. |
|||
|
|
Auto-replace. So I could type # and it would complete to a, say an if block, as an example. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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 ! |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|||
|
|
|
|
Compiling... |
|||
|
|
|
|
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. |
||||
|
|
|
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. |
|||
|
|
|
|
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. :) |
|||
|
|
