Increment or decrement using arrow keys

4 Points

If you only use h, j, k, l to navigate, arrow keys will be needed anymore. So you can map up and down to change values where cursor is.

" unmapping arrow keys
nnoremap <up> <nop>
nnoremap <down> <nop>

" increment and decrement with arrow keys
nmap <up> <C-a>
nmap <down> <C-x>

Steve Charleston

Steve Charleston 9 years ago

Why should one do this instead of simply using c-a and c-x?

Weverton do Couto Timoteo

Weverton do Couto Timoteo 2 years ago

@Steve I use C-a as Tmux prefix, as I don't use arrow keys its a faster approach