vote up 87 vote down star
174

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

1 2 3 4 next
vote up 114 vote down

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)

link|flag
1  
Wow! I've needed this so many times! – kosoant Nov 18 '08 at 11:58
1  
much better than !w /tmp/whatever, and then remembering to sudo cp it... +1! – Mikeage Feb 22 at 9:23
2  
It doesn't work very cleanly - prompts to reload file and then loses where it was, at least for me. – Artem Russakovskii Sep 28 at 9:35
show 6 more comments
vote up 42 vote down
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|flag
1  
That is a most excellent tip. – dowski Nov 14 '08 at 20:42
show 1 more comment
vote up 38 vote down

*

Search for all occurrences of word under the cursor.

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

Using the built-in regions to change text quickly:

ci"    -> Delete 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|flag
show 1 more comment
vote up 31 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 27 vote down

Shortcuts to quit the Insert mode:

Ctrl-c

quit Insert mode (faster than ESC)

Ctrl-o

quit insert mode just for the time of one command

CTRL-o + I, or CTRL-o + 0

quit insert mode, go at beginning of line, and go back to insert mode

CTRL-o + A, or CTRL-o + $

quit insert mode, go at end of line, and go back to insert mode

link|flag
show 2 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 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 20 vote down

. (period)

Repeats the previous change

link|flag
vote up 18 vote down

:%s/search/replace/g

Global Search and replace

link|flag
6  
:%s/search/replace/gc The 'c' makes it prompt you at each replace instance – Mark Biek Sep 18 '08 at 18:32
vote up 18 vote down

control-A / control-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.

link|flag
vote up 17 vote down

[I

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

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 16 vote down

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|flag
show 1 more comment
vote up 14 vote down

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|flag
vote up 13 vote down

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|flag
show 1 more comment
vote up 12 vote down

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

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|flag
vote up 10 vote down

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|flag
show 2 more comments
vote up 10 vote down

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)
link|flag
2  
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 2 more comments
vote up 9 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 9 vote down

:%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|flag
vote up 8 vote down

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|flag
show 1 more comment
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 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
show 3 more comments
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 6 vote down

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|flag
show 3 more comments
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 5 vote down

Ctrl+]
equivalent to Right click + "Go to Definition" in Visual Studio
(one must first create the tags file using e.g. ctags)

link|flag
vote up 5 vote down

Delete all blank lines in a file:

:g/^$/d

link|flag
2  
Delete all blank lines in a file (even with only spaces). :v/./d – graywh Feb 10 at 22:44
1 2 3 4 next

Your Answer

Get an OpenID
or

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