vote up 88 vote down star
177

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

http://dotfiles.org/.vimrc

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

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

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

To turn auto indent on/off for pasting with add the following to the .vimrc:

nnoremap <F2> :set invpaste paste?<CR>
imap <F2> <C-O><F2>
set pastetoggle=<F2>

That will give you a visual cue as well

link|flag
vote up 0 vote down

Well, I know the author said no basic.. but I didn't know this one even if I knew less-basic one. Just use o to begin insert a new-line after the present line.. I used to do something like, $a (go to the end, start writing, and create new line).. So now, only o does this :) And by the way, O insert a new line on the present line instead of inserting it after the current.

link|flag
vote up 0 vote down
Ctrl+w Ctrl+]

splits current window to open the definition of the tag below the cursor

link|flag
vote up 0 vote down

Editing multiple files simultaneously is very useful.

:sp filename
opens another file name in the same window

ctrl + W (arrow key)
will take you the other window depending on its location

:windo wincmd H (or V)
tiles the windows horizontally (or vertically)

Also, I use . a lot It repeats the last executed command.

link|flag
vote up 0 vote down

:%s/^V^M^M

=> remove CR (DOS/Windows => Unix text format)

(^V = Ctrl-V etc.)

link|flag
vote up 0 vote down

viwp - replace the word under the cursor with what's in the unnamed register.

What's nice about this is that you don't need to be at the beginning of the word to do it.

link|flag
vote up 0 vote down

Page Up/Down From Home Row

I'm always using C-f and C-b to move around, so it's better to map to the home row keys. The following .vimrc settings will set PageUp to to C-k and PageDown to C-j.

noremap <C-k> <C-u>
noremap <C-j> <C-d
link|flag
vote up 0 vote down

CamelCase Motion. Let's you move through and delete/edit CamelCase words.

http://www.vim.org/scripts/script.php?script_id=1905

link|flag
vote up 0 vote down

I am using this snippet in my .vimrc to select a block of code and adjust indentation by pressing < or > multiple times.

" keep selection on indenting in visual mode
vmap > :><cr>gv
vmap < :<<cr>gv
link|flag
vote up 0 vote down

gg = G (go to top of file and tidy the format) very usefull :D

link|flag
vote up 0 vote down

Indent source line(s) one tab to the left or right

> - Left
< - Right

Remove trailing white-space once the file is saved
Add this to your .vimrc file:

au BufWritePre * silent g/\s\+$/s///

Edit another file without saving changes made to the file currently being edited:

:set hidden
link|flag
vote up 0 vote down

Some times I open files with vim to delete all trailing white spaces: (particularly heplful for git users aswell :)):

:%s/\s\+$//g

If you want to highlight trailing whitespaces (grey color), add the following to your .vimrc:

highlight TrailingSpaces ctermbg=grey guibg=grey
match TrailingSpaces /\s\+$/
link|flag
vote up 0 vote down

The very best!

:set vb t_vb=

no more beep!

link|flag
vote up 0 vote down

Switch spellcheck languages

The function:

let g:myLangList = [ "none", "it", "en_us" ]
function! MySpellLang()
"loop through languages
if !exists( "b:myLang" )
      let b:myLang=0
endif 
let b:myLang = b:myLang + 1
if b:myLang >= len(g:myLangList) | let b:myLang = 0 | endif

if b:myLang== 0 | setlocal spell nospell | endif
if b:myLang== 1 | setlocal spell spelllang=it | endif
if b:myLang== 2 | setlocal spell spelllang=en_us | endif

echo "language spell:" g:myLangList[b:myLang]
endfunction

And the bindings:

map <F8> :call MySpellLang()<CR>
link|flag
vote up 0 vote down

Here are some Vim commands I use a lot.

  • gUU Uppercase the current line.
  • guu Lowercase the current line.
  • :%s/^I/\r/g Change all tabs to newlines. (The ^I is the tab character).
link|flag
show 1 more comment
vote up 0 vote down

Put these two lines in your .vimrc:

map <C-J> zzjzz
map <C-K> zzkzz

Use Ctrl-J/Ctrl-K to scroll up and down while keeping your cursor in the middle of the visible range.

link|flag
1  
I don't actually like this because it "jumps" if you have the cursor close to the top or bottom of the window, but it did give me an idea and I have added. :map <C-J> <C-e>j :map <C-K> <C-y>k To provide a 'smooth' version of the same idea. – Leonard Feb 28 at 2:58
vote up 0 vote down

I keep a backup of all my files I edit in Vim using the commands below:

set backup
set backupcopy=yes
set backupskip=/tmp/*,~/.vim/backup/*
set backupdir=~/.vim/backup
au BufWritePre <buffer> let &backupext = '~' . localtime()
function! DeleteOldBackups()
    " Delete backups over 14 days old
    call system('find ~/.vim/backup -mtime +14 -exec rm "{}" \;')
endfunction
au VimLeave * call DeleteOldBackups()

The code will dump all files in to ~/.vim/backup, tag them with a Unix timestamp, and delete backups over 14 days old.

It uses the Unix find command. If anyone can tell me how to use Vim built-in commands, please do so :) Otherwise, this will only work on Unix systems!

link|flag
vote up 0 vote down

]m [m - for next/previous method start

]M [M - for next/previous method end

They actually match the first and second level of closing/opening braces.

link|flag
vote up 0 vote down

Make vimdiff a great merge tool

function Vimdiff()
nmap <F7> [czz
nmap <F8> ]czz
nmap <F2> do
nmap <F3> dp
endfunction

au FilterWritePre * if &diff | call Vimdiff() | endif

This will allow you to use F7 and F8 to go to the next/previous change and F2 and F3 will copy changes from left to right and vice-versa.

link|flag
vote up -23 vote down

Using Emacs.

link|flag
show 1 more comment
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.