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

vote up 2 vote down

Using Esc all the time is going to cause RSI or something, I'm sure...plus its not fast enough for me.

Instead, in my .vimrc I have

map! ii <Esc>

For the very few times I need to type 'ii', I just need to type i 3 times, which types one i, exits to normal mode, then another i to type a 2nd i.

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

Read/write pdf files with Vi as if they were text files: http://vim.wikia.com/wiki/Open_PDF_files

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

Remove whitespace from line endings on save.

" Remove trailing whitespace from code files on save
function StripTrailingWhitespace()

  " store current cursor location
  silent exe "normal ma<CR>"
  " store the current search value
  let saved_search = @/


  " delete the whitespace (e means don't warn if pattern not found)
  %s/\s\+$//e

  " restore old cursor location
  silent exe "normal `a<CR>"
  " restore the search value
  let @/ = saved_search

endfunction

au BufWritePre *.c call StripTrailingWhitespace()

Put this in your vimrc, and add auto-commands for any file types you want to remove extra whitespace from. The last line above makes this remove trailing whitespace from C files.

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

I have some shortcuts, ie:

1.Sort a file with a few way

map ,s :%!sort<CR>
map ,su :%!sort -u<CR>
map ,si :%!sort -f<CR>
map ,siu :%!sort -uf<CR>
map ,sui :%!sort -uf<CR>
map ,sn :%!sort -n<CR>
map ,snu :%!sort -n -u<CR>

2.Open new file from current path with vertical split

map ,e :vsp .<CR>

3.Grep file with match

map ,g :%!grep

4.Change show file modes

map ,l :set list<CR>
map ,L :set nolist<CR>

5.Turn on/off highlight

map ,* :se hls<CR>
map ,8 :se nohls<CR>

6.Turn on/off numbering

map ,n :se nu<CR>
map ,N :se nonu<CR>

7.Run - perl

map ,p !perl<CR>
map ,P gg!Gperl<CR>

8.Copy file to specified server

map ,scp :!scp % user@example.com:~/some_folder/
link|flag
vote up 0 vote down

dG - delete to the end of the file :vsplit file2 - show current file and file2 side by side. Could also open file1 and file2 at the same time with -o (horizontal split) or -O (vertical split) options

link|flag
vote up 0 vote down

http://dotfiles.org/.vimrc

This one's mine: http://dotfiles.org/~maxcantor/.vimrc

link|flag
vote up 2 vote down
#

Search backwards in the file for the word under the cursor. Useful for finding declarations.

link|flag
vote up 1 vote down

cw

"change word" while editing config files!

link|flag
show 2 more comments
vote up 1 vote down
:syn on

For turning on syntax highlighting

:set foldmethod=syntax

To set the code folding method to be based on the language syntax, provided that the syntax is available for your language of choice. You can put this in your .vimrc file, omit the colon if you do.

zc

To close a particular fold (under the cursor)

zo

To open a particular fold (under the cursor)

zr

To unfold all folds by one level

zm

To collapse all folds by one level

zR

Unfold ALL folds

zM

collapse ALL folds

link|flag
vote up 1 vote down

Knowing that Ctrl+Q in gVim on Windows inserts a control character. For example, I often want to replace ^M characters at the end of lines. It took me a while to find the correct keystroke (Ctrl+P does not work since that's the shortcut for Paste).

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

To join all lines into a single line.

link|flag
1  
when did you ever need this? – vitule Dec 16 '08 at 10:19
1  
you missed a leading ":", otherwise it becomes a completely different command :) – Léo Dec 18 '08 at 19:04
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 1 vote down
vim -o file1 file2 ...

To open multiple files at once in separate panes.

link|flag
vote up 1 vote down

Vimrc to highlight tabs:

syntax match Tab /\t/
hi Tab guifg=yellow ctermbg=white

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

[I

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

link|flag
vote up 0 vote down

In my vimrc file:

" Moves this window to the left, center, or right side of my monitor.
nmap ,mh   :winpos 0 0<cr>
nmap ,ml   :winpos 546 0<cr>
nmap ,m;   :winpos 1092 0<cr>
" Starts a new GVim window.
nmap ,new :!start gvim<cr>
link|flag
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 2 vote down

I know it's basic, but my favorite vi feature is still the % key, which lets you find matching braces, brackets, or parentheses. I still remember learning it from a sentence in a Perl book by Larry Wall which said something about "at least if you do this you'll let some poor schmuck bounce on the % key in vi." I looked it up, saw what it did, and I was hooked.

It's been nearly ten years, and I still obsessively bounce on the % key while I'm sitting and thinking about what to do next, not to mention to help me match up code blocks and parentheses.

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

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

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 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 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 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

Your Answer

Get an OpenID
or

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