Ask HN: I'm done with the IDE. What's a good alternative?

36 points by djhworld ↗ HN
To me, the modern IDE has become so bloated these days I dread to even think about firing one open and letting it consume a horrendous amount of resources.

So what's the alternative? People have spoken about Vim and Emacs and all the others, but I'm not very well versed in either. I've been using Vim for quite a while to write simple scripts so I'm used to the commonly used keyboard commands, but I'm still a bit confused about how people use their preferred editor as a full blown development environment. Vim to me seems like an ever expanding series of configuration files and keyboard tricks to get something remotely powerful.

What I'm asking is, what is the alternative to the modern IDE? How have people managed without one? Or do we just have to except the fact that the IDE is something we can never get away from?

122 comments

[ 3.5 ms ] story [ 190 ms ] thread
I keep meaning to learn how to properly use emacs or vim, but I've never actually found the time to do so[1]. So instead, I've just ended up using a plain multi-document editor with syntax highlighting and sessions - KDE's Kate in my case - and a bunch of terminal windows/tabs for REPLs, compilers, build scripts and version control. Where appropriate, I use a stand-alone debugger for whatever runtime I happen to be programming in (JSwat for the JVM, and KDbg as a gdb frontend).

That said, certain types of work for customers is most easily done in an IDE, for example .NET or Win32 stuff (Visual Studio), iOS programming (XCode) and Nintendo game consoles (CodeWarrior), so I use those where appropriate.

It's probably not an optimal approach and it certainly earns me zero respect from my peers using vim or emacs (or eclipse...). Considering how varied my work tends to be, relying on a cluster of totally independent tools actually works pretty well.

[1] I do use vim for shell scripts and configuration files. iravpPdwq!/?: are the only commands I know, however.

This is what I've always done, too. Lately, I've been using Padre a lot, which is an open-source programmer's editor written in (and mostly for) Perl and Wx. I know if I really want to, I can change it - so even though I still don't ever change it, it removes the stress of wondering whether I could if I really want to. If you see what I mean.
An IDE is just a bunch of other programs combined. It's a text editor at its heart.

So use a text editor (any one) and then compile your code, commit it to the repository, etc etc from the command line. Or using other tools.

Or, realize that IDEs are designed to combine all that together and you'd rather have it do the work instead.

Personally, when coding languages that don't need to be compiled, I use Vim/GVim/MacVim (depending on what system I'm on) and the command line for everything. For languages that need to be compiled, it's just easier to use the IDE.

I agree that the convenience of a quick keyboard shortcut in an IDE is really effective for quickly compiling+running a piece of code, but I'm just wondering if anyone has found any tips and tricks to do this without the need to use an 'established' IDE
In vim use :make to run make in the current directory. You can browse through errors using :cn and :cp ("quickfix"). Finally use :!program to run your program. You could fairly easily map keys to do these.
> It's a text editor at its heart.

While I mostly agree that this is true, the best IDEs allow you to get your thoughts on the screen much quicker. This goes beyond allowing you to type faster.

When I'm writing code, I find that a lot of times, my mental "stack" can grow deep, especially when you try to write code with smaller methods. I start to write method A, which has a section I extract into method B, which has logic in method C, but slightly different. So I start refactoring method C, etc.

A good IDE allows me to accomplish all these much faster, including updating all reference to the refactored method C, while still keeping track of my train of thought, allowing me to go back to method B and remember what I was trying to do there, then back to A.

It's been said a lot of times here in HN that most of your time writing programs isn't spent on typing code, and that's true. However, once you do start typing, a good IDE can help quickly get your thoughts converted to correct, compilable code (proper reference names included), and I find that it helps a lot.

Make a serious attempt in switching to vim for everything. Print out some cheatsheets and have them on the wall next to your monitor. There are also quite a few vim threads on HN which might be of interest to you.

It took me about a week to feel really comfortable with it, but now I'm really glad I didn't give up. I still learn new shortcuts every other week.

