mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-14 08:42:30 -05:00
Mapped shift left/right to movement to the start and end of the text on
the line
This commit is contained in:
parent
a323216a19
commit
9f5905f38f
1 changed files with 7 additions and 1 deletions
|
@ -28,6 +28,8 @@
|
||||||
" <Shift-p> | (V) -> paste and replace the selection
|
" <Shift-p> | (V) -> paste and replace the selection
|
||||||
" <Ctrl-Up> | (A) -> move up a chunk of text
|
" <Ctrl-Up> | (A) -> move up a chunk of text
|
||||||
" <Ctrl-Down> | (A) -> move down a chunk of text
|
" <Ctrl-Down> | (A) -> move down a chunk of text
|
||||||
|
" <Shift-Left> | (N) -> move to the start of the text
|
||||||
|
" <Shift-Right> | (N) -> move to the end of the line
|
||||||
"
|
"
|
||||||
" (neocomplcache)
|
" (neocomplcache)
|
||||||
" <Tab> | (I) -> write the part common to all suggestions
|
" <Tab> | (I) -> write the part common to all suggestions
|
||||||
|
@ -92,9 +94,13 @@
|
||||||
nnoremap <S-p> "_diwP
|
nnoremap <S-p> "_diwP
|
||||||
vnoremap <S-p> "_d"0P
|
vnoremap <S-p> "_d"0P
|
||||||
|
|
||||||
"map ctrl-up and ctrl-down to moving up/down by a block of text
|
"map ctrl-up/down to moving up/down by a block of text
|
||||||
map <C-Up> <C-U>
|
map <C-Up> <C-U>
|
||||||
map <C-Down> <C-D>
|
map <C-Down> <C-D>
|
||||||
|
|
||||||
|
"map shift-left/right to move to the start/end of the line's text
|
||||||
|
nmap <S-Left> ^
|
||||||
|
nmap <S-Right> $
|
||||||
"}}}
|
"}}}
|
||||||
|
|
||||||
"PLUGIN KEYBINDINGS {{{
|
"PLUGIN KEYBINDINGS {{{
|
||||||
|
|
Loading…
Reference in a new issue