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?
|
14
|
|||||
|
|
|
Well, the fact that they are quite old means that:
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. |
|||
|
|
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. |
|||
|
|
|
|
You do not merely "use" an editor: You become one with it. |
|||
|
|
|
|
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:
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". |
|||
|
|
Just in case you hadn't seen this:
|
|||
|
|
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...
|
|||
|
|
|
|
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:
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:
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 ) |
|||
|
|
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". |
|||
|
|
|
|
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:
... |
|||
|
|
|
|
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. |
|||
|
|
|
|
It is hard to explain, because you haven't use it yet. Personally, i am vim/acme(in plan9port) user. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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 ? |
|||
|
|
|
|
If you like the freedom you get from not using a mouse, try the Vimperator plugin for Firefox. It makes Firefox act like vim. |
|||
|
|
|
|
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 |
|||
|
|
|
|
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. |
|||
|
|
|
|
In a word: Speed and Power. If you want hand-holding, you know where to go ;-) |
|||
|
|
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. |
|||
|
|
|
|
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 |
|||
|
|
|
|
Joel might say: "You have to learn C, and you have to code C using vi or emacs". |
|||
|
|
|
|
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. |
|||
|
|
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. |
|||
|
|
|
|
@Igritz:
I'm Bernard, I'm 19, and I'm a Vim user. *hi Bernard*. :P |
|||
|
|
|
|
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.) |
|||
|
|
|
|
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. |
|||
|
|
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:
|
|||
|
|
|
|
To complement what kronoz was saying:
|
||||
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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:-
Annnyway hopefully that gives you an idea why Emacs rocks! :-) |
|||


