up vote 261 down vote favorite
478
share [g+] share [fb]

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

link|improve this question
1  
Logically equivalent questions to: stackoverflow.com/questions/87299/… – Kent Fredric Sep 18 '08 at 18:08
3  
Every time I come back to read the answers I learn something! – Luc M Aug 16 '11 at 14:21
5  
Not constructive? Really? – ergosys Oct 21 '11 at 20:20
1  
I just found the answer here for "what can you do if you forget to use sudo with vim?". Constructive enough SO question for me. – RyanBrady Jan 6 at 20:21
show 1 more comment
feedback

closed as not constructive by Will Jun 28 '11 at 14:06

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

142 Answers

1 2 3 4 5
up vote 85 down vote accepted
da<

Delete the HTML tag the cursor is currently inside of – the whole tag, regardless of just where the cursor is.

ci"

Change the content of a doublequote-delimited string.

Etc etc, along the same lines. See :help text-objects.

link|improve this answer
2  
That is a most excellent tip. – dowski Nov 14 '08 at 20:42
5  
In addition to <> and "", this also works with [], {}, and (). – Robert Gowland Aug 18 '09 at 13:08
2  
It's really cool. How to remember this : a = all i = inner try these ones : a[ i[ a< i< a{ i{ – nXqd Mar 24 '10 at 12:55
feedback

In my ~/.vimrc:

cmap w!! %!sudo tee > /dev/null %

Will allow you to use :w!! to write to a file using sudo if you forgot to sudo vim file (it will prompt for sudo password when writing)

Alternative that allows you to skip reloading the file:

cmap w!! w !sudo dd of=%
link|improve this answer
2  
You, Sir, are my hero! – Joachim Sauer Dec 16 '08 at 10:24
1  
much better than !w /tmp/whatever, and then remembering to sudo cp it... +1! – Mikeage Feb 22 '09 at 9:23
1  
Why not just ":w !sudo tee %"? – hhh Aug 29 '09 at 11:20
7  
It doesn't work very cleanly - prompts to reload file and then loses where it was, at least for me. – Artem Russakovskii Sep 28 '09 at 9:35
2  
Nevermind my question, if someone is interested just look here: stackoverflow.com/questions/2600783/… – Doppelganger Apr 8 '10 at 15:22
show 9 more comments
feedback

Using the built-in regions to change text quickly:

