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

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