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 4 more comments

59 Answers

prev 1 2
vote up 5 vote down

I wrote a guide to efficient editing with Vim a while back. You may find it helpful.

I'd step back for a minute and ask yourself "why do I want to learn this editor? What makes me think it'll be faster or better than my current text editor?" Then learn those features that will make Vi(m) indispensible to you.

For instance, Vim's CTags integration is completely indispensible for me. I work with a very, very large codebase, and the ability to jump to a function or class definition in one keystroke (regardless of which file it's in) is an absolutely killer feature, one I have trouble working without.

Use your .vimrc file to make macros that automate common tasks.

Your autopilot editor-chooser will pick the editor that will get the job done quickest and with the least amount of mental effort. A little prep-work will ensure that editor is Vim. :-)

link|flag
vote up 1 vote down

force yourself not. the path to mastery love is.

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

You might want to start out with Cream. Cream describes itself as "a modern configuration" of vim. Basically, it is a special version of vim which looks and feels like any other text editor for all practical purposes. But enable the "expert mode" and you have all the power and behavior of vim.

So you can start using Cream as a regular text editor and then experiment with the "expert mode" until you are comfortable enough to fully switch to vim.

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

Install gVim on all platforms you use.

Then run through the the vimtutor (:help vimtutor or vimtutor at the command line).

Watch the following lecture and follow its advice: 7 Habits For Effective Text Editing 2.0

I say you definitely want to start using it for all your editing. If you fear a loss of productivity then take a weekend to practice it solid (I once did this to switch to dvorak from qwerty and had my productivity high enough by Monday and managed to stick with it after).

It's worth the effort and you won't look back!

link|flag
vote up 5 vote down

Two things that will greatly improve your vi skills:

  1. Practice, practice, practice
  2. Nethack
link|flag
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 1 vote down

Personally, what I had to do was make sure that I could use the Vim key-bindings (or at least, close enough) in several applications. Having to completely switch how I edited text whenever I changed editors made it too hard to get the Vim editing style committed to muscle memory.

In my case, Viemu + vimperator did the trick.

link|flag
show 1 more comment
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 3 vote down

My suggestion: start small. Just start by memorizing a small set of most useful commands. When I started vi, these were my top 10:

  • (Esc) to return to command mode (most important!)
  • a to add text after cursor
  • A to add text at end of current line
  • x to delete 1 character
  • dd to delete 1 line
  • R to replace text (overwrite)
  • u to undo
  • :q! (Enter) to quit without saving
  • :w (Enter) to save
  • ZZ to save and quit

A lot of basic editing can be done using only these commands. Once you get comfortable, the rest don't look too difficult.

BTW, I'd like to add that I used to rely on vi for my primary text editor, but now only if I have to. In my case, productivity is better when I use tools like Emacs or Visual Studio (please note: "in my case"). Try more than one tool and choose the one that helps your productivity the most. Good luck!

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

Use the post-it note method :-)

When using gvim, allow your self to use the menus. Read a book/tutorial about vim so you know the basics. (insert and command mode)

Select some really cool functions you think you need and write those on post-it notes and then stick those on the lower part off your monitor.

A good start is probably i, a, o, gg, G, :10 ,/something

and some cut and paste like yy, dd, p

and just top off with v, V (the visual mode) + cut and paste

Then when you know them, replace on post-it with a new one that has a even cooler function, and repeat until you are happy.

/Johan

link|flag
vote up 3 vote down

It sounds silly, but playing roguelike games (such as Nethack or Angband) is a fun way to get comfortable with using the h/j/k/l keys for cursor navigation.

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

Step 0: learn to touch type. Seriously - if your fingers don't know where the keys are then vim is going to be a pain. And even if you reject vim, touch typing will improve your programming (ask Steve Yegge ) by making the mind to monitor link friction free. There is a lot of software that can help you improve your typing.

Step 1: use vimtutor to get you started. It is in gvim (under the help menu I think) or you can just type 'vimtutor' at the command line. It will take 30-45 minutes of your time and then your fingers will know the basics of vi/vim and you should be able to edit files without wanting to hurl your keyboard out of the window.

Step 2: use vim everywhere. See this question for tips and links for using vim and vi key bindings at the command line, from your web browser, for composing emails, in your IDE ... You need to use vim to embed the key bindings in your muscle memory.

Step 3: learn more about vim. You will only have scratched the surface with vimtutor. You can watch this video or read this article (both about the "Seven habits of effective text editing". You can read about tips and tricks on StackOverflow. You can browse vimtips. Learn a litle often would be my advice - there is so much out there that sticking to bite-size chunks will be the best way to make the knowledge stick.

Step 4: Profit :)

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

How to force yourself ? My advice is to be in a work environment where you have to maintain 10 unix boxes by telnetting/puttying into them from windows. You will quickly realise that the only way to efficiently edit text on multiple variants of *nix is to use a standard editor that comes with almost every distro I know. Also, when X11 does not start up on a fresh install, vi is your only friend :)

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.