vote up 46 vote down star
34

A good while ago, I read an article by the creator of viemu, clearing up a lot of the misconceptions about vi, as well as explaining why it's a good idea (and why it's been very popular for the last 30 years+). The same guy also has a great set of graphical cheat sheets that teach the basics a few bits at a time.

I'm convinced.

I've been convinced for the past 2 years in fact. But I still really haven't gotten around to force myself to learn vi as my primary editor, the learning curve is just too high. When I get down to work, acceptable but immediate productivity (using my current editor) has so far won over tremendous productivity farther down the line (using vi).

Does anybody have any good tips to help get past the learning curve? It can be straight out tips, some other tutorial or article, whatever.

Edit: Note that I'm aware of the vim/gVim, Cream and MacVim (etc.) variants of vi. I kept my question about vi to refer to the vi family as a whole. Thanks for all the great answers.

Update (April 2009)

I've been using Vim (more precisely, MacVim) in my day to day professional life since last December. I'm not going back :-)

Good luck to everyone in their Vim mastery.

flag
show 3 more comments

58 Answers

prev 1 2
vote up 0 vote down

I've tried keeping a small cheat sheet or sticky notes of common vi commands. I do the same thing for an IDE I use. I find if I put sticky notes of keyboard shortcuts or commands on my monitor(s) it helps me learn them. Once I've used the shortcut enough and think I remember it well, I'll remove the sticky note.

link|flag
vote up 0 vote down

umm, the is more of a physcology question than a programming question, but the best way I have been able to do things that I really didn't want to do is to just do it, and stop trying to thing of ways to motivate myself to do it.

Just think of it as brushing your teeth. Do you have to motivate yourself to do it? No, you just do it.

link|flag
vote up 0 vote down

Spend ten years posting to Usenet from a machine where only vi and emacs were available (and where emacs had an annoying long startup time when invoked from 'rn').

That's how I learned it.

But for a quicker approach, all I can recommend is that you just commit yourself to learning it, and spend a few hours working on some source code. Install vim if you don't have it already - it has wonderful syntax highlighting features.

It's well worth it. I know that I can go to just about any Unix machine, anywhere in the western world, perhaps even through a slow dialup connection or on a GUI-less machine, and be fully productive within minutes.

link|flag
vote up 0 vote down

Wait until you have to debug a wierd and wondeful problem in a live environment where all you can do is get to the command line. You might not end up liking VI, but it will save you a lot of time and you'll learn loads of tricks to step through massive (log) files.

link|flag
vote up 0 vote down

Print out one of the many Vi/Vim cheat sheets you can find on the internet and force yourself to stick with it for a few weeks.

Once you learn some basic commands you can be pretty efficient. From there, just keep plugging away and learn a new command every once in a while. There is no way you can learn ALL the vi commands. I believe there are more vi commands than there are atoms in the universe!! :)

link|flag
vote up 0 vote down

The best way? Set your terminal to use vi keybindings.

link|flag
vote up 0 vote down

I only learned vi when I started working for an ISP where the scripts for editing domains only opened vi on a terminal. I had no choice but to learn it, but I've never regretted it.

In short, put yourself in a situation where you have no choice but to learn it.

link|flag
vote up 0 vote down

I learned vi from the excellent O'Reilly book "Learning the vi editor".

link|flag
vote up 0 vote down

Google is your friend. Keep a window or tab handy and when you have something that you need to do several times, say indent code or search with a regex, look it up. The best hints sites will become familar, bookmark some and perhaps print out a cheat sheet.

link|flag
vote up 0 vote down

I would start with argdo, and once you fall in love with that, the rest is easy...

link|flag
vote up 0 vote down

Spend a couple hours at the vi lover's site http://nereida.deioc.ull.es/html/vilovers.html - loads of tutorials, links, etc. with enthusiastic fans of vi.

link|flag
vote up 0 vote down

I've started using VI because it's the default editor on pretty much every operating system except for Windows. Then again I don't do a lot of coding on Windows so that helps.

If you want to force yourself on a *NIX/OSX system just remove the other editors or alias them. For the rest it's up to yourself. Everytime you don't use VI to edit a file you won't get a cookie.

link|flag
vote up 0 vote down

I used it to edit files on the webserver which was linux instead of using FTP. That was 9 years ago and I have since mastered the skills.

The other thing is find something great you can do in VI such as global search and replace or something even more powerful, and use VI whenever you need to do that.

link|flag
vote up 0 vote down

One thing that I found really confusing in modern vi (vim?) is the input mode that allows for some, but not all features of command mode. I feel much more comfortable when input mode is fully dumbed down to "overwrite only, no cursor movement possible" kind of thing that old Solaris vi has. The true vi requires you to stay in command mode most of the time.

That being said, there is no need to learn vi nowadays - emacs is just as ubiquitous. :)

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

