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

prev 1 2
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 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 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 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 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

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

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