Skip to content

Instantly share code, notes, and snippets.

@carusog
Created September 17, 2012 11:11
Show Gist options
  • Save carusog/3736733 to your computer and use it in GitHub Desktop.
Save carusog/3736733 to your computer and use it in GitHub Desktop.
Switch between buffers using alt+left/right arrow in Vim
" Switch between buffers using alt+left/right arrow
nnoremap <silent><A-Right> :bn<CR>
inoremap <silent><A-Right> <C-O>:bn<CR>
nnoremap <silent><A-Left> :bp<CR>
inoremap <silent><A-Left> <C-O>:bp<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment