vote up 23 vote down star
14

I've never learnt to use Vi or Emacs yet people do use them still, despite their being other editors out there that are free and useful. What is it about these two and any others like them that means they hold appeal in the face of the newer editors?

flag
4  
Speed. Watch someone who has truly mastered Vi/Emacs in a development environment. I still stand in awe at some people when I compare my Vi "skills" to their crazyness. No hand on the mouse while making screaming fast editing/cycling through files. – Simucal Dec 5 '08 at 7:30
show 1 more comment

40 Answers

1 2 next
vote up 43 vote down check

Well, the fact that they are quite old means that:

  • there are lots of resources available;
  • lots of tools (scripts, plugins,...) have been developed for them;
  • more people have had the chance to get exposed to them.

If you work in Unix-like environments, you can be pretty sure that a variant of one of these will be available on every machine you'll see. Also, having a text editor which has a pure text mode can be quite helpful when working remotely on a machine from a simple terminal.

Personally, I tend to use Vim as I love the fact that it has a 'command mode' (this makes commands much shorter, hence easier to remember and type in my opinion), and that (like Emacs) it is (freely) available for virtually every platform.

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

Up to this day, many environments simply have no other tools installed by default -- no X, no pico, just plain old vi. Most people are just too lazy to change the default configurations, so I guess we're stuck with vi...

link|flag
vote up 0 vote down

I never used Emacs, but I think people stick to vi because once you get the hang of it, it's very powerful and it speeds up many tasks.

link|flag
vote up 2 vote down

I do use gvim on my Windows machines too. I like the window handling, the diff and HEX capabilities, the regex search & replace...

If you want to find a decent text editor that is capable of all things that VI can do, you have to go a long way and maybe buy a commercial product. And you probably have no alternative on UNIX machines. That's the biggest plus in my opinion: you can use those editors on almost every architecture with almost every OS. Can't beat that with TextMate or other (good) editors.

link|flag
vote up 9 vote down

Every feature in every new text editor out there, be it pico, textpad, notepad++, whatever-the-newest-fad-is, you can rest asure that it is very certainly already implemented in either Vi or Emacs, either by design from the start, or by some user who have released some script.

Syntax highlighting, carrets, code-snippets, some-kind of intellisense (even though VS and eclipse do have better, but then again, those aren't text editors but IDEs), scripting, compiling, testing, you name it.

The only issue is that both programs, because of their completeness, have a very steep learning curve, which could scare off people.

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

vi was the first proper editor I used, ever (in 1982 or so). I went for several years without using vi, but got back into using it full-time about 10 years ago (wow, that long). Now I use vim as my editor of choice in all contexts.

I use vim because it's efficient, I know many of the most useful commands (I won't claim to know them all!), and it feels comfortable. I don't know whether that really answers your question or not.

link|flag
vote up 2 vote down

