vote up 13 vote down star
5

"Use a single editor well," The Pragmatic Programmer said.

I know it's about productivity, but how many of you really use a single editor for virtually EVERYTHING?

When your favorite editor doesn't integrate well with your development environment, will you struggle to use it anyway (by switching frequently between your editor and the IDE when you're developing something, for example)?

flag
show 3 more comments

43 Answers

prev 1 2
vote up 1 vote down

I am using vim, notepad++ and kate. Vim because my fingers had to learn it, way back the time I was a student, and notepad++ and kate because syntax highlighting and GUI can be nice when trying to work out the nuts and bolts of other's programming skills.

link|flag
vote up 10 vote down

To be able to use an editor for everything, it needs to be the right sort of editor. It needs to be flexible, extensible, and light (i.e., fast to open). I'll take those points one at a time:

Flexible
"Everything" covers a broad gamut and so the editor has to be flexible enough to be able to work well across that broad gamut. Things like search, syntax hilighting, splitting, keyboard-shortcuts, multiple-tabs or open files are features I'd put in the flexible category. There's also that intangible of how it feels in various languages and scenarios. Does it, for instance, feel as good to use when coding C++ as HTML as Ruby as Plain text? It's got to be flexible.

Extensible
No editor can come bundled with everything you need, so an easy, flexible extension system is required. The system should be powerful enough so that you can build a feature if it's missing, or even a whole new suite of functionality. It should also be easy enough so that you don't have to think too hard in order to create quick and dirty extensions and macros. It's got to be low friction, yet powerful.

Light
One of the most annoying things is when you have a powerful, flexible editor that does all these neat things and you love to use it all the time, and yet it takes about a minute to load. You develop a kind of friction against it when you just want to quickly pop open a text file. In order to be able to use your one editor and use it well, it must be light enough so that you don't even think about popping it open to quickly view a log file or readme. It's got to be a frictionless experience. It's got to afford quickly opening, closing and moving around the screen (if you're on a GUI).

With these points in mind, what would I use on each platform?

TextMate (Mac OS X)
A perfect candidate for the one, true editor. Has a remarkably powerful extension system that takes advantage of underlying OS shell capabilities and scripting languages. It perfectly embodies the flexible, extensible, light mantra.

E Text Editor (Windows)
Essentially TextMate for Windows. Innovative use of Cygwin means it can take advantage of the power of the *nix shell tools and scripting languages. It even contains some things that TextMate doesn't have, such as Snippet Pipes.

Vim or Emacs (*nix)
Old-school, sturdy, reliable, time-tested. You see an experienced touch-typing hacker working one of these editors and it's like observing a 10th dan kung-fu master. These don't have the slick extension system of the first two, but who cares? The extension system is the underlying OS. The possible downside to these editors is the learning curve but, really, it's well worth the effort.

So yes, I do use one editor for almost everything. I do usually switch to TopStyle if I'm doing CSS, though. I'm mostly on Windows at the moment, so I mostly use E Text Editor. But if I'm on a Mac I'll use TextMate. If I'm on Linux I'll use Vim. The author of E Text Edtior has said he'd like to do a Linux version eventually, which would be awesome. Can't wait for that.

link|flag
show 2 more comments
vote up 1 vote down

There was a time I used Editplus for everything - creating shortcuts for all the compilers and linkers that I needed. It has been some time though. Unix has always been Vi or Vim for me. Somehow never got around to EMACS.

link|flag
vote up 2 vote down

I use SXEmacs (would use any other Emacsen) to almost everything, from source code editing, compile triggering, browsing code, irc, IM, email and some browsing. The only thing I cannot do well is browse sites with a lot of JavaScript (which is a lot these days :( )

What keeps me using Emacsen is the powerful configurability and the community that keeps on developing packages and elisp features, and shares nifty little configuration snippets.

In order to gauge the extent of the stuff it can do, checkout http://emacswiki.org

link|flag
vote up 22 vote down

I use vim to write code/documentation/papers/notes. I use vi-mode in zsh. Firefox has vimperator to follow vi-like keybindings. Mutt uses vim as the editor. My music player, ncmpc, uses the familiar hjkl.

I firmly believe in using a single editor well; I'm definitely more productive when I don't have to think about how to do what I want.

link|flag
show 3 more comments
vote up 13 vote down

NotePad++

Has all the syntax highlighting I need for most non-Microsoft things.

Past that, VS2005.

link|flag
show 4 more comments
vote up 1 vote down

Not to toot my own horn, but I think I'm pretty good with Visual Studio. It's got awesome shortcuts, and lots of powerful features.

I do use it for just about everything too!

link|flag
vote up 5 vote down

I am proficient with Emacs, and become more so all the time. I definitely go the extra steps to make Emacs do things that it might not do out of the box if it will help it integrate into some required environment. The less I have to leave Emacs, the better.

I will even write Elisp code (which is actually pretty fun). My favorite new feature of Emacs 22 is the ability to write shebang Elisp scripts!

link|flag
1  
You definitely pass the Geek test. I salute you! – Christopher Mahan Sep 25 '08 at 5:57
vote up 1 vote down

I personally use SlickEdit. But it has 'emulations' for other editors, about seven, and I use the Vim emulation. I'm alright with Vim. Intermediate, I would say; I'm not a wizard.

I'm working with Python at the moment, and SE surprised me; I thought it wouldn't be much good, but I've had no troubles.

link|flag
vote up 2 vote down

I used vi for twenty years and it still surprised me occasionally with its power. Now using vim and finding more surprises in store.

Most of my coding is done on the command line or in Eclipse. Even in Eclipse, I will switch out to vim to do some particularly hairy text substitutions.

link|flag
vote up 1 vote down

I use Vim for everything except for C# 3.0, where you really need Intellisense because of type inference.

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

TextMate. It integrates with everything on the Mac and everything Unixy as $EDITOR or whathaveyou. I am not even joking when I say I use it for absolutely everything.

Every Mac developer hearts it.

There's only one major platform-specific IDE - which will integrate with it reasonably - and it's flexible enough to do just about anything else without getting in the way.

link|flag
1  
The biggest weakness as far as I can tell of TextMate is that as soon as you aren't on mac all your TextMate knowledge in the world is useless. Do skills or scripts from TextMate map into any other editor on other platforms? – sirwart Oct 2 '08 at 17:12
vote up 2 vote down

I use one GUI editor for coding (with good syntax highlighting), but generally revert to VI when working on a server that only offers a command line interface.

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.