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

1 2 next
vote up 25 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
8  
Holy crap. 15 years of vi and I never knew this... – Chris Kaminski Aug 18 at 18:25
show 5 more comments
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 14 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 8 vote down
  1. Don't press escape ever. Look at the vi wikipedia page. As mentioned above, ctrl-c is a better alternative. I strongly suggest mapping your caps lock key to escape.

  2. If you're editing a ctags compatible language, using a tags file and :ta, ctrl-], etc is a great way to navigate the code, even across multiple files. Also, ctrl-n and ctrl-p completion using the tags file is a great way to cut down on keystrokes.

  3. If you're editing a line that is wrapped because it's wider than your buffer, you can move up/down using gk and gj.

  4. Try to focus on effective use of the motion commands before you learn bad habits. Things like using 'dt' or 'd3w' instead of pressing x a bunch of times. Basically any time that you find yourself presing the same key repeatedly, there's probably a better/faster/more concise way of accomplishing the same thing.

link|flag
2  
Don't use Escape? That's heresy. Escape is your best friend, both on and off the job. – xcramps Aug 14 at 16:54
2  
Escape is separated from other keys by a few inches on my keyboard. You can't miss it. – Brian Carper Aug 18 at 0:05
show 2 more comments
vote up 8 vote down

The most recent "wow" trick that I learnt is a method of doing complicated search-and-replace. Quite often in the past, I've had a really complicated regexp to do substitutions on and it's not worked. There is a better way:

:set incsearch             " I have this in .vimrc
/my complicated regexp     " Highlighted as you enter characters
:%s//replace with this/    " You don't have to type it again

The "trick" here (for want of a better word) is the way that you can use the search to create the regexp (and 'incsearch' highlights it as you enter characters) and then use an empty pattern in the substitution: the empty pattern defaults to the last search pattern.

Example:

/blue\(\d\+\)
:%s//red\1/

Equivalent to:

:%s/blue\(\d\+\)/red\1/

See:

:help 'incsearch'
:help :substitute
link|flag
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
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 4 vote down

I often make functions for editing tasks, and store them in my .vimrc so I can find them again. For example reading .Net callstacks that have been converted into a single line:

function! FixCallStacks()
:%s;\[NLN\];\r;g
:%s;\[TAB\];\t;g
endfunction
link|flag
vote up 4 vote down
:q!

I wish i knew that before I started vi for the first time

link|flag
vote up 3 vote down

Some of my latest additions to my VIm brainstore:

  • ^wi: Jump to the tag under the cursor by splitting the window.
  • cib/ciB: Change the text inside the current set of parenthesis () or braces {}, respectively.
  • :set listchars=tab:>-,trail:_ list : Show tabs/trailing spaces visually different from other spaces. Helps a lot with Python coding.
link|flag
vote up 3 vote down

The asterisk key '*' will search for the word under the cursor.

open-square-bracket-tab will take you to the definition of a C function that's under your cursor. (doesn't always work though.)

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

vimcryption

vim -x filename.txt

You will be asked for a passphrase, edit and save. Now whenever you open the file in vi again you will have to enter the password to view.

link|flag
vote up 3 vote down

gv starts Visual mode and automatically selects what you previously had selected.

link|flag
vote up 3 vote down

Press % when the cursor is on a quote, paren, bracket, or brace to find its match.

link|flag
1  
If the cursor is not over any of those it shifts to the right until it hits one of them. – Léo Sep 2 at 15:09
show 1 more comment
vote up 3 vote down

Typing a line number followed by gg will take you to that line.

link|flag
2  
: followed by line number does the same :42 goes to line number 42 – Anti Veeranna Aug 24 at 17:56
show 1 more comment
vote up 2 vote down

qx will start recording keystrokes. You can do pretty much any editing task and Vim remembers it. Hit q again when you're finished, and press @x to replay your keystrokes. This is great for repetitive edits which are too complex to write a mapping for. You can have many recordings by using a character other than x.

link|flag
1  
Also the same character 'x' is shared between the 'q' record macro command and the named clipboards ("x...). You can leave snippets of macros sitting around your file and copy them to a named clipboard (e.g. "xyy) and then play them back (@x). – Léo Sep 2 at 15:07
vote up 2 vote down

:b [any portion of a buffer name] to switch buffers. So if you have two buffers "somefile1.txt", and "someotherfile2.txt", you can switch to the second with simply ":b 2.t<enter>". It also supports tab completion, although it's not required.

Speaking of tab completion, the setting :set wildmode=full wildmenu is also very helpful. It enables complete tab completion for command-mode, as well as a very helpful ncurses-style menu of all the possible matches when using it.

link|flag
vote up 2 vote down

Comment out a range of lines:

  1. First set a bookmark at the beginning of range: ma

  2. Go the the last line in range

  3. Command is :'a,.s/^/# / Assuming # is your comment character.
link|flag
show 2 more comments
vote up 2 vote down

I wish I'd known basic visual block mode stuff earlier. Even if you don't use VIM for anything else, it can be a big time saver to open up a file in VIM just for some block operations. I'm quite sure I wasted a ton of time doing this kind of thing manually.

Examples I've found particularly useful, when, say, refactoring lists of symbolic constant names consistently:

Enter Visual Block mode (Ctrl-Q for me on Windows instead of Ctrl-V)

Move cursor to highlight the desired block.

Then, I whatever text and press Esc to have the text inserted in front of the block on every line.

Use A instead of I to have the text inserted after the block on every line.

Also - simply toggling the case of a visual selection with ~ can be a big time saver.

And simply deleting columns, too, with d of course.

link|flag
vote up 2 vote down

Build and debug your code from within vim!

Configuration

Not much, really. You need a Makefile in the current directory.

To Compile

While you're in vim, type :make to invoke a shell, build your program. Don't worry when the output scrolls by; just press [Enter] when it's finished to return to vim.

The Magic

Back within vim, you have the following commands at your disposal:

  1. :cl lists the errors, warnings, and other messages.
  2. :cc displays the current error/warning message at the bottom of the screen and jumps to the offending line in your code.
  3. :cc n jumps to the nth message.
  4. :cn advances to the next message.
  5. :cp jumps to the previous message.

There are more; if you're interested, type :help :cc from within vim.

link|flag
vote up 2 vote down

gi switches to insertion mode placing the cursor at the same location it was previously.

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

^y will copy the character above the cursor.

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

^r^w to paste the word under cursor in the command mode. Really useful when using grep or replace commands

link|flag
vote up 1 vote down

You can use a whole set of commands to change text inside brackets / parentheses / quotation marks. It's super useful to avoid having to find the start and finish of the group. Try ci(, ci{, ci<, ci", ci' depending on what kind of object you want to change. And the ca(, ca{, ... variants delete the brackets / quotation marks as well.

Easy to remember: change inside a bracketed statement / change a bracketed statement.

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

:qall and :wqall to close all the split screens

link|flag
vote up 1 vote down

Until [character] (t). Useful for any command which accepts a range. My favorite is ct; or ct) which deletes everything up to the trailing semicolon / closing parentheses and then places you in insert mode.

Also, G and gg are useful (Goto top and bottom respectively).

link|flag
vote up 1 vote down

cw

Change word - deletes the word under the cursor and puts you in insert mode to type a new one. Of course this works with other movement keys, so you can do things like c$ to change to the end of the line.

f + character

Finds the next occurrence of the character on the current line. So you can do vft to select all the text up to the next "t" on the current line. It's another movement key, so it works with other commands too.

link|flag
vote up 1 vote down

this always cheers me up

:help 42
link|flag
1 2 next

Your Answer

Get an OpenID
or

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