vote up 3 vote down star
1

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)?

flag

41 Answers

prev 1 2
vote up 1 vote down

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:

  • Cmd-Shift-N in IntelliJ IDEA (Ctrl-Shift-N in Windows)
  • Ctrl-Shift-R/T ("Open resource or Open type") in Eclipse.
link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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.

:)

link|flag
vote up 1 vote down

Go to definition and back in Visual Studio. It's invaluable when trying to read code.

link|flag
show 1 more comment
vote up 1 vote down

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.

link|flag
vote up 1 vote down

Having the ability to perform any function with out having to reach for the mouse, including reasonable text navigation. (Emacs)

link|flag
vote up 0 vote down

Eclipse debug, and the usual stuff, highlighting, completion..

link|flag
vote up 0 vote down

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 :)

link|flag
vote up 1 vote down

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).

link|flag
vote up 0 vote down

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.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.