ci"    -> Cut everything inside "" string and start insert mode
da[    -> Delete the [] region around your cursor
vi'    -> Visual select everything inside '' string
ya(    -> Yank all text from ( to )

The command and type of region can all be used interchangeably and don't require .vimrc editing. See :help text-objects.

link|improve this answer
8  
didn't know about the 'a' and 'i' motions. Very useful. – deft_code Jan 8 '10 at 16:59
show 4 more comments
feedback

*

Search for all occurrences of word under the cursor.

link|improve this answer
1  
:nohlsearch will temporarily turn off search highlighting. Happy Vimming! vimdoc.sourceforge.net/cgi-bin/vimfaq2html3.pl#11.1 – Adam Neal Feb 13 '09 at 21:41
30  
Also '#' does the same, but backwards. – dalloliogm Aug 14 '09 at 10:42
3  
Instead of manually typing nohlsearch, try mapping it. Ctrl-L already redraws the screen, so I make it also and remove search highlighting: nnoremap <silent> <C-l> :nohl<CR><C-l> – pydave Feb 23 '11 at 19:04
show 8 more comments
feedback

Shortcuts to quit the Insert mode:

Ctrl+C                        Leave insert mode (faster than Esc)

Ctrl+O                        Leave insert mode just for the duration of one command

Ctrl+O Shift+I   Leave insert mode, go to beginning of line, and return to insert mode

Ctrl+O Shift+A   Leave insert mode, jump to end of line, and return to insert mode

link|improve this answer
9  
Neat, didn't know that one. Btw, try Ctr-r + = (5+4)*3 [Enter] while in insert mode. – Claes Mogren Dec 11 '08 at 9:48
8  
I have my (otherwise useless) Caps Lock key mapped to Esc, so I have an Esc key on the home row. Invaluable with vim. – R. Martinho Fernandes Jan 9 '10 at 21:16
7  
I use ctrl-[ to esc. – mike Feb 7 '10 at 15:51
2  
How did you achieve this "button" effects in your answer? – Sarwar Erfan Feb 8 '11 at 10:23
2  
Sarwar, it's <kbd> tag, you can see it when you try to edit the main post – number5 Feb 24 '11 at 0:32
show 5 more comments
feedback

Correctly indent the entire file currently open.

gg=G

Note that you may need to do :set filetype=<whatever> and then :filetype indent on before this will work. Unless they're already specified in your .vimrc file.

link|improve this answer
12  
gg=G`` will format the file and take you back to where you were. – NotDan Dec 3 '10 at 19:20
show 3 more comments
feedback

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|improve this answer
show 4 more comments
feedback

[I

list all lines found in current and included files that contain the word under the cursor.

link|improve this answer
1  
@Amit: :help [ and scroll down a bit. – Fred Nurk Jan 11 '11 at 18:31
show 1 more comment
feedback
:%s/search/replace/g 

Global Search and replace

link|improve this answer
32  
:%s/search/replace/gc The 'c' makes it prompt you at each replace instance – Mark Biek Sep 18 '08 at 18:32
show 3 more comments
feedback

. (period)

Repeats the previous change

link|improve this answer
show 2 more comments
feedback
:e!

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

link|improve this answer
32  
I always just use 'u'ndo to fix bad search/replaces :) – hark Nov 6 '08 at 3:20
9  
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
4  
For me :e is very useful when watching an active logfile. – Marcin Dec 18 '08 at 19:19
feedback

Ctrl-A / Ctrl-X

Skip to the next number on the line and increment/decrement it. Has a C-like idea of what's decimal, hex or octal. The "skip to the next number" part is what makes this feature really useful, because it potentially saves several keystrokes getting the cursor to the right place.

link|improve this answer
3  
If you use vim with GNU Screen, probably you'll need Ctrl-A Ctrl-A as Ctrl-A is meta character for GNU Screen. – Jeffrey Jose Apr 1 '10 at 2:27
show 2 more comments
feedback

macros

Record:

q<some key>
<edit one line and move to the next>
q

Play:

@<some key>
@@ (play last macro)
100@<some key> (apply macro 100 times)

EDIT: A slightly complex example might be helpful to get an insight into the power of macros.

Given an array (in C) of 32-bit integers in little endian, we want to convert it into big endian.

uint32_t littleEndian[] = {
  0x0f1e2d3c, 0x4b5a6978, 0x01234567, 0x89abcdef, 0x01234567, 0x89abcdef,
  0x0f1e2d3c, 0x4b5a6978, 0x01234567, 0x89abcdef, 0x01234567, 0x89abcdef,
  ...
  0x0f1e2d3c, 0x4b5a6978, 0x01234567, 0x89abcdef, 0x01234567, 0x89abcdef,
  0x0f1e2d3c, 0x4b5a6978, 0x01234567, 0x89abcdef, 0x01234567, 0x89abcdef
};

Now goto the first data line of the array (the line after uint32_t ...) and type (with the RETURN after ..6@b)

0fxqal2xbpfxq2u0qbfx4@axbpq3u0qc6@b
q9@c

if the array has 9+1 lines with six 4-byte integers in each line.

(Explanation, if you are not fluent in vim:

  • "0fx" takes you to the first x in the line
  • "qal2xbpfxq" defines the macro a to
    • "l" go one to the left
    • "2x" delete two letters
    • "b" go to the beginning of the word
    • "p" insert the two letters just deleted
    • "fx" go to the next x in the line
  • "2u0" undoes the changes we just did and goes to the first column
  • "qbfx4@axbpq" defines the macro b to
    • "fx" go to the next x in the line
    • "4@a" executes four times the macro a (replace 4 by 8 if you have uint64_t)
    • "xbp" deletes the letter under the cursor (happens to be the x), goes to the beginning of the word and puts the just deleted x as 2nd letter meaning that the macro b converts an uint32_t from little to big endian (rsp. vice versa)
  • "3u0" undoes the changes we just did and goes to the first column
  • "qc6@bENTERq" (where ENTER stands for pressing RETURN) defines the macro c to
    • "6@b" executes six times the macro b (replace 6 by the number of integers per line)
    • "ENTER" goes to the next line (see comment) meaning that the macro c converts all integers in a line from little to big endian (rsp. vice versa)
  • "9@c" executes the macro c nine times converting a total of ten lines as one line was already converted (of course replace 9 by whatever you need) )

Maybe this example is too complex for "real life", but it should give you an idea about how powerful macros can be.

link|improve this answer
12  
Actually 100@<key> plays the macro 100 times, not for 100 lines. It's a small but important difference. If your macro doesn't advance to the next line then you just keep applying the cahnge to the same line over and over, or if your macro is based on found words, multiple lines, etc it will vary. – camflan Sep 28 '08 at 16:12
show 1 more comment
feedback
=%

Indents the block between two braces/#ifdefs

link|improve this answer
3  
This doesn't work for me... But =G does... – Aaron H. Nov 14 '08 at 20:07
4  
== for current line (just 2 keystrokes) – Leonardo Constantino Dec 18 '08 at 18:07
2  
It does not seem to work well for Python. – Sridhar Ratnakumar Oct 21 '09 at 12:36
1  
@Aaron, you have to have the cursor positioned on one of the curly braces before hitting =%. – Robert Gowland Jun 17 '10 at 13:50
show 3 more comments
feedback

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|improve this answer
show 2 more comments
feedback

My favorite is:

CTRL-A: Increment a number under the cursor. 99 becomes 100.
CTRL-X: Decrement a number under the cursor. 100 becomes 99.

It's really cool.

link|improve this answer
1  
Duplicate of stackoverflow.com/questions/95072/… – Fred Nurk Jan 11 '11 at 18:37
2  
It was edited on Oct 5 '10 at 9:49. It was posted on Sep '08. – Gerardo Marset Jun 21 '11 at 23:46
feedback
:%s//replace/g

will replace the last term that was searched for, instead of you having to type it again.

This works well with using * to search for the word under the cursor.

link|improve this answer
feedback

Never underestimate the power of percent.

Basically, it jumps to matching brace (booooring), but when the cursor is not on a brace it goes to the right until it finds one, which is my excuse to call this post a trick.

[x] means the cursor is on x.

[s]omeObject.methodYouWouldLikeToDelete(arg1, arg2) + stuffToKeep

just type d% to get

[ ]+ stuffToKeep

Obviously, it works with (), [] and {}.

Another examples of percent-not-on-paren:

[m]y_python_list[indexToChange, oneToLeave]

%%lce

fun[c]tion(wrong, wrong, wrong)

%cib

link|improve this answer
feedback

running shell commands on the current file without having to exit, run the command and open it again:

:%!<command>

for example,

:%!grep --invert-match foo

gets rid of all lines containing "foo"

:%!xmllint --format -

nicely tab-ifies the current file (if it's valid xml)

and so on...

link|improve this answer
8  
An easier way to delete lines matching a pattern is with :global. :g/foo/d – graywh Feb 10 '09 at 22:39
1  
You can also specify certain parts of the file. Replacing '%' with '.' (period) will only run the command on the current line. Replacing '%' with '4,8' will run the command on lines 4-8. Finally, replacing '%' with '.,$' will run the command from the current line to the end of the file. – three_cups_of_java Jun 27 '11 at 2:30
feedback

Useful in your vimrc,

set directory=/bla/bla/temp/

Makes vim keep its temporary files in /bla/bla/temp instead of in the directory with the file being edited.

link|improve this answer
2  
I couldn't get the fugitive plugin to work on Windows due to "unable to rename swp file" errors and similar. It was due to crappy policy settings from our IT dept. THIS SETTING LET ME WORK AROUND IT! THANKS! – Charlie Flowers Jan 2 '11 at 5:20
show 2 more comments
feedback
 :mak

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

link|improve this answer
14  
:make is the command. Unambiguous shorter terms are allowed, so :mak works. – Paul Biggar Aug 2 '09 at 9:54
show 1 more comment
feedback

Copy to system clipboard:

"+y

Paste from system clipboard:

"+p

Move between wrapped lines (it's a good idea to map those):

gj
gk

And for my favourite:

:Sex

Split and explore!

link|improve this answer
show 1 more comment
feedback

I have the following in my vimrc:

nmap <F3> <ESC>:call LoadSession()<CR>
let s:sessionloaded = 0
function LoadSession()
  source Session.vim
  let s:sessionloaded = 1
endfunction
function SaveSession()
  if s:sessionloaded == 1
    mksession!
  end
endfunction
autocmd VimLeave * call SaveSession()

When I have all my tabs open for a project, I type :mksession. Then, whenever I return to that dir, I just open vim and hit F3 to load my "workspace".

link|improve this answer
2  
I used something similar for a while but found it doesn't like complex window splits. :( – sirlancelot Jan 25 '09 at 10:06
show 1 more comment
feedback

As stated in another Thread, with the same Question:

Ctrl + v -- row visual mode Shift + i -- insert before type text Escape Escape

(Inserts the typed in text into multiple lines at the same time.)

link|improve this answer
2  
Enter blockwise visual mode through <C-v>, select the rectangle of lines-by-columns you want do delete, and hit `d'. – ngn Oct 26 '08 at 19:35
show 1 more comment
feedback

When doing a search, there are ways to position the cursor search-relative after the search. This is handy for making repeated changes:

/foo/e Finds foo and positions the cursor at the last 'o' of foo

/myfunc.\*(.\*)/e-1 Finds myfunc and places the cursor just before the closing brace, handy for adding a new argument.

/foobarblah/b+3 finds foobarbarblah and puts the cursor at the beginning of bar

This is handy if you decide to change the name of any identifier (variable or function name) - you can set it up so the cursor is on the part that needs to be changed. After you've done the first one, you can do all the rest in the file with a sequence of 'n' (to repeat the search), and '.' (to repeat the change), while taking only a second to make sure the change is applicable in this spot.

link|improve this answer
feedback

Ctrl+]

Equivalent to "Go to Definition" in an IDE (one must first create the tags file using e.g. ctags).

Ctrl+T

Pops to the previous element in the tag stack, i.e., the location and file you were in right before you hit Ctrl+].

:help tagsrch for more details.

link|improve this answer
feedback

In insert mode:

Ctrl+Y

Inserts the character that is above the cursor at the current cursor position and moves the cursor to the right. Great for duplicating parts of code lines.

link|improve this answer
1  
Use Ctrl-E to insert the character below. – blueyed Apr 13 '11 at 16:33
feedback

Ctrl-X then Ctrl-F (while cursor on a path string)
searches for the path and auto-completes it, with multi-optional selection.

link|improve this answer
feedback
:g/search/p

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

link|improve this answer
4  
Along with its cousin :v which applies to non matching lines. – ojblass Jun 20 '09 at 18:24
show 4 more comments
feedback

COMMENTING A BLOCK OF LINES IN VISUAL MODE

add the lines below to your .vimrc file, go into visual mode w/ "v", and hit "c" to comment the lines or "u" to uncomment them, this is insanely useful. the lines below make this possible for C, C++, Perl, Python, and shell scripts, but it's pretty easy to extend to other languages

" Perl, Python and shell scripts
autocmd BufNewFile,BufRead *.py,*.pl,*.sh vmap u :-1/^#/s///<CR>
autocmd BufNewFile,BufRead *.py,*.pl,*.sh vmap c :-1/^/s//#/<CR>
" C, C++
autocmd BufNewFile,BufRead *.h,*.c,*.cpp vmap u :-1/^\/\//s///<CR>
autocmd BufNewFile,BufRead *.h,*.c,*.cpp vmap s :-1/^/s//\/\//<CR>
link|improve this answer
5  
A dedicated commenting plugin such as EnhancedCommentify or NERD_Commenter would be better suited for this task, over various filetypes - but this does well for a quick hack. – sykora Jan 27 '09 at 14:32
1  
Unless I'm missing something, blocking over lines and hitting I doesn't work (vim 7.1, 7.2, Darwin, Linux) – aaronstacy Mar 15 '09 at 21:53
show 3 more comments
feedback
1 2 3 4 5

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