up vote 24 down vote favorite
10
share [g+] share [fb]

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

link|improve this question
show 4 more comments
feedback

closed as not constructive by Jeremy Banks ʬʬʬ, Bill the Lizard Sep 20 '11 at 2:04

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

46 Answers

1 2

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|improve this answer
show 9 more comments
feedback

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|improve this answer
1  
It seems like VimL or Emacs Lisp would qualify as a slick extension system.. am I oblivious to some subtle majesty of TextMate's extension system, or are you unaware of the power of VimL? It's not the best language in the world, but it's definitely a scripting language. Lisp, on the other hand, is more or less accepted as the best language in the world, at least among those who have «earned their parentheses». Vim (and maybe emacs.. I don't use it) also has bindings to enable scripting with a pantheon of other languages: Python, Lua, Haskell, Lisp, etc. – intuited Aug 8 '10 at 7:03
1  
It's also worth noting that both vim and emacs are available on all platforms.. so if you really want to use one editor for everything, it should probably be one of those. – intuited Aug 8 '10 at 7:07
1  
Vim and Emacs are definately more extensible than TextMate – avendael Jan 21 '11 at 17:51
show 2 more comments
feedback

NotePad++

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

Past that, VS 2010.

I've also started Mac development recently and have to give another +1 for TextMate.

Edit: Updated for new software. :)

link|improve this answer
1  
Ditto here. Visual Studio and Notepad++ cover almost everything I need to do. – Jon Tackabury Jan 7 '09 at 20:09
3  
That's what I used before I learned Vim :D (2 days ago!) – Lucas Jones Jan 7 '09 at 20:25
1  
Same here..VS2008 and notepad++ – Naveen Feb 4 '09 at 14:37
1  
Notepad++ has everything (almost). – Gerhard Jun 11 '09 at 9:43
show 2 more comments
feedback

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|improve this answer
2  
You definitely pass the Geek test. I salute you! – Christopher Mahan Sep 25 '08 at 5:57
feedback

I've been a Vi/Vim user for over 15 years now, I first picked it up when I got a mail account at my dad's college as a teen. Most of the features and commands are pretty much programmed in to my brain now. When I'm editing I basically just think in terms of Vim commands. I doubt that at this point I'll ever be able to work as efficiently with anything else.

For a year I held an internship position at a Japanese company maintaining some CAD software written in VC6. I'm sure if you've ever had the "pleasure" of using the VC6 IDE, you'll agree with me that it's not exactly the best programming environment :) Now throw in a host of internationalization bugs for Japanese version and it only gets better.

Of course, debugging, compiling, and GUI editing was better suited to be performed through the IDE so I did all those tasks there. I spent a year working in this IDE / Editor split environment.

To be honest, it wasn't even that bad and I would gladly do it again if I had to. Fortunately the company I work at now is mostly Linux machines with macs as desktops, so I can get my Vim anywhere.

link|improve this answer
feedback

I use (GNU) Emacs almost exclusively for all sorts of text editing and programming, yes. And frankly, it is my IDE too. It integrates with gdb and revision, it's easy to make changelogs, all in all, Emacs is a great tool for me.

I do, of course, have basic proficiency of vi(m) too, as well as ed. Sometimes those are the right tool for the job, for example when I've done completely fresh install on a computer and have not yet installed my editor of choice.

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
show 1 more comment
feedback

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|improve this answer
3  
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
feedback

I use vi (or some variant) for everything, yes. My normal environment is something unixy and my standard "IDE" is several xterms running vim (or whatever non-editor tool may be needed in one at the time), plus one tailing the relevant log if I'm working on something that doesn't run entirely on the command line (e.g., web apps, daemons, etc.).

It's been a good 7 or 8 years since I last worked in Windows, but, when I did, I made a point of getting my hands on an editor with a vi mode as well. I don't recall it being any real "struggle" to switch off between my preferred editor and the Visual Studio IDE, but that may just be because I opted for the consistency of running the MSVC compiler from the command line instead of using the IDE...

