mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-23 20:14:11 -05:00
Allow moving the cursor with ctrl+hjkl
This commit is contained in:
parent
3afbf830b8
commit
b95d4d487b
1 changed files with 8 additions and 0 deletions
|
@ -123,9 +123,13 @@
|
||||||
"
|
"
|
||||||
" <Ctrl-Up> | (N) -> move four lines up
|
" <Ctrl-Up> | (N) -> move four lines up
|
||||||
" <Ctrl-Down> | (N) -> move four lines down
|
" <Ctrl-Down> | (N) -> move four lines down
|
||||||
|
" <Ctrl-k> | (N) -> move four lines up
|
||||||
|
" <Ctrl-j> | (N) -> move four lines down
|
||||||
"
|
"
|
||||||
" <Ctrl-Right> | (N) -> move one word right
|
" <Ctrl-Right> | (N) -> move one word right
|
||||||
" <Ctrl-Left> | (N) -> move one word left
|
" <Ctrl-Left> | (N) -> move one word left
|
||||||
|
" <Ctrl-l> | (N) -> move one word right
|
||||||
|
" <Ctrl-h> | (N) -> move one word left
|
||||||
"
|
"
|
||||||
" <Alt-k> | (A) -> move the screen up
|
" <Alt-k> | (A) -> move the screen up
|
||||||
" <Alt-j> | (A) -> move the screen down
|
" <Alt-j> | (A) -> move the screen down
|
||||||
|
@ -488,10 +492,14 @@
|
||||||
"map ctrl+up/down to moving the cursor up and down by 4 lines
|
"map ctrl+up/down to moving the cursor up and down by 4 lines
|
||||||
nnoremap <C-Up> 4k
|
nnoremap <C-Up> 4k
|
||||||
nnoremap <C-Down> 4j
|
nnoremap <C-Down> 4j
|
||||||
|
nnoremap <C-k> 4k
|
||||||
|
nnoremap <C-j> 4j
|
||||||
|
|
||||||
"map ctrl+right/left to moving the cursor left and right by one word
|
"map ctrl+right/left to moving the cursor left and right by one word
|
||||||
nnoremap <C-Right> <S-Right>
|
nnoremap <C-Right> <S-Right>
|
||||||
nnoremap <C-Left> <S-Left>
|
nnoremap <C-Left> <S-Left>
|
||||||
|
nnoremap <C-l> <S-Right>
|
||||||
|
nnoremap <C-h> <S-Left>
|
||||||
|
|
||||||
"map alt+direction to moving the viewport in that direction
|
"map alt+direction to moving the viewport in that direction
|
||||||
noremap <A-k> <ScrollWheelUp>
|
noremap <A-k> <ScrollWheelUp>
|
||||||
|
|
Loading…
Reference in a new issue