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
|
|
|
|
|
|
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:
|
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. :) |
|||
|
|
|
|
Go to definition and back in Visual Studio. It's invaluable when trying to read code. |
|||
|
|
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. |
|||
|
|
|
|
Having the ability to perform any function with out having to reach for the mouse, including reasonable text navigation. (Emacs) |
|||
|
|
|
|
Eclipse debug, and the usual stuff, highlighting, completion.. |
|||
|
|
|
|
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 :) |
|||
|
|
|
|
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). |
|||
|
|
|
|
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. |
|||
|
|