Uhh, I had a good answer for this somewhere, but it seems the entire question was deleted? (It was about IDE's vs text editors). Short version is that you can do whatever you want with Vim and Emacs, they have absolutely no limits. There are scripts and tools available for almost everything you would want to do, and if not; you are a programmer, you can make it yourself. The advantage for people like us to have full control over our tools is HUGE, and the GPL makes sure that it will never be taken away from us.

link|flag
vote up 1 vote down

Sometimes you might log into a linux or unix based machine with very little resources available in the machine, e.g. embedded systems. When you want to edit a configuration file in the machine you need to use the editor that is installed. If you're lucky there might be emacs. But if you are out of luck like me, ending up to use vi, you might run into the situation where you don't know how to exit it (the usual Ctrl-z, Ctrl-d or Esc does not work).

I found out that my close encounter situations with vi only requires the use of three commands. You type them in as you start up an editor with vi <filename>.

i

Insert mode, this is when you can type stuff in as a wysiwyg.

<esc>

This is how you exit the insert mode.

:x

Exit and save (don't forget to type the colon)

:q

Exit without saving

Personally I really don't like to use vi, it is an atrocity compared to user friendly editors such as pico or nano. But it works for its limited setting.

link|flag
1  
hey, you copy-pasted that command summary straight out of my brain! That's exactly all i know about vi. Yes, a life-saver when needing to fix something over ssh. – DarenW Sep 17 '08 at 19:12
show 2 more comments
vote up 4 vote down

G'day,

I've been using vi(m) for over twenty years and though I've ocassionally used emacs I keep coming back to vi(m).

For me one of the big advantages of vi is that, as pointed out above, it comes with a vanilla Unix install.

Secondly, once you start being able to use vi, you can translate those commands into ex commands. ex is the editor you have to use when you have serious problems. The ex suite of commands ar pretty much those that you enter when you are at the : (semi-colon) command prompt. That lovely PC tool edlin is based on ex

Thirdly, a lot of tools use the same command keys as vi for their own command keys.

Vim is definitely the editor of choice.Thanks Bram.

Emacs? Eighty Megs And Constantly Swapping (-:

cheers, Rob

link|flag
vote up 5 vote down

I think the absolute biggest reason is momentum and the next biggest reason (and the more interesting one) is that people that are really good with vi/emacs can usually run circles around almost anyone else in almost any other editor. The inherent design of both editors provides an awful lot of power to those that are willing to put in the time to master it.

link|flag
vote up 3 vote down

Because they're incredibly powerful. Steve Yegge puts it quite well in this article:

"Emacs is the world's best text editor. It's not just the best for editing program source; it's the best for any kind of text-editing. Mastering Emacs will make you more effective at writing and editing email, documentation drafts, blogs, HTML pages, XML files, and virtually everything else that requires any typing."

Vim is also a great editor, choosing between them is really a matter of personal preference.

They are both especially good if you have to deal with several languages (VB.NET, C#, HTML, XML, JavaScript, SQL, etc., etc.) over the course of a day. If you only ever write C#, for example, then sticking to Visual Studio makes more sense.

link|flag
vote up 38 vote down

Emacs is great because it is so fully and overwhelmingly configurable it's ridiculous. Want a keystroke to format the last block of text a certain way? You can write one. Want Emacs to behave differently according to different classes of files? You can make it do that. In fact you can make Emacs do pretty much anything you want. There are even calculators, calendars and web browsers for it!

Another advantage of Emacs is that you can do things real fast by using the keyboard for pretty much anything you can possibly think of. The default setup provides such a ridiculous depth of functionality it takes a long time to master but once you have it just feels sooooooo right. You can get stuff done without obstacles in your way and if anything pisses you off you can just go change it. That is so incredibly powerful it's ridiculous.

Keep in mind that the humble text editor is the interface between you and getting the computer to do stuff, and so is probably one of the most important applications you will ever use.

Oh and yet another advantage of using Emacs (btw there is a very nice Windows implementation so this is emphatically not just for use in Linux - I am in windows now and use Emacs a lot) is that you get the same custom configured environment for doing different things. Ok, now I'm going to program in Ruby - same environment. Ok, now I'm going to program in Python - same environment. Often when you learn a new language or system you have to learn a new IDE - Emacs gives some real consistency and lets you carry your skills through to other programming languages.

As mentioned by others, the fact that it's been around for so long means it's a. very reliable and solid, and b. got a huuuuuuge bunch of add-ons available out there. It has pretty printing for most programming languages built in right out of the box by the way, as well as some seriously smart indentational rules. Boy does this thing rock.

There are no other editors that even compare to Emacs and Vim for configurability and speed, full stop end of sentence. That's why they're still around - you can't beat the best :-)

Oh and of course there's a real competition between the two; as you can tell I'm an Emacs guy but I don't begrudge the vim users their preference - hey I mean there's a vim mode in Emacs so as far as I'm concerned it's just an Emacs module anyway ;-)

There are, however, cons to using Emacs of course. The whole thing about it being slow is pretty much a non-issue these days IMHO - computers are just so much faster now it doesn't really matter. One problem is not every language has a mode in emacs which can be a pain (C# for example only has some half-complete modes out there nothing serious which irks me considerably), there is a super-big learning curve - it takes a while to get used to it and you might hate it to begin with, but once you get used to it boy does that work pay off :-), the extension language is ELisp a slightly archaic form of Lisp - there is a learning curve with this too but it's such a great language that again it's worth it. Oh and another con is that at work you might be forced to use other editors, that can be heartbreaking :-)

Steve Yegge (I seem to be linking him a lot, he is a great blogger) has some fantastic posts on Emacs:-

  • Effective Emacs - Advice for becoming very efficient with Emacs, along with some arguments in its favour.
  • The Emacs Problem - On why Lisp is a good choice as the extension language for Emacs.
  • Steve's .emac file - Gives an idea of the configurability of Emacs.
  • Looking at Emacs 22 - Steve takes a look at Emacs version 22, loads of really interesting tips on how to achieve some cool stuff in Emacs.
  • Emergency ELisp - Advice on programming ELisp, again gives an idea of the flexibility of Emacs.
  • Javascript Mode for Emacs - Steve programmed his own Javascript mode for Emacs, again some very interesting points about Emac's extensibility.

Annnyway hopefully that gives you an idea why Emacs rocks! :-)

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

They work. They do everything they need to. They are available for pretty much every platform. There is lots of plugins/extensions for them.

While the original 'vi' or 'emacs' is probably aren't used that much, pretty much every editor is a modification or derivative of one one or the other.. For example, vim, gvim, xemacs, TextMate and so on.

link|flag
vote up 2 vote down

I've never learnt to use Vi or Emacs

I spent a large amount of money on an editor (SlickEdit) almost solely because it supported Vim emulation (not solely obviously, or I'd just use Vim!), because I personally am a lot faster using the vi key bindings. Of course, everyone has their own favourite environment; try different things and use what works for you.

The fact that I can keep my hands on the homerow 90% of the time speeds me up a lot.

link|flag
vote up 23 vote down

To complement what kronoz was saying:

link|flag
1  
(Credit to xkcd: xkcd.com/378 ) – rcreswick Sep 12 '08 at 20:57
show 1 more comment
vote up 2 vote down

I was an emacs fan, but the frequent use of ctrl gave me wrist pain. So now I use vim for ergonomic reasons. I also use the Dvorak keyboard layout for ergonomic reasons, so I had to do some significant remapping to get the movement keys in a sensible place. Here, I'll share:

" remap movement keys for dvorak layout
" use d, h, t, n to move left, up, down, and right
noremap d h
noremap D H
noremap h j
noremap H J
noremap gh gj
noremap t k
noremap T K
noremap gt gk
noremap n l
noremap N L

" reassign the keys we overwrote
noremap k d
noremap K D
noremap l t
noremap L T
noremap j n
noremap J N
link|flag
vote up 23 vote down

I personally believe they're popular because they give you all the features you need for editing, interfacing with the system without leaving the editor and most importantly...

YOU DON'T NEED TO USE A MOUSE!

You can escape to a shell, run commands, compile, all without lifting your hands from the keyboard. Once you get used to having everything literally at your fingertips, lifting your hands to use a mouse on some level gets you out of the programming zone.

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

I wonder if there's a generational difference in answers to this question.

For "old-timers", particularly people who have been using Unix for a long time, these may have been the only two decent editors when they started. So once you used one or both for a decade or so, there was certainly no reason to switch to a new one.

In a situation with shared computers, or having to log into one of many computers with a shared account, or if you weren't a sysadmin (typical of all university computer use not so long ago), you really couldn't rely on 3rd party add-ons and had to make due with things that either came standard with the OS or were so common that they were likely to be installed in virtually any computer you were likely to come across. And it didn't hurt if the editor you were expert in would work with the most basic, or even broken or incorrectly set up, terminals, slow connections, no mouse, etc. There are still many people or jobs where this logic still applies, though it may seem foreign for somebody whose main experience is with a single PC that they control.

That all said, there are still good reasons why even young-uns might use one of these venerable choices. They're both extremely powerful. Power always comes at the expense of ease of use. There are many editors that are slicker, prettier, easier to learn and use. But probably none that can compete with emacs for being feature-packed, extensible, and ridiculously programmable. (I've used vi plenty, but not as my main editor for many years, so I don't feel as qualified to make such a strong statement as I do for emacs.)

link|flag
vote up 0 vote down

@Igritz:

I wonder if there's a generational difference in answers to this question.

I'm Bernard, I'm 19, and I'm a Vim user. *hi Bernard*. :P

link|flag
vote up 5 vote down

Programming hasn't changed all that much in the past 30 years. While design principles and approaches to programming have seen many changes, the actual coding part is pretty much the same it was when C first appeared. Since Emacs and Vi(m) have been around for long, they have been adapted perfectly to the needs of programmers, and since little has changed, they still fit the description. That, and old habits die hard.

At one point, as a UNIX user, you'll end up using Vi(m) or Emacs because everything else is broken or not available. That's when they'll get you hooked. Resistance is futile.

link|flag
vote up 7 vote down

I'm semi-competent with vi keybindings, but I prefer Emacs overall. The reason these editors have such fervent adherents is because the editing model they provide is more powerful than newer systems, which is why providing "vi keybindings" or "emacs keybindings" isn't enough, even if you aren't using any extension features or customizations for emacs or vi.

I'm only going to talk about Emacs' model because I understand it best. The common model for text editing today involves a buffer of text, in which text can be inserted, deleted, selected, and cut/copied/pasted to the system clipboard.

Emacs buffers, of course, can support these operations. Along with tracking cursor position for each window they're visible in, they also keep track of "marks" made in them. The text between the "point" (cursor position) and the "mark" is called the "region", and roughly corresponds to the selection in mainstream editors.

The difference is that Emacs keeps track of the last several locations the mark was set at in the mark ring, and you can return to them with a keystroke (or two, depending on your configuration). I find this extremely useful, especially since a lot of Emacs commands that change your location in the buffer set the mark at your old location. An example is when I'm editing a Python module and need to add an import statement to the top of the file. The keystroke for going to the top of the buffer (Alt-<) sets the mark. I add the import statement. I press Ctrl-u Ctrl-Space and I'm back where i started. I can keep doing this to cycle back to previous positions as well. (Maybe I needed to select some text while adding that import statement.)

The other (and more well-known) Emacs difference is the kill ring. Most of the keystrokes for removing text from the buffer save text to the kill ring, which can then be recalled with the "yank" command (Ctrl-y). The essential feature is that subsequent yank commands retrieve older killed text. So you can kill several sections of text in a row, then retrieve them in order. You can also cycle through the kill ring with Alt-y after a yank, removing the retrieved text and inserting the next entry in the ring.

Emacs had these features in 1978. The only other major system to adopt them to any extent is NeXTStep (and now inherited by Cocoa). Other tools provide more features for specific tasks, can be extended in languages way easier to use than Emacs Lisp, and have nicer visual interfaces... but Emacs remains better at text editing. Which is why, once you know how to use it, it's so hard to quit.

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

Joel might say: "You have to learn C, and you have to code C using vi or emacs".

link|flag
vote up 2 vote down

Since they've both been around a lot of time almost all of the little nags that you will encounter with any other editor have already been simplified. Another thing in their favor is that they pretty much don't need a mouse which speeds up a lot of stuff.

They both do have a very steep learning curve but, I assure you its well worth it. For me the occasional suited me and hence I'm a vim convert. All hail Bram Moolenar!! :D

link|flag
vote up 4 vote down

I don't know about emacs (I could guess, but someone more knowledgeable would be much better at this). But if we're talking about about vi/vim, I wrote an article some time ago which should clarify why this is so popular after 30 years of existence:

"Why, oh why, do those nutheads use vi?"

I would in any case recommend any serious programmer to invest the time to master a powerful, multi-platform and predictably-long-lasting text editor. Currently vi and emacs are probably your best bets.

link|flag
vote up -2 vote down

In a word: Speed and Power.

If you want hand-holding, you know where to go ;-)

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

You can learn one powerfull text editor and be nearly sure that it's available on every platform imaginable.

Learn once, use everywhere. That's why I've started using VIM.

link|flag
vote up 1 vote down

If you don't use vim, emacs, or eclipse, the real programmers will kick sand in your face. Besides that, they are incredibly powerful and incredibly ubiquitous. They are free, they are multi-platform, and once you learn to use them they are amazingly powerful.

If you watch people using "normal" editors (I call them "inserters" because they do little besides insert and save text) you see a lot of mousing and navigation and the code slowly changes in response to typing individual characters or moving the mouse. If you watch people who have spent some time with vim, emacs, or eclipse the code comes alive and dances on the screen. Entire blocks of code are sorted, moved, replaced, refactored, renamed, commented and uncommented, indented, syntax checked, compiled, tested, navigated, and reformatted as you watch. It's actually hard to watch a real emacs or vi expert at work, because it's a strain to keep up.

The problem is that these editors are friendly to those who have studied them and become experts, but not so much to people to are used to notepad-style editing. If you like notepad, then vim and emacs and eclipse are intolerable tools. If they knew how to use a real "programmers editor", they'd have a significant speed increase and a lot less movement and navigation in their editing sessions.

I wrote a little tutorial (ugly, but useful) on how to make peasce with vim and use it like a pro: http://tottinge.blogsome.com/use-vim-like-a-pro

link|flag
vote up 0 vote down

If you like the freedom you get from not using a mouse, try the Vimperator plugin for Firefox. It makes Firefox act like vim.

link|flag
vote up 1 vote down

I started using VIM in my workplace and boy, I love it ! For some, it will look as though we are mad to waste time typing all those keystrokes (Oh God! You people have to (in vim) press :wq to just save and quit a file, so much remembering to do !!), but little do they realize that we use these editors and improve our productivity a lot. And its fun to learn, is it not ?

link|flag
vote up 0 vote down

I never be able to learn those program effectively. Every time I got in a rush and had to use something else. I think those program have a high learning curve but once you know how it works, they are very fast and powerful.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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