Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have to add a VIM personality to an IDE. I never used VIM for more than the most basic edits and i'm now overwhelmed by the complexity of the command structure.

Is there any overall structure for the combination of counts moves and insert/delete commands? I just can't see the wood for the trees.

share|improve this question

4 Answers

up vote 15 down vote accepted

Well, there is obviously a finger position pattern behind h, j, k, l.

The fact that ^ goes to the beginning of a line and $ goes to the end is patterned on common regular expression syntax.

Ctrl-F and Ctrl-B page forward and back, and that's fairly intuitive.

i inserts (before) and a appends (after the cursor). Similarly,
I inserts at the beginning of the line, and A appends at the very end.

> and < indent and outdent, respectively. That's also kind of intuitive.

But on the whole, many of the other commands are on whatever keys were left – it's hard to find an intuitive mapping between the letters of the alphabet and an editor's commands.

Repeat counts are always entered before a command, and mostly repeat the command that many times, but in some cases do something clever but analogous.

I think the secret to not going crazy over vi is to start out with only a small handful of commands. I have a lot of colleagues who don't know to do anything other than

  • move the cursor around using the arrow keys (you don't have to use h, j, k, l);
  • insert with i, delete with Del (you don't have to use x);
  • delete a line with dd
  • get out of input mode with Esc
  • get out of vi with :x (exit) or q! (quit, and throw away my changes!)

Because I'm much smarter, the additional commands I know and use are:

  • go to the top of the file with gg, the bottom with G.
    I can go to a specified line number with (line-number)G.
  • copy a line with y (yank), paste it with p
  • change a word with cw, the rest of the line with C
  • delete a word with dw, the rest of the line with D
  • I sometimes use . to repeat the last command, or u (undo) if I messed up.

When you have occasion to use other commands, you can teach them to yourself one by one as needed.

share|improve this answer
+1 Nicely explained! – richsage Jan 12 '10 at 12:38

This is a good article for explaining the VIM philosophy.

share|improve this answer
What a great piece! – APC Jan 12 '10 at 11:59
ViEmu is awesome too :) – Pierre-Antoine LaFayette Jan 12 '10 at 18:19

I think the characteristic that better defines VIM in respect to other editors is its wide array of motion commands. The first thing to learn to fully use VIM is hitting the arrow keys as little as possible, and think at the text in terms of "blocks" like "a sentence" "a tag" "a word" "a group of brackets".

Say you have function foo($bar, $fooz) you can change the parameters by simply positioning your cursor anywhere inside the brackets and pressing ci) (mnemonic: change inner bracket). The same pattern applies to other commands: yank (y), delete (d) and so on.

I know this doesn't explain the whole "VIM philosophy" but combining normal mode commands with the vast amount of motion modifiers is what really made me see the light.

share|improve this answer

There are plenty of nice and interesting tutorials. One example is

http://blog.interlinked.org/tutorials/vim_tutorial.html

But the broad structure that most of them would give you is

  1. There are two main modes for editing - Command mode and insert mode. You can move from insert mode to command mode using the key.
  2. You can execute commands in the command mode by typing a single key or a sequence of keys.
  3. Commands can help you achieve a wide variety of things deletion of lines - dd yanking (copying of lines ) - yy pasting lines below the current line - p pasting lines above the current line - P ( and so on)

    Most commands in the command mode can be pre-fixed by a "count" to indicate the number of times the command has to be executed. For example, 3dd would delete three lines.

    One set of commands in the command mode lets you move to the insert mode. That is explained below.

  4. There are different ways of entering the insert mode from the command mode. Prominent among them are (i-insert at cursor, I-insert at beginning of line, o-insert a line below, O-insert a line above, a-append, A-append at end of line.

The quick reference at

http://www.andy-roberts.net/misc/vim/vim.pdf

Will help you understand the relevance of "count"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.