views:

79

answers:

1

What do they do, and how do you use them? Any tips / tricks would also be appreciated.

+2  A: 

In insert mode, Ctrl-O escapes user to do one normal-mode command, and then return to the insert mode. The same effect can be achieved by <ESC>ing to normal mode, doing the single command and then entering back to insert mode. Ctrl-I is simply a <Tab> in insert mode.

In normal mode, Ctrl-O and Ctrl-I jump user through their "jump list", a list of places where your cursor has been to. The jumplist can be used with the quickfix feature, for example to quickly enter to a line of code containing errors.

progo
See also the help on the jump list (`:h jumplist`) in vim.
jrdioko