symlink every terminal editor on your system to vim and symlink every graphical editor on your system to a script that opens a new terminal window with vim running.

link|flag
vote up 0 vote down

The way I did it was to take a few minutes initially to go over the most basic stuff -- moving the cursor around, searching forwards and back, jumping to next and previous words/sentences/paragraphs, etc. Inserting, appending. Whatever you can fit in your head. Then, when you've got something to do that doesn't have to be done in the next 15 seconds, make yourself use it.

When you're pretty comfortable with the basics, slowly learn the more advanced commands -- especially those that leverage your previous learning (like replacing the next 3 words, or deleting to the next search target)

I love using VI, once I learned how. The advanced commands are far more powerful than what most of the GUI editors seem to offer, and the fact that it's ubiquitous and text-based, and so available over ssh, is all the better.

link|flag
vote up 0 vote down

If you force yourself to use it for a few days you will see that the commands soon become second-nature. If you are on a posix system, I recommend you start with the BSD-licensed nvi, a classical 1:1 vi clone, and then move on to vim. If you start with vim, it is likely you only use a subset of the editing commands because its INSERT mode is very similar to GUI editors.

link|flag
vote up 0 vote down

I have VI on Windows, the version I use is listed below, if I am in a console window I always default to VI, then regardless of what OS I am running on I know I can edit the file. Conversely if I am in UI mode, I use Notepad++ go figure.

NT VI - Version 0.23 Developed by: Tony Andrews Based on a program by: Tim Thompson

link|flag
vote up 0 vote down

Play lots of nethack. That's what I did when I was in college, and I found out later that the cursor movement was the same. Although at this point you may need to change the setting to use the vi style keymap.

link|flag
vote up 0 vote down

I made myself a handy one-page cheat sheet and used it to learn all the non-basic features. However, practice is about the only way to master anything.

vi is nice because it's on every UNIX-type computer, Mac OS X, Solaris, Linux. Find an old decstation box on eBay? It's got vi. How about Sun OS 4? vi again.

link|flag
vote up 0 vote down

While i'm a great fan of vi in general, and vim in particular, there are many powerful editors, and you shouldn't feel you need to use vi, or it in some way is some absolute perfect editor, because it's not.

If you have to force yourself to use vi, I would be concerned that you don't feel productive using it. However, if you insist on persisting, I would probably just make sure I used vi for every single editing task. Whenever I need to do something and I don't quite no the best way to do it, I'd try to find the optimal (in terms of minimal keystrokes) to do it in vi after I did it a non-optimal normal way. I'd then make a post-it note with this little tip (or maybe just a text file) so I would remember it for next time.

Over time, your productivity with vi will dramatically improve.

link|flag
vote up 0 vote down

Why don't I pitch in with my very own low-friction way to force myself? :-)

What I do is simple: I try to make my git commit messages with vim (default editor when you don't specify a message at the command-line).

Of course a commit message is so short that it barely helps. But when re-editing a message with git commit --amend it's more helpful.

link|flag
vote up 0 vote down

Do what I did. Use it for everything, and hang out in #vim on freenode.

link|flag
vote up 0 vote down

When you need to quickly search for something, having it all on one page can help.

link|flag
vote up 0 vote down

I was forced to learn Vim for my first programming job when I was 16 (the boss wouldn't let us use anything else), but I didn't make any real progress until I read Steve Oualline's Vim Book - it is highly recommended as a starting point if you want to get serious with vim.

Vim actually takes more time to master than do some programming languages (the features are that complex). Trying to 'master' Vim by printing cheat sheets would be like trying to master Haskell by reading a couple of blog posts. Be prepared to invest some serious time and you will be well rewarded.

link|flag
vote up 0 vote down

When I was a lot younger (eleven), my family moved to Germany for a couple of years. I was able to learn the language through immersion - I simply had no choice but to speak the language (although if I was in a dire situation I could find an English speaker).

My suggestion is that you do the same - unless you're in an absolutely desperate situation (e.g. "ok, I just deleted /etc/passwd and need to put back root"), make the conscious decision to do your best with vi. It actually doesn't take that long to learn the basics, if you're willing.

As others have suggested,

vim-tutor

can be a really good starting point, as can this image.

link|flag
vote up 0 vote down

The main reason for me to use vi is ssh (or Putty on Windows): When you're logged into a Unix server remotely, then vi is always available. And it works with VT100 when neither the cursor keys nor backspace/delete are mapped.

Also having a book like VI Editor Pocket Reference helps greatly.

link|flag
vote up -4 vote down

Best possible and efficient thing you can do is to not bother. If you don't have a need for it, you shouldn't use it. The time investment will not pay off. Be rational. Quick mousework with normal shortcut keys in a legible text editor along with a keyboard you're fast with is going to be just fine. Textmate/Darkroom/SciTE seem to work for most.

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.