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

Read contents of an external command into the doc:

:r !ls

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

. (period)

Repeats the previous change

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 2 more comments
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 3 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

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

v

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

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

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

link|flag
vote up 1 vote down

u <-- undo :-)

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

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

link|flag
vote up 1 vote down

Reaching up to hit ESC all the time is much too slow. I use TAB instead. Put this in your .vimrc:

    imap <tab> <esc>

CAPSLOCK is even better if you don't already have that remapped to CTRL.

I never type literal tabs in insert mode so haven't bothered with this but if someone could replace this sentence with how to swap ESC and TAB (or CAPSLOCK), that would be super handy.

link|flag
1  
Yet another alternative is to ``:imap jj <Esc>'', this trick was mentioned somewhere in this site. When you press `j' twice in insert mode, you go back to normal mode---pretty handy. – ngn Oct 26 '08 at 20:02
show 3 more comments
vote up 1 vote down

v

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

i also find ctrl+v for visual block and shift+v for visual line quite useful

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

:ts to search for tags in C/C++

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

xp

transpose two characters.

e.g. 'teh' move cursor over the 'e' and type 'xp' (x=cut, p=paste cut buffer)

y (or yy) yank a line into the buffer

d (or dd) delete line (and put in buffer)

p put/paste the buffer

really, handy when combined with multipliers.

5yy [move cursor] p copy 5 lines

link|flag
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.