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 0 vote down

It is hard to explain, because you haven't use it yet.

Personally, i am vim/acme(in plan9port) user.

link|flag
vote up 0 vote down

Simply put, vi and emacs are just tremendously powerful tools for programmers.

They've been designed and refined over 30+ years of use and once you get past the learning curve, they enhance productivity with regular expressions transformations, sorting, shell integration, and so on.

Like many things in programming and in general, they require some time to learn at first. However, stick at it for just a couple of weeks, and you'll already get benefits. The benefits multiply month by month. Experiment, and enjoy the rewards.

link|flag
vote up 0 vote down

Good comments all. I like the prettiness of newer editors, but when I've gotta do real work, I pull up my 20-year-old emacs. Real work like:

  • Rewriting massive amounts of legacy assembler code of a customer's UI. With a few macros, it does 80% of the job in no time.

  • Code merge when 2 programmers change the same code. With a little macro using buffer compare, you can zip along from change to change and quickly reconcile the differences.

  • Need a simple checkbook balancer app? It's just a couple macros.

  • Conversion of massive .csv files to some other format.

...

link|flag
vote up 2 vote down

This is a pretty insightful question, because although both are undeniably powerful and influential, some of the "johnny-come-lately" editors are actually catching up, with a much less onerous learning curve.

Although Emacs and Vim certainly can do all the new fancy tricks, they are definitely not afraid of showing their age.

One concrete example: VimScript. This is the scripting dialect you use to extend Vim itself.

Vim allows you to script in modern programming languages, but the default scripting language is (please forgive me Vimmers) freaking awful. Sure, it's powerful, but so are Ruby and Python, and I'd much rather write editor extensions using those (which is incidentally possible with the right compiler options).

Most notably, anyone who has taken the time to actually climb the learning curve has essentially "wired" themselves into working with Vim (or Emacs) -- which is why you seldom find experienced people who are adept with 'both' of these classic editors. Hence all the "religious wars".

It's a classic case of emotional-intellectual-and-muscle-memory lock-in.

Nevertheless, there are certain aspects of Vim and Emacs that (so far) seem to be unmatched in any of the current generation of high-end text editors. If you are curious about learning one of them, try to find a physical human being who uses them and watch them work. Ask them questions and ask them to try not to "sell" you. If you are impressed by what you see, act accordingly, otherwise, look at one of the newer high-profile editors, many of which actually have a "Vim Emulation mode".

link|flag
vote up 2 vote down

The reason I like VI ( gvim )

I doesn't break your train of though. This is VERY important when developing.

Take this example:

You're writing a method that uses another class. The other class is in another file, and you have to peek a little bit and come back to your editing ( probably to look at the parameter order ).