What language are you developing in? I think that some languages (like Java and C#) really require an IDE to be effective, whereas others (like Ruby and Python) do not require an IDE.

Personally I do mostly Ruby development, so I use VIM plus a host of plugins that are Ruby-specific. If you develop in another language then there are probably a host of plugins that make that language easier to work with.

In general though you are correct that you will have to tweak more to get VIM or Emacs to work for you - an IDE is essentially an environment that has already been tweaked for you.

I think this is where the problem lies, a persons Vim configuration is personal to them and their needs, there's so much disparate information out there I'm finding it difficult to say "this is a good configuration for Ruby, this is a good configuration for Python"

It would be good if there was some sort of package you could download that sets up your development environment (Vim + plugins + configuration file) for a particular language.

At the moment it's just a personal preference and I'm finding it difficult to find what's useful or not

There's not too much of a problem here actally. All these plugins are supplemental functionality. Vim is an amazing editor by itself. Master that and then enhance it with a few plugins here and there for the particulars of your workflow.
> "I think that some languages (like Java and C#) really require an IDE to be effective"

I've never understood that statement (I've programmed Java for 10 years, using a text editor). I think I'm effective.

Java and C# are easy to parse. That makes them tooling-friendly. That, in turn enables the development of reliable, fast tools for refactorings.

For better or for worse, most of that tooling is implemented as an IDE command/plugin. Command-line refactoring tools are way rarer. For example, <http://stackoverflow.com/questions/704062/are-there-any-open...; was asked a year ago, but the top answer lists software that, according to it's website, was Last released seven years ago.

So, IMO, that 'require' may not be absolute, but it certainly is pragmatic.

What makes you think you are effective in Java? Do you know what you are missing?

Most languages are easy to parse.

The argument I've heard many times before is that you must use an IDE with Java because Java is overly verbose.

I'm effective in Java in that I achieve what I want to achieve. The bottleneck has never been speed of typing/refactoring etc.

That depends on your definition of 'easy to parse'. For C and C++, you have the #include problem, macros whose definition isn't known until one calls the compiler. perl cannot be parses at all; there are cases where you must run a program to find out whether x is an identifier or a fiction name.

For Java, you can take a function in isolation, search its source file for import statements, and tell me what the variables, statements and expressions are. C# was in the same boat, but with LinQ, I think it gave up that idea. Now,

perl cannot be parses at all; there are cases where you must run a program to find out whether x is an identifier or a [function] name.

Nonsense. A very small category of behavior exists where static parsing of Perl 5 cannot determine whether a given program is valid. That's all. It's possible to write a pathological program which has two valid and working parses, but I've never seen it and it's an intellectual game, not a trap waiting to snare an unwary programmer.

(I have no idea what "an identifier or a function name" means, as Perl uses sigils to distinguish between variables and function names.)

See http://www.modernperlbooks.com/mt/2009/08/on-parsing-perl-5.... for details.

I've done stacks of Java programming in gVim, and, yes, I had to look up some of the APIs, but for the most part, it was just fine. Using Ant allowed my just use the shell to build.

For C#, I don't mind VS2010. My laptop handles it just fine, though, yes, it's a bit slow on start-up, but once it starts, I can just leave it open for days and days. I do, however, use the VIM extension.

For all other stuff (Perl, ColdFusion (really), Javascript), I use gVim.

When I'm coding in Java, I generally just use TextWrangler (on OSX) or kate (on linux) as my editor, and commandline tools like ant and git to manage everything else.

I think C# needs an IDE like VS more than Java, if only because it doesn't have a standardized high-quality documentation tool equivalent to javadoc. For many .Net libraries, intellisense is the only source of documentation, and MSDN docs are rarely very helpful.

Not necessarily - monodevelop is an excellent IDE for use with C#/mono.
Nice to know about monodevelop, but I don't see how that refutes my point about C# needing an IDE.
I find msdn docs far better than javadocs. YMMV.
I only fire up an ide when I need to step through code with breakpoints and watch variables. The rest I do in vim. It depends on the language a lot in how functional you can be without a full ide.
Bingo. I started long before there were IDEs and quickly gravitated to EMACS. When I last used an IDE (VC++/VS) I used EMACS for my editing and it for building (compile and link) but mostly for this type of debugging.
Stick with vim, it's just a matter of finding what plugins suit you best. I'm no expert, but I am slowly building my environment: http://hg.emanuelecipolla.net/dotfiles/src/ if you wish to browse it.

P.S. I would like to know if someone spots mistakes or suggest enhancements, thanks :-)

Hi thanks for posting this.

I don't mean to be rude but to me this folder is just a collection of your configuration files. What I really want to know is what your configuration is, what changes have you made to make your environment usable and useful to you?

I've been using Vim for about 5 years now. I started because I needed an editor that supported syntax highlighting and auto-indent to work on the university servers over SSH.

