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
|
|||||
|
|
|
It is hard to explain, because you haven't use it yet. Personally, i am vim/acme(in plan9port) user. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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:
... |
|||
|
|
|
|
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". |
|||
|
|
|
|
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 ) |
|||
|
|
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...
|
|||
|
|
|
|
Just in case you hadn't seen this:
|
|||
|
|
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". |
|||
|
|
You do not merely "use" an editor: You become one with it. |
|||
|
|
|
|
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. |
|||
|
|

