vote up 88 vote down star
176

Post your favorite Vim tricks (or plug-ins or scripts). One trick per answer.

Try to come up with something other than the basics, btw. :D

flag
1  
Logically equivalent questions to: stackoverflow.com/questions/87299/… – Kent Fredric Sep 18 '08 at 18:08

113 Answers

prev 1 2 3 4
vote up 1 vote down

ZZ - Save & Exit
o - add blank line below current one and go to insert mode

link|flag
vote up 5 vote down

Putting options in comments in a file to be edited. That way the specific options will follow the file. Example, from inside a script:

# vim: ts=3 sw=3 et sm ai smd sc bg=dark nohlsearch
link|flag
2  
:help modeline for info. – sykora Jan 27 at 14:29
vote up 6 vote down

Shift-~
switches the case of the letter under cursor (and moves right, which allows switching a whole line or combining with the "next number/word" command)

link|flag
1  
You can use visual mode ('v') to select large blocks to change, too. – Bernard Jul 22 at 11:03
show 2 more comments
vote up 2 vote down

u <-- undo :-)

link|flag
2  
And ctrl-r redo.. for those times you undo a little too much – MattG Sep 22 at 15:03
show 1 more comment
vote up 0 vote down

At the ex prompt you have command history using up/down arrows.

link|flag
vote up 6 vote down

ctrl-x->ctrl-f (while cursor on a path string)
searches for the path and auto-completes it, with multi-optional selection.

link|flag
vote up 2 vote down

I really like the VTreeExplorer script for viewing portions of the folders and files in a tree view, and snippetsEmu to get TextMate-like bundles.

My favorite color scheme for the moment is VibrantInk.

link|flag
vote up 11 vote down
 :mak

Executes "make" and then will jump to the file that contain the compile errors (if any).

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

v

Visual mode for selecting text to copy, delete, etc.

link|flag
vote up 21 vote down
=%

Indents the block between two braces/#ifdefs

link|flag
2  
This doesn't work for me... But =G does... – Aaron H. Nov 14 '08 at 20:07
2  
== for current line (just 2 keystrokes) – Léo Dec 18 '08 at 18:07
show 2 more comments
vote up 0 vote down

I have this in my .vimrc file -- it's helpful for doing Ruby programming.

map R :wall!:!ruby %

This lets me press 'R' and have the file saved and then execute the file in the Ruby interpreter.

link|flag
show 2 more comments
vote up 4 vote down

Enter a number before any command to repeat it N times. For example:

7dd <-- will delete 7 rows

7 arrow down <-- moves down 7 times

4cw <-- removes the 4 next words and puts you in edit mode to replace them

This is in my opinion the most powerful feature of them all :-)

link|flag
vote up 0 vote down

NNyl <-- copy NN characters to the right beginning with the cursor position (ie. 7yl to copy 7 characters)

p <-- paste the characters at the position after the cursor position

P <-- paste the characters at the position before the cursor position

link|flag
vote up 0 vote down
gqip

Reformat current line. Use it all the time to reformat comments in code, etc.

link|flag
1  
gqq formats only the current line, whereas gqip actually formats a whole paragraph. gqip means: format (gq) the inner content (i) of the current paragraph (p) – ngn Oct 26 '08 at 19:51
show 3 more comments
vote up 20 vote down

. (period)

Repeats the previous change

link|flag
vote up 16 vote down

Change the lineendings in the view:

:e ++ff=dos
:e ++ff=mac
:e ++ff=unix

This can also be used as saving operation (:w alone will not save using the lineendings you see on screen):

:w ++ff=dos
:w ++ff=mac
:w ++ff=unix

And you can use it from the command-line:

for file in $(ls *cpp)
do 
  vi +':w ++ff=unix' +':q' ${file}
done
link|flag
vote up 32 vote down

ctrl-n/ctrl-p

Auto-complete - searches current file for words beginning with the characters under the cursor. Great for finishing long func/var names. Will also search other files you've opened during that session.

link|flag
show 3 more comments
vote up 22 vote down

:e!

Reopen the current file, getting rid of any unsaved changes. Great for when a global search and replace goes awry.

link|flag
7  
I always just use 'u'ndo to fix bad search/replaces :) – hark Nov 6 '08 at 3:20
3  
Reloading the file will destroy your undo history for the buffer. I try to avoid that at all cost. – Aristotle Pagaltzis Nov 23 '08 at 0:52
show 1 more comment
vote up 4 vote down

:g/search/p

Grep inside this file and print matching lines. You can also replace p with d to delete matching lines.

link|flag
1  
Along with its cousin :v which applies to non matching lines. – ojblass Jun 20 at 18:24
show 2 more comments
vote up 39 vote down

*

Search for all occurrences of word under the cursor.

link|flag
7  
Also '#' does the same, but backwards. – dalloliogm Aug 14 at 10:42
show 5 more comments
vote up 4 vote down

Read contents of an external command into the doc:

:r !ls

link|flag
vote up 6 vote down
%

Brace/parentheses match.

If you have the cursor on a parenthesis/brace/etc ((){}[]), and hit % it will jump to the corresponding one.

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

:%s/search/replace/g

Global Search and replace

link|flag
7  
:%s/search/replace/gc The 'c' makes it prompt you at each replace instance – Mark Biek Sep 18 '08 at 18:32
prev 1 2 3 4

Your Answer

Get an OpenID
or

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