vote up 32 vote down star
47

I'm learning new commands in VIM all the time, but I'm sure everyone learns something new once in a while. I just recently learned about this:

zz, zt, zb - position cursor at middle, top, or bottom of screen

What are some other useful or elegant commands you wish you'd learned ages ago?

flag
4  
community wiki, please – Neil Butterworth Aug 14 at 8:40
1  
@Neil: I thought you had the superpowers to make it CW. Courtesy or underpowered? – Stefano Borini Aug 16 at 4:59
3  
technically, zz, zt, zb are positioning the screen with the cursor at the middle / top / bottom. to position the cursor at the middle / top / bottom use M, H, or L. Both sets of commands are useful! – Peter Aug 18 at 0:37

38 Answers

prev 1 2
vote up 26 vote down

I really wish I'd known that you can use Ctrl-C instead of ESC to switch out of insert mode. That's been a real productivity boost for me.

link|flag
4  
I remapped my Caps-Lock to an Esc. That's both easier than the normal Esc and Ctrl-C – kmm Aug 16 at 14:16
9  
Holy crap. 15 years of vi and I never knew this... – Chris Kaminski Aug 18 at 18:25
show 5 more comments
vote up 15 vote down

I created this reference of my most used command for a friend of mine. Hope people will find something useful:

+-----------------------------------------+---------------------------------------+
| select                                  | v                                     |
+-----------------------------------------+---------------------------------------+
| select row(s)                           | SHIFT + v                             |
+-----------------------------------------+---------------------------------------+
| select blocks (columns)                 | CTRL  + q                             |
+-----------------------------------------+---------------------------------------+
| indent selected text                    | >                                     |
+-----------------------------------------+---------------------------------------+
| unindent selected text                  | <                                     |
+-----------------------------------------+---------------------------------------+
| list buffers                            | :ls                                   |
+-----------------------------------------+---------------------------------------+
| open buffer                             | :bN (N = buffer number)               |
+-----------------------------------------+---------------------------------------+
| print                                   | :hardcopy                             |
+-----------------------------------------+---------------------------------------+
| open a file                             | :e /path/to/file.txt                  |
|                                         | :e C:\Path\To\File.txt                |
+-----------------------------------------+---------------------------------------+
| sort selected rows                      | :sort                                 |
+-----------------------------------------+---------------------------------------+
| search for word under cursor            | *                                     |
+-----------------------------------------+---------------------------------------+
| open file under cursor                  | gf                                    |
|   (absolute path or relative)           |                                       |
+-----------------------------------------+---------------------------------------+
| format selected code                    | =                                     |
+-----------------------------------------+---------------------------------------+
| select contents of entire file          | ggVG                                  |
+-----------------------------------------+---------------------------------------+
| convert selected text to uppercase      | U                                     |
+-----------------------------------------+---------------------------------------+
| convert selected text to lowercase      | u                                     |
+-----------------------------------------+---------------------------------------+
| convert tabs to spaces                  | :retab                                |
+-----------------------------------------+---------------------------------------+
| start recording a macro                 | qX (X = key to assign macro to)       |
+-----------------------------------------+---------------------------------------+
| stop recording a macro                  | q                                     |  
+-----------------------------------------+---------------------------------------+
| playback macro                          | @X (X = key macro was assigned to)    |
+-----------------------------------------+---------------------------------------+
| replay previously played macro *        | @@                                    |
+-----------------------------------------+---------------------------------------+
| auto-complete a word you are typing **  | CTRL + n                              |
+-----------------------------------------+---------------------------------------+
| bookmark current place in file          | mX (X = key to assign bookmark to)    |
+-----------------------------------------+---------------------------------------+
| jump to bookmark                        | `X (X = key bookmark was assigned to  |
|                                         |     ` = back tick/tilde key)          |
+-----------------------------------------+---------------------------------------+
| show all bookmarks                      | :marks                                |
+-----------------------------------------+---------------------------------------+
| delete a bookmark                       | delm X (X = key bookmark to delete)   |
+-----------------------------------------+---------------------------------------+
| delete all bookmarks                    | delm!                                 |
+-----------------------------------------+---------------------------------------+
| split screen horizontally               | :split                                |
+-----------------------------------------+---------------------------------------+
| split screen vertically                 | :vsplit                               |
+-----------------------------------------+---------------------------------------+
| navigating split screens                | CTRL + w + j = move down a screen     |
|                                         | CRTL + w + k = move up a screen       |
|                                         | CRTL + w + h = move left a screen     |
|                                         | CRTL + w + l = move right a screen    |
+-----------------------------------------+---------------------------------------+
| close all other split screens           | :only                                 |
+-----------------------------------------+---------------------------------------+

*  - As with other commands in vi, you can playback a macro any number of times.
     The following command would playback the macro assigned to the key `w' 100
     times: 100@w

** - Vim uses words that exist in your current buffer and any other buffer you may
     have open for auto-complete suggestions.
link|flag
show 3 more comments
vote up 1 vote down
ma
move cursor down
:'a,.!program

This will take all text between where you set the a mark (ma) to the current line (.), run it through program, and replace the contents of the marked region with the results. You can even use it to see the contents of a directory (for example) by making a blank line, then with cursor sitting on that line,

:.!ls

Oh, and you can set marks like this for a-z (i.e. ma), and

'a

will jump you to the position you marked as "a."

/ searches forward, and ? repeats search backwards without having to resupply search pattern.

Groovy stuff. vi is highly underrated. Once you get the hang of it, you won't ever want to use the IDE supplied editors.

link|flag
vote up 1 vote down

^y will copy the character above the cursor.

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

:shell to launch a shell console from Vim. Useful when for example you want to test a script without quitting Vim. Simply hit ^d when you done with the shell console, and then you come back to Vim and your edited file.

link|flag
vote up 14 vote down

^X-F completes using filenames from the current directory. No more copying/pasting from the terminal or painful double checking.

^X-P completes using words in the current file

:set scrollbind forces one buffer to scroll alongside another. e.g. split your window into two vertical panes. Load one file in each (perhaps different versions of the same file). Do :set scrollbind in each. Now when you scroll in one, both panes will scroll together. Ideal for comparing files.

link|flag
1  
*jinxed_coder*: :set noscb to turn it off and use :set scb to turn it on (not :scrollbind). :h scrollbind – jmdeldin Aug 14 at 16:20
show 3 more comments
vote up 6 vote down

^P and ^N

Complete previous (^P) or next (^N) text.

^O and ^I

Go to previous (^O - "O" for old) location or to the next (^I - "I" just near to "O"). When you perform searches, edit files etc., you can navigate through these "jumps" forward and back.

marks

Press ma (m- mark, a - name of mark). Later to return to the position type `a

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

ZZ (works like :wq)

About cursor position. I found that cursor which always stays in the middle of screen is cool

set scrolloff=9999

link|flag
show 1 more comment
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.