link|improve this answer
feedback

Visual Studio for Coding (C++/C#), plus Visual Assist.

Ultra Edit for Scripting and general text/hex editing.

I'm by far not an expert in these tools but i try to learn something new from time to time. If i could use some functionality really badly, i often first go looking for that instead of doing it manually. The problem is, you often don't know where to look for that functionality and how it is called, which makes it hard to find out wether it even exists in the first place.

Generally, you want to know the things that improve your productivity a lot. For example, instead of copy&paste classes then correcting them for the new behavior, invest some time to build a template library (eg. Visual Assist autotext). I've also automated some tedious and error prone aspect of binding code to Lua and adding new classes to the factories. This is a tremendeous help.

Additionally, if i could single out a highly important feature that i use every day and saves me a bunch of time is block edit mode. Not the one you can do in Visual Studio by holding down ALT and selecting. No, i mean a good block edit mode where you can select AND cut/copy/paste or simply type on multiple lines at once. UltraEdit seems to be the only Text editor that allows this. So regularly i copy & paste code from VS to UE just to block edit it, then paste it back into VS. The additional overhead of 2x copy&paste is still better than using replace and figuring out what to replace with what (and also not running it over the whole file/project accidentally).

So i'd say, for most of us, it's not "use a single editor well" but rather "know when to use which tool for a given task - and if you don't know that tool/functionality yet try and find it!". But that's just not as catchy. ;)

link|improve this answer
show 1 more comment
feedback

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|improve this answer
feedback

I use Vim (gVim for windows) for almost any text viewing and editing job I do; and I use it well enough. When I was working on a Rails project, rails.vim was all I need to make Vim my entire development environment.

Unfortunately, as much as I would love to use Vim all the time, my current .NET project has me on Visual Studio, and Visual Studio's intellisense (auto completion) really increases productivity; and having all the method definitions available instantly helps the newbie .NET developer. In this case, I'll mainly stick with Visual Studio, switching to Vim only to do more complicated search and replaces, which I'm more familiar with in Vim, and also much faster.

In my case, switching between Vim and Visual Studio was too much of a waste of time with little benefits; so I learned to live with Visual Studio instead. (Perhaps if I continue to use Visual Studio in future projects, I'll bite the bullet and get ViEmu.)

link|improve this answer
feedback

I guess i will chime in, i use VS for everything as I do mainly .net. It serves my purposes. Its not the fastest at times in performance, but i am productive because i have used it for so long. ANd the addition of resharper really boosts productivity.

link|improve this answer
feedback

Textpad It has all the normal features and I know all the shortcuts I need. It has a column editing mode without which I can not work. Easy to use macros. The only thing I would have liked if it was scriptable.

link|improve this answer
feedback

I use Vim on both Linux and Windows for most of my editing tasks. For Visual Studio I use the ViEmu plug-in which gives me both Vim and access to VS (and it works with ReSharper as well).

For viewing only I sometimes use less (also available on Windows) but as it uses the same keys as Vim for moving around - it feels like Vim.

For heavy editing of large files I tend to use Perl (used to be sed/awk).

link|improve this answer
show 1 more comment
feedback

I use vim for everything on Linux/Windows/Mac. I'm a bit struggling with Xcode on mac because it is very nice IDE but no vim bindings, but I still open files in vim and then compile in Xcode, I get work done faster that way - it's just too slow to move around with mouse and highlight/paste stuff (not much 'copy' as vim does that for me ...).

I quite often use vim's regular expressions to look through data logs, for cutting logs into small pieces and for transforming one specific format of log file to another - it's so easy to use regular expressions from within vim.

Plus compiling and debugging in linux terminal is a breeze, I would usually open the whole project in one terminal and use :mak to compile and then fix all warnings/errors as I go (:cn).

Plus searching source code does not get any better than :vim /bla/ *.cpp *.hpp and have the output show in list (:cope) so that I can jump into any file of my project with the expressions ...

link|improve this answer
feedback

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

link|improve this answer
show 1 more comment
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

Yep, I read that in PP and thought I'd give it a shot. Before that I'd been using whatever came to hand e.g. Visual Studio or Eclipse, etc... Never really learned any editor to any kind of depth (except LSE on VMS... ah, I miss VMS).

After about 9-months of VIM I discovered that despite all it's wonderful features I was leaving :w and :wq all over my code. Very annoying, I guess I am just not cut out to use a modal editor.

I tried emacs for a while but started to get serious pinky strain. Also, I kept hitting / for incremental search (and still do, thank goodness it works in Firefox). I like the server mode though, works well with a command line or terminal.

Now I'm using Komodo Edit, and liking it very much, it's cross platform so I can use it on my Linux and Windows platforms. Incremental search sucks quite a bit but it's an open source project and if that incremental search bugs me enough I will just have to pitch in and fix it.

link|improve this answer
feedback

On my PCs I use gvim for notepad duties and other source files. I primarily work with C# 3, F# and VB9 so I use the Visual Studio IDE, however I cant be without vim like features so Ive got ViEmu installed, as well as Resharper(at home) and CodeRush(at work) and it all plays very nicely together.

I also use ViEmu with SQL management Studio. It works with MS Word & Outlook, but I dont use either of those. So I get much vim support pretty much anywhere - any langauge.

On my mac I only use Vim.

link|improve this answer
feedback

Yep, Xemacs all the way.

I don't know why people say that Emacs is hard to learn - it's self documenting, and it has a command line where you can tab-expand the command you're typing (trying to find).

(Actually not quite true - I programme in Squeak as well, where you use the built-in editing functionality, which doesn't need to be good.)

link|improve this answer
feedback

I use Visual Studio for coding. It works well most of the time, however, I don't use it for viewing data files and logs produced by the applications, because VS is slow with large files and keeps suggesting me to reload files that have changed, which is annoying.

So mostly I use TextPad, which handles large files fast and only suggests to reload the file I'm currently viewing. But sometimes I use UltraEdit, because it can count the number of occurences of a string, or Notepad++, because it can collapse XML elements. So there is no ideal tool that makes all others useless.

link|improve this answer
feedback

No reason why you can't have a cake and eat it. This excellent plugin VIEMU allows you to use your VI knowledge in Visual Studio. Been using it for months and am pleased as punch. Saves me lots of time

link|improve this answer
feedback

I have used KATE (comes with KDE) for years. Its lightweight, has a snippet library, inline shell window, syntax highlighting and sessions (to load different projects). Its also not hard to write extensions or plug ins to work with KATE.

I don't like a lot junk in my editor. I just want:

  • Syntax Highlighting
  • Code folding
  • Find / Replace
  • Sessions (or individual projects)
  • A snippet gallery
  • Easy keyboard shortcuts
  • Easy tabbed / split windows

KATE gives me that. I know that many people love emacs, but I really prefer something more lightweight. I spend more time looking for the simplest of functionality in emacs where with something lighter its just intuitive.

That being said, I'm often editing code in place using some kind of terminal (usually SSH), so I'm familiar with nano / vim. But, I prefer KATE.

Every time I try using something more 'modern', I tend to find the new creature comforts like code completion more annoying than anything. To me, most modern IDE's are just too 'busy' for my liking, but I'd say the same thing about emacs.

link|improve this answer
feedback

I think it depends what your editor is, and why you use it. If I had an IDE with awesome auto-complete etc., I'd force my habits to adapt even if it meant giving up vim for coding. As it stands, I use vim for everything. For a while I didn't, but I found myself typing :52[enter]cwsstuff[esc]:%s/... and then staring at the page trying to figure out how it got there, what it meant, and why it hadn't happened already. Not having to ask myself which editor I'm in every time I think "replace word" is a real boost.

link|improve this answer
show 1 more comment
feedback

IntelliJ IDEA for Java, and e for everything else.

link|improve this answer
feedback
1 2

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