With a "modern" editor, using tabs ( or a list at the left like TextPad ), you'll have to do the following:

  1. Raise one of your hands from the keyboard.
  2. Look for the mouse ( you don't always find it inmediately, it may take a second or half second )
  3. Point the right tab ( and make sure you don't click in the line between that an another ).
  4. You take a look at what you wanted ( the scroll was already there )
  5. Click again on the tab to go back to your initial file.
  6. Take your hand back into the keyboard, ( take 1 second )
  7. Start typing

This may not seem too big deal.

The problem here is that the steps, 2, 3, and 6 where not part of what you were doing ( typing ) and you were disconnected.

This could be very distracting.

Now with VI you'll do something like the following:

  1. [esc]
  2. ':bu #' [enter] ( change to the last file )
  3. Peek at the file you wanted
  4. ':' [upkey] [enter] ( come back to the original )
  5. o ( enter text in the next line )

The point here is, since you have to raise your hands from the keyboard, you're not disconnected. You type what you want, as if you were typing a method name. You're typing [esc]:bu #[enter] that means:"take me to the other file" and then you type :[upkey][enter] that means "Ok, now take me back"

When you're back, your hands are right where they should ( at the keyboard ) this happens in a fraction of second ( ok ok , perhaps a second ) but you never have to switch to a "mouse mode"

This is the main benefit from VI ( and emacs I suppose )

The big problem of course is: It takes a lot of time and effort to learn those basic things. And in the mean time your productivity is ZERO. And this is a big problem. That's the reason why it is hard to learn.

The way I learned it was pretty much like Rocky in Rocky mmhh what was that ? Rocky IV? When he ties his left arm?... I had to program on this AIX machine, and there was anything in there but VI.

Later I benefit from this for instance with the unix option "set -o vi" is very handy to work on the command line.

Nowadays I use it when I want to perform a quick edit, and don't want to create a new project on the IDE and wait to be loaded etc.

Additional note:

IntelliJ IDEA does a terrific job in this area.

Everything is "hotkey"(ed) So in this example I would have to just Ctrl+P

Eclipse is not that well integrated and that's the reason I don't like it so much ( it makes me have to grab the mouse )

link|flag
show 6 more comments
vote up 0 vote down

I learned software development on Notepad. I worked my way up to EditPlus2 (IIRC), which was a slightly beefier notepad-like program. It had neat features like pattern-based search-and-replace, line numbering, whitespace control (tabs/spaces/indent level). Somewhere along the line, I moved to vim and gvim, and discovered that it had more neat features than I could even use. Some of the main things I like about it...

  • Integration with my software development environment. From within the editor, I run the make command. I then get to step through compiler warnings and errors one at a time, across multiple files, as efficiently as any other GUI IDE. It also integrates with ctags well, which lets me jump to function declarations/definitions the same as other GUI IDEs.
  • Very powerful search-and-replace and similar batch commands. Oftentimes if I need to do some batch processing of a logfile or similar, I'll just load it up in vim. I can perform a series of destructive operations, with full access to an undo/redo buffer. This is much more efficient than piping a sequence of commands through several layers of grep/awk/sed, and having to re-do the operation every time.
  • Universality. Everywhere I go, I can get vim or at least vi. I believe it's actually a part of the Linux Standard Base, implying that all compliant Linux distributions will provide it.
  • Syntax highlighting. It's never perfect, but I don't think I've seen a better editor in terms of universal syntax highlighting. Visual Studio may do C or C++ better, but it'll fall on its face as soon as I start looking at Python or a Bash script.
  • Command-line integration. I can invoke commands from within the editor itself. I find myself referring referring to operations to grep lines out of files, or to browse through the filesystem, quite frequently. Relatedly, I can pass a directory to vim, and from within the editor, navigate to a file.
link|flag
vote up 15 vote down

Just in case you hadn't seen this:

http://unix.rulez.org/~calver/pictures/curves.jpg

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

FWIW, I'll add another thumbs up for vi or Vim if you wish. Either editor is very powerful and a venerable favorite among seasoned programmers for a number of reasons:

  1. Not mouse driven: this is particularly important if you consider the "not breaking your train of thought" idea presented by Oscar recently.

  2. Integrated regular expressions: most editors include regular expression search and replace support somewhere; however, it is usually hidden behind a checkbox in a dialog somewhere. Once you have really gotten comfortable with regular expressions, you'll have trouble editing without them.

  3. Scriptable: this is less important but it is a nice power-user feature. My biggest problem here is that the scripting language is always horrible... vim has VimScript and emacs has Lisp. I know that you can extend Vim with a variety of languages (depending on the compile-time options) and I assume that emacs has grown a similar capability but isn't it time to embed a more suitable programming language in the editor already?

  4. Portability/Accessibility: both editors are available virtually everywhere. IMHO, vi is a bit more accessible but your mileage may vary significantly. The real bonus here is that the basic vi commands that I learned on SunOS 4.1 in the mid 90s work on my Win2003 server at work and my MacBook Pro at home.

  5. Built by programmers, for programmers: this point is oft forgotten... these editors were built from the ground up as efficient tools to edit text. They grew to look pretty as time went on, but they were built specifically for editing source code. Most IDEs have an editor because they need one not because they want to write a really good source code editor.

The last point is probably the most important. The few editors that I have found other than vi that I really like have always been standalone editing products like Visual SlickEdit, CodeWright, and BBEdit. Each of them exists as an editor first and IDE next which is why they excel as working environments.

You can always launch a makefile (or Ant Build file for that matter) based on a hot-key binding or menu item from within a stand alone editor and get 90% of what you get with an IDE. The debugger is always the hard one... However, it's a real pain to learn a new environment with every release of an IDE and, god forbid, you switch languages and have to learn a whole new environment. If you spend the time to learn a nice flexible editor and automate the tasks that you do 90% of the time, then you can seamlessly go from language to language and environment to environment and still maintain your comfortable editing environment.

Now a more interesting question would be which one you choose and why hehehe... that's a nice trolling question. I say "learn one and learn it well, you won't regret it".

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

You do not merely "use" an editor: You become one with it.

link|flag
vote up 0 vote down

I learned and became a fan of emacs when at a previous job my boss and mentor used emacs exclusively, he was a self professed 'emacs-jock', and some co-workers decided to perform a variation of a 'Rick-Roll' on him because of his fervent emacs evangelizing. More on that later. Since I spent many hours paired with my boss, learning emacs was essential to my understanding of what he was doing, and I learned the value of memorizing one set of keyboard bindings and using them for all text manipulation tasks. My job also required me to work on remote servers, and instead of using one editor for working on my box, and another on the servers, I started using emacs for everything.

It was a great boost to my productivity, and simplified my development environment. I've recently become serious about learning lisp, and cannot foresee a development situation where a IDE would be better suited. One obvious missing feature that IDE fans point out is lack of a debugger, I've personally never found debuggers very useful, I prefer reading stack traces, using unit tests, and reading logs to analyze my code. And is a matter of personal preference.

Now back to the 'Rick-Roll'. Via an old laptop on his desk that was functioning as a server for our group wiki, integration, and source control repositories, a script was installed that would run the laptops speech synthesizer, reciting 'VI is the only editor for me!' over and over again.

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.