mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 15:06:38 -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
|
||||
" <Ctrl-Up> | (A) -> move up 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)
|
||||
" <Tab> | (I) -> write the part common to all suggestions
|
||||
|
@ -92,9 +94,13 @@
|
|||
nnoremap <S-p> "_diwP
|
||||
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-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 {{{
|
||||
|
|
Loading…
Reference in a new issue