Skip to content

Commit

Permalink
Disable arrow keys
Browse files Browse the repository at this point in the history
  • Loading branch information
yesmeck committed Apr 16, 2012
1 parent 31e064d commit 6213556
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions plugin/keymap.vim
Expand Up @@ -98,3 +98,13 @@ map <C-S-s> :wall<CR>
" Search tags in current buffer
map <Leader>t :CtrlPBufTag<CR>
" Disable arrow keys
nnoremap <left> <nop>
nnoremap <right> <nop>
nnoremap <up> <nop>
nnoremap <down> <nop>
inoremap <left> <nop>
inoremap <right> <nop>
inoremap <up> <nop>
inoremap <down> <nop>

0 comments on commit 6213556

Please sign in to comment.