It took (still takes) a lot of time to learn Vim. At first I used it as notepad with syntax-highlighting with auto-indent. That is, I immediately entered insert-mode and kept in there for as long as I could. But slowly I've started to learn myself how to truly use Vim. Nowadays I try and exit insert mode as quickly as possible (sometimes after typing just one or two letters).

Every once in a while I stop and reflect on things I do very often, look up ways to do them faster and then try and train those ways to be a habit. I learned most of these things from Bram Moolenaar's presentation "Seven habits of effective editing" (http://www.moolenaar.net/habits.pdf and http://video.google.com/videoplay?docid=2538831956647446078) most of this talk probably holds for emacs too.

Examples: when I need to rewrite a function arguments nowadays I just type "ci(" which does Change Inner parenthesis, it deletes all text between the enclosing parenthesis and puts me in insert mode to start typing. If I need to move more then 5 lines down I use incremental search instead of arrows/hjkl to move around. If I need to move to the end of a line I use $ (goto end of line) or A (append after end of line). If I need to go to the middle I'll use other shortcuts.

Vim has billions of ways to move around and select text for editing. Learning to use those relevant to your way of working is crucial if you want Vim effectively instead of annoying form of non-modal editor.

As for making Vim useful to you, I don't think anyone can tell you how to do this. You need to make it fit your style of working. Which means, trying, figuring out what bothers you and steal what works from others. Most of these example .vimrc's that people post do not include comments on what the options do, which makes this hard. I commented mine but it is rather sparse and I don't have a place to dump it at the moment to show you, unfortunately.

I'm curious.

I've been using vim for not that long (but long enough that it's now my main editor). What all shortcuts exist for getting to the middle of a line?

You can use 40| to go to the 40th column of a line. I typically use e or b to jump by words to reach the middle of a line. You can also 5e to jump by 5 words for instance too.

I would be curious to know if there are other shortcuts for doing this too though.

You can use repeat counts with the cursor movement commands. For example, 40h will move your cursor 40 characters to the right; or 5w will move it forward 5 words.

Alternatively you can use the search commands, '/' (forward search) or '?' (backwards search) with the text at the middle of the line as your search string.

I find myself using fX (find character X) often, where X is a character at the position I want to start editing.

When I'm editing string parameters of a function I'm calling, I use di' / di" a lot (moves to first ' / ", deletes inside content, and drops to insert mode).

When I first started with vim, I immediately downloaded every possible plugin I ever thought I'd ever use, along with a bunch of complicated scripts that I added to my .vimrc, with hundreds of different options I copied from others' .vimrc files.

As I learned vim, I learned to appreciate its simplicity and now keep my config at the minimum possible deviation from default as I can tolerate. My .vimrc is fairly spartan (http://github.com/tomhsx/homedir/blob/master/.vimrc) and the only plugins I use are ctags, pyflakes, and shortcuts for F6/F7/F8 to debug/execute python scripts.

I don't feel you were rude at all; you have only stated the truth as it is :-)

I posted that link as a suggestion to browse the relevant parts (.vim/ and vimrc) as they are the result of a Vim newbie quest through several content on the Internet describing how to get some of the most requested features from IDEs (for example, intelligent completion) working with Vim.

As you might see from my .vim/bundle, I use relatively few plugins; they are pretty standard things like a file browser (NERD Tree), except for the custom "plugin manager", Pathogen, that I found as a reliable alternative to Vimballs and the like.

I have come to the conclusion that IDEs are overrated. I did exactly what hga notes otherwise here when I used Visual Studio--I edited with Emacs, compiled and built with VS.

I now use Emacs for everything. It has just enough pieces to be able to configure the task you want to do. In particular, I make heavy use of key mappings, for example, F11 to the compile command, which defaults to "make -k -f Makefile".

VIM is highly configurable--several at work use it. Two of our more experienced guys use Pico.

Check out "Coders at Work" to see what the truly serious programmers of our time use for IDEs. Short form, none.

Coincidentally I'm reading "Coders at Work" right now and it somewhat inspired me to write this post!
I believe Emacs already had that bound to C-c C-c by default.
Emacs has all sorts of things bound to C-c C-c, depending on the mode. It's common enough that it's worth checking what it does in the current mode (With C-h C-k C-c C-c, of course).
First off, it would be "C-h k C-c C-c", not "C-h C-k C-c C-c" -- "C-h k" runs describe-key on the next shortcut typed.

Idiomatically, "C-c C-c" usually means something like "commit" - send an e-mail, compile source (by starting make), etc.

C-h m (the mnemonic is "help,mode") lists all the bindings for a give mode.

Also, pressing a prefix followed by C-h (i.e., "C-c C-h") defaults to listing all keybindings with that prefix. (Sometimes there are bindings replacing that, though, like "C-x C-h", which is delete-region.)

The funny thing is, I definitely would have typed "C-h k" in emacs. The hard part is trying to translate from muscle memory back into a string I can write down on HN.
I'm a total newbie to Emacs - where can I find it for Windows, the last few times there have been an 'IDEs suck!' post on hacker news I've gone looking for it, and have found different versions, and dead links. What version do you use and where did you get it?
If you stick with vim or emacs, you may want to check out ctags (or etags), to help you with some of the functionality you normally get in an IDE. IMHO, when you go the non-IDE route, you will forgo some features you are used to and satisfy those needs with alternative mechanisms. This is my personal preference. It's a bit of a learning curve, but I think you end up with a much better understanding how your code fits together.
I feel TextMate is the best middleground between classical editors and the modern IDE.

It's a modern editor with as much IDE as you care to add.

I'm curious -- why do you care how many megabytes or CPU cycles some random tool on your computer uses?

Just seems like such a strange thing to say. I've never, for example, preferred one media player over another based on it's algorithmic size, or bought a iPhone app because it used especially fewer screens.

IDEs are just big text editors with a lot of stuff tacked on. I can see, perhaps, wanting to become VIM or EMACS master-of-the-universe, where you've macro'ed yourself to death and the entire planet can be controlled with just a few keystrokes, but for "regular" coding? What is it about an IDE that bugs you?

I hope I didn't sound too critical. I'm just curious. I'll use any IDE anybody has as long as I can type code and compile it. Add in some macros? It's all good. Why in the heck would I want to dive deeper than that unless I had to? Why would I care? Why would, say, Eclipse be any worse or better than EMACs? Or VS any worse or better than Multi-Edit.

I understand there are big fans of various tools. Feel free to jump in here and make your case. I've love to be mistaken. I just think this is like all the hoopla over Git -- it's a tool. I shouldn't be thinking about it very much. If I am it's not a very good tool.

Depending on your machine (this obviously doesn't matter much to someone with a beastly dev box), IDEs like Eclipse or Netbeans sometimes can't keep up with typing speed. This isn't a brag about WPM because I'm not that fast. But the code verification and error highlighting sometimes really slows things down which can result in hair-pulling. The best set up I think is something like Eclim - best of both worlds.
This is the reason why I've developed a dislike for IDEs

What you say is correct, an IDE is just a text editor with a bunch of features tacked on, but those features lead to the environment becoming hungry for resources after every keyboard command you type.

It doesn't surprise me to find Eclipse using 1GB of RAM after a few hours of development.

My main development machine right now is a Macbook laptop, so I have limited resources in terms of RAM (2GB) and processor (2GHZ) and hate to see programs becoming greedy

If you have 2GB of RAM, why are you worried that the program that you basically bought and booted your computer for takes half of it?

Are you sure that it would still use 1GB if you ran a program that needed memory harder?

I have a Windows laptop with the same specs, and I can slow it down pretty easily.

Chrome with thirty tabs -- switching to a tab I haven't looked at in a while sets the disk grinding and brings everything to a halt.

When I start up Outlook, or just click on Outlook after waking up the laptop, there's a couple minutes I can spend getting coffee, because it takes take that long to switch to another program and start using it. (Waiting for Outlook to finish starting up is another few minutes after that.)

Eclipse with fifty or more files open (damn these big Java frameworks) -- grind grind grind every time I switch between views, or at unexpected times while I'm typing.

I wish I knew more about Windows, because when I look at the processes in the Task Manager, their combined memory footprint is well under 2GB, but all my programs become nearly unresponsive while the disk goes grind grind grind grind grind... what the hell is that about?

Whether it's misconfiguration or some spyware crap my company installs on our laptops (I disabled the "backup" feature that just copy files around on the hard drive, but I'm sure there's more) it certainly helps if I keep the resource usage of my programs down.

tl;dr: As long as people are bothered by performance problems, they'll worry about the resource consumption of their tools.

Chrome with thirty tabs

I found it very helpful to actively and violently close down tabs. 4-5 is just about the ideal maximum. I keep a separate lightweight browser, Opera, open to API documentation, and firefox for other stuff. For wifi, I removed the internal one and use an external one. Whenever I need to focus, I close firefox without saving sessions and unplug the wifi.

When I go out to cafes for reading, I leave the wifi at home.

> I keep a separate lightweight browser, Opera

Opera is not particularly lightweight, even compared with Chromium. Check out Midori.

That was an excellent suggestion. It is more lightweight than any other full-functional, graphic browser I have used so far.
Turn off Aero, upgrade your RAM, you're doing a lot of work.
It would surprise me, as on my Macbook, Eclipse with the default .ini is set to run the JVM with a maximum size of 512M by using the -Xmx512m argument. (I am, however running Eclipse "Classic", maybe the other bundles have larger limits). In fact, it might run a little better if I boosted the amount of RAM available to its JVM.

Maybe someone knows otherwise; but I think it is a fact of life that when you set your JVM to use (say) 1GB and keep a java app open and creating objects for long enough, it will tend to grow to 1GB rather than spend time running the GC.

FWIW, I had the same issues on my Macbook with Eclipse and switched over to Netbeans. Feels a bit leaner and has a nicer interface (but also has it's share of flaws).

Now that Sun is no longer I sure hope Netbeans doesn't go down the tubes.

I've found the same issue re screen updates, but I believe the issue its more to do with the well known ui latency of most java toolkits than the resources used by the app. Eg, eclipse may not be placing much load on memory if cpu but right clicking a project still produces an obvious lag before during the dialog on both linux and osx.
you can always turn all that off. I always disable spell check and validations since I really only use Eclipse as a glorified text editor.
I don't see any reason why I would use an IDE as a glorified editor. Either I use an IDE as what it is - a heavy weight environment - or I use a text editor configured down to me needs.

It's true that Eclipse can be quite memory hungry, but if you let it eat some memory, it's features can be fast. Still, the standard configuration of Eclipse is a joke. If you are trying to edit files, Eclipse will hang all the time.

In recent days I play a lot with Vim. Even though I configured it to my needs, it still lags behind an IDE when it comes down to IDE specific features - e.g. search in a project: it's neither as comfortable nor as fast as an IDE in this area. (I'd like to be proven wrong on this feature, because that's the main thing that's bothering me) - But Vim is good in what it is: a text editor. And that's what I'm doing most of the time: editing text files.

Searching in a project: There is a builtin command vimgrep to search through external files, there is also a grep plugin that makes it easier and more versatile.

As well, there is ctags, which basically builds up a list of function calls and where they are in a file. Vim understands tag files by default and will use them automatically. You can then toggle between the function declaration and your current line (useful for searching for functions' and what their parameters are).

If I'm not completely wrong, Eclipse's search is powered by Lucene. On small projects you won't notice a great difference, but on larger projects an indexed search is a great difference.

Does the ctags plugin work for other languages as well, e.g. python, ruby, javascript?

Yes to all three; about 34 languages in totals.

BTW, ctags is a separate command-line tool. Any *nix has it, it is available for Win too.

One reason I don't use an IDE is the overhead in starting it up. I want a text editor to open now.
Tell me about it. TOAD takes more resources to run on my PC than Oracle. Same with Eclipse.

I remember when people joked that Emacs was a memory hog "eight megs and constantly swapping".

There were more:

Eventually Mallocs All Computer Storage.

Emacs Makes A Computer Slow.

About the only one that's still true now is this:

Escape Meta Alt Control Shift.

Only once did I see emacs malloc all of my ram, but it did it on the server and crashed it. No clue what happened, but I barely got top open to see it happen before the kernel panicked.

A once-in-a-lifetime experience though, I start the emacs server on boot so I can start clients much faster, which means it's always running as long as my computer is on, and it's never had any issues other than that one time.

When I was at Apple, I could build Emacs from source faster than IDEA would launch. As a twenty-year Emacs user, that sort of turned my world upside down.
It was most likely building an index of your source tree or something. IntelliJ starts up fast enough for me and I rarely restart my IDE anyway. IntelliJ stays open on my MacBook Pro for weeks.
> It was most likely building an index of your source tree or something.

He's comparing it to building emacs from source. He's quite obviously trolling: Emacs has 15MB of C source and header files already.

On my machine (2010 15" MBP) a configure alone takes 20s, which is about 3 times the loading time of an empty IntelliJ (no project), and about twice if loading a preexisting (cached) project. A `make` of 23.2 takes nearly 3 minutes. Unless he's trying to launch an IDE with no free RAM or building an already-built soft (or a networked build), his declarations hardly make sense.

Not a troll. The IDEA project contained upwards of 60 subprojects, and the time from clicking the IDEA icon to the availability of the editor was often more than four minutes. On my eight-core, 16GB Mac Pro.
> One reason I don't use an IDE is the overhead in starting it up.

Why? You start it once, the first time you want to start developing. And you never close it until you reboot the machine.

Same as with Emacs, start it, have it enable server-mode automatically, and until you reboot you go through emacsclient.

It isn't about the size on disk or in memory or about the CPU cycles. It's about the complexity of using it. With millions of menus, commands and configuration options modern IDEs are hard to use. The complexity in menus, toolbars and panels is a distraction and uses up valuable screen space.

IDEs are not optimized for the common case. For example adding an interface to your project in visual studio takes the same steps as adding a "ADO.NET Self-Tracing Entity Generator": right click on the project in the solution explorer, choose Add, choose New Item, choose Interface, click Add. At every step in this process you have to choose from a list of about 10 options. So by choosing something else when you're given these options you can probably reach about 10000 different end results. Surely adding an interface is what you want more than 1 out of 10000 times, so why bury it under so many steps?

> I'm curious -- why do you care how many megabytes or CPU cycles some random tool on your computer uses?

Because those megabytes need to load from disk, and those CPU cycles need to cycle. Eclipse has some cool features, but if I have an aversion to loading the thing because it takes literally 5 minutes then I need a better tool. Leaving it always open isn't an option because of all the RAM it uses. I don't want another computer right now either.

have you tried headless eclipse and vim? http://eclim.org/
It's a neat idea, but running eclipse headless doesn't actually help the RAM/cpu cycles question.
Agreed. I love good tools, and I hate bad tools, just like everybody else. But if the tech value index (= time gained by using tool / time spent talking about the tool) < 1, then the tool starts to smell bad.
Vim or Emacs, it doesn't really matter. Users of both will tell you that their editor is best, but if one was really better, we probably wouldn't be having this discussion after so many years.

I personally picked emacs for a number of reasons, you seem to already be familiar with Vim so that might be best for you.

Print out the cheat sheets, and get to work. It's terribly frustrating at first, but you'll be off the sheets in no time. After a month of steady emacs use I could not go back to anything else. I have to use Eclipse at work from time to time and I find the experience maddening; having to use keys like Page Up, Page Down, Home, etc. Emacs lets me do all that and more without ever leaving the home row. I'm sure Vim is the same way.

Pick one, learn it, love it... just don't become a zealot :)

Vim used to have an edge when emacs was viewed as "bloated" for using 8 megs of ram, but now that's pretty negligible. On big projects I can get eclipse to use more than 2 gigs!
As a data point, my Emacs session is currently taking 75 mb RAM (on a 64-bit system). It's been up for a few weeks. That seems pretty typical.

While it's common to start and stop vi(m) frequently, Emacs is usually kept running, with shells, interpreters, etc. inside it. The start-up cost of loading lots of extensions amortizes over the total session. (And it just took about seven seconds for a new Emacs to start and load everything I use, FWIW.)

I use textmate + shell. Once you get rid of all the crap in textmate - bundles, auto insertion of closing brackets etc, it's actually a usable editor.

The main thing is just to get good at using the shell. Grep, awk, etc etc With all the tools at the cmdline, you can do anything.

> With all the tools at the cmdline, you can do anything.

only if your definition of 'everything' is limited, all the refactorings in a half-decent ide are quite hard to get right with awk & sed. For what is worth, even something as simple as finding all elements in a type hierarchy are quite unobvious to do with shell tools for me.

I think if you write good code the case for needing advanced re-factoring tools is minimal. If you're writing the same thing time and time again, that should ring alarm bells.

FWIW, for other types of refactorings (I mainly use Java):

  1. Change the name/type of something
  2. Compile
  3. Work through the errors fixing stuff it broke
Maybe that's less efficient than using some IDE tool to do it, but it's not like it takes a long time.
well, if I was so good to get code right at the first time, I would not need refactoring at all. Alas, I'm not :)

I agree that, all the things you can do with automatic refactoring you can do with a change/compile/fix loop, but it imposes an higher amount of friction, which (even in a subconscious way) pushes you into not making changes.

As a ruby and python dev using vim, I can even feel this in changing a single method name (with sed, obviously not syntax aware), as a java one without a supporting ide I'd seldom venture in a "extract superclass and use it where possible as return value" kind of change.

Sure, maybe I like that friction. If a refactor is going to be a bit of hassle, it makes me think about it more, and evaluate if it really is a good change to make.
Let's talk again when you're dealing with a codebase with >1000 classes, 5 different programmers of varying ability that you don't have direct control over, a build process that takes 5 minutes to complete as it works its way through a dozen different complex tasks with dependencies on just as many external tools and servers, and you need to do one of these simple "rename" factorings right now because a colleague made a spelling error in a widely used internal method that's about to be promoted to a part of a public API. I guarantee you'll start to question whether change/compile/fix is the right approach to these things...
In that case I'd just write a simple shell script :/

But thank god I don't work on large systems like that.

That's because many of the people who build those tools have coupled them to an IDE, rather than making a standalone tool that could be made to work with any editor with a little effort. And while it would be changing files without the IDE knowing, version control systems run standalone and modify file currently being edited, too - it's not a problem when you expect it.

A standalone tool can either do static analysis (like a tag index, but more so) or communicate with the language runtime, and just leave the UI to the editor/IDE. Either way, it doesn't need to be in sed & awk.

I use Coda on the mac. Not really an IDE but still combines what I need into the environment.
IDE's are a nuisance, but what's a bigger problem is your typical framework that will include a few hundred classes and a few thousand methods and properties.

Keeping that all in your head is a serious effort, especially if you don't work on the same project all the time.

I try very hard to stay away from IDEs and environments that require one to function, but 'modern' looking websites and applications more or less require the use of such frameworks.

So I find myself using the documentation probably more frequently than I really need to, in order to simply look up the names of stuff and I probably am not using the frameworks to their fullest potential because I can only memorize a subsection of them.

Even a 'lightweight' framework can easily come to 100 classes.

So, my toolset: vi + my memory, but it's tough going.

One additional feature that IDEs often provide is tiling different screens around the text editor: debugging windows, REPL, project file hierarchy.

I substitute for this with a tiling window manager (wmii) with very similar keybindings to vim.

My toolset: my memory, vim, wmii, rxvt-unicode-256color

One thing I like about Vim which I'm not sure I have seen anyone else posted about here is that I can log into my remote VPS and have access to much of my development stack over the internetz. This is important to me because I live in the Philippines and my internet connection is relatively slow. It's good enough to get a solid terminal connection but downloading a large bundle of files could take days. So, I just log into my VPS, fire up Vim and if I need to get access to large number of files then I can quickly get them with Wget (obviously my server has a much faster connection speed than I do.) Also, if I get hit with a power outage I can hit an internet cafe (powered by generator) and get access to that same development stack no matter which computer I'm using.
I think it all depends on what language/platform/framework you are working with. So far, Emacs has proven a joy to work with Django projects. I started using it on my move over to a netbook, because the screen real-estate is precious when I'm out of the office (and far from the big monitor). I went on and discovered elisp, made a couple customizations on how the editor starts, added a couple key bindings and so on.

OTOH, I can't use it with Google AppEngine projects because the way GAE takes over stdin/stdout, which prevents me from starting pdb/ipdb. For GAE work, I am stuck with Eclipse and Pydev. For me, the biggest nuisance is not the amount of memory/cycles it eats, but the amount of pixels.

What kind of framework you develop for?

I'm using emacs for GAE projects and I haven't noticed any issues. Django lets you deploy/test from the command line, same goes for Java.

Then again, I do always keep a shell open when I'm coding to run tests and stuff.

I also have no problem using GAE and Emacs. I just run the dev server from the command line and its all good. Make changes to the code in Emacs, refresh the browser, and the changes are there. Where would you run into a problem that'd make you switch editors?
I often use pdb/ipdb.set_trace() in the code to stop the server and inspect stuff during execution. How do you do that with GAE under Emacs?
I'm in a CS class right now and I'm amazed at how useless so many kids are without an IDE.

When I first started taking classes, I tried using eclipse. I decided rather quickly that, especially in a classroom setting, IDEs were a crutch and if I wanted to become a good programmer they would do more damage than good. (Note I said good. That may or may not be the same as productive.) So I started learning vim. Now I can't use most environments. I use Xcode for iphone development, but otherwise I'm just too programmed for vi. I need my commands and macros. GDB works great once you learn it. Valgrind works great as well. And these are available on any *nix machine, all over an ssh connection.

We just had a programming exam where they give you three hours on an isolated machine to build a fairly simple program in C++. Most of the questions and problems people had were that their IDE of choice wasn't working for some reason. Meanwhile, using vim/gdb/valgrind I was done in an hour, long before anyone else.

Blah blah blah I'm so much better than my classmates blah blah blah.
news.ycombinator.com/circlejerk
In the Real World, though, they'll have an IDE available all the time. So how effective are they with their IDE of choice? That's the question that really matters.

(Long-time Emacs user here. I don't have a horse in this race.)

I managed to get by on Vim with the following key bindings

[code] h j k l i a ^ $ Ctrl+w Ctrl+n Ctrl+p * # ? [/code]

(comment deleted)
I primarily am doing Xcode development.

So vim is simply set as my editor, with CoccaVim plugin installed. Xcode manages the builds, etc, but otherwise I'm in vim.

There are plenty of plugins that give you "all a boy could ask for" as far as development resources.

Go through vim tutor for a bit to get the NEXT level of commands down. Once you get used to typing replace commands and moving about by words etc, you'll possibly think it "powerful enough".

Personally I use emacs, before that it was Kate (+shell). I only use a miniscule subset of emacs' features and I have no intention of learning too much.

Everything I need from a code editor is the ability to open files in tabs, to syntax highlight any random language I use (on an average day I'll be using up to 5+ different languages) and to understand the indentation style for all the languages to ease indentation. Perhaps some bracket matching and that's pretty much it.

But what I seriously, seriously cannot live without is a HUGELY HUGE area for code. The biggest thing I hate in IDE's is that they tack on so many features and toolbars and crap that at the end I'm left with this tiny code editor that leaves me feeling horribly claustrophobic. Sure, I could close all those toolbars, but then why am I wasting resources on them in the first place?

Another thing I hate about IDE's is how egocentric they are. I don't like conforming to some IDE's idea of what my project structure should look like. And I certainly don't like it when they get horribly confused if I move a file through a normal interface instead of the IDE.

As for "keeping the project in my head" that some people mention as a problem when not using an IDE ... I've never found an IDE particularly helpful in that regard. I've actually never found any added value that an IDE would provide ...

touches on a few of the reasons I love emacs as well

ido-mode + tags for navigating my source code, syntax highlighting + indentation for any language I do, pretty much nothing on the screen apart from my code, easy hooks for programming custom functionality

Boy, you said it there: "do it my way", as well as the "wait (long) while I start up" that IDEs are so guilty of.

That said, sometimes I use NetBeans (and sometimes I don't). I was using Eclipse for a few years, but I got so tired of the setup and wait. Of course, there is probably a newer, less sucky, version of Eclipse now, who knows.

NetBeans is fast enough on my netbook (Atom, 1.6 GHz w/ 1 GB RAM) for most little projects I tinker with (at least under Linux), and likewise on employer's workstation with real stuff (even using the mandated Windoze). The edit window is mostly responsive soon after start, though it may take a minute for rescan to finish so docs, jump-to-def and autocomplete to be available.

Also, I like that you can undock the edit window in Netbeans, putting it in its own relatively large stand-alone window. Throw in the "vi" plugin, and get to work, referencing the other window full of, um, crap, only when you really need it. I guess I shouldn't call the integrated debugger "crap", but much of the other stuff is :-)

I have some screen shots on my website of several file types, where I have undocked the editor and hierarchy widget. Playable for me, YMMV. http://roboprogs.com/devel/2009.09.html

Also, its easy enough to create a project with "external" (existing) sources, rather than the IDE-p0wned build process. I usually end up creating one (1) IDE project for a given source base, then checking out source for multiple branches and then either resetting a sym-link (*nix file systems) or renaming (MS-brain-death) the top level directory for the branch-of-the-day.

I use vim for simple things like bash or tex, but I prefer to use geany most of the time for WP because it's fast, versatile and easy.
What IDE, language and platform is driving you to frustration?

I'm a long-time emacs user, but I have found Intellij IDEA to be a wonderful tool for working in java. Older versions were slow to start up and occasionally sluggish, but new versions on modern hardware are wonderful. I use netbeans for C++. I haven't found anything for Python that I like. (I find Eclipse unusable for anything.) If IDEA or Netbeans were taken away from me, I'd use emacs.

Actually, I still spend a lot of time in emacs. I use the IDEs for writing new code, reading code, and running/debugging unit tests.