Skip to content

Instantly share code, notes, and snippets.

@apod
Created May 26, 2010 23:44
Show Gist options
  • Save apod/415231 to your computer and use it in GitHub Desktop.
Save apod/415231 to your computer and use it in GitHub Desktop.
Vim: Move line up/down
" Mappings for moving lines up and down in all modes.
nmap <C-j> :m+<CR>
imap <C-j> <Esc>:m+<CR>
vmap <C-j> :m'>+<CR>gv
nmap <C-k> :m-2<CR>
imap <C-k> <Esc>:m-2<CR>
vmap <C-k> :m-2<CR>gv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment