mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-22 11:44:10 -05:00
Scrolling horizontally with the mousewheel while holding ctrl now works
in input mode, and you can now copy a character with y in normal mode
This commit is contained in:
parent
7c2f0d925d
commit
76369ab429
1 changed files with 8 additions and 2 deletions
|
@ -98,7 +98,8 @@
|
||||||
" < | (N) -> replace diff in current pane with other pane
|
" < | (N) -> replace diff in current pane with other pane
|
||||||
" > | (N) -> replace diff in other pane with current pane
|
" > | (N) -> replace diff in other pane with current pane
|
||||||
"
|
"
|
||||||
" (paste-buffer-override)
|
" (paste)
|
||||||
|
" y | (N) -> copies the character
|
||||||
" p | (V) -> paste and replace the currently selected text
|
" p | (V) -> paste and replace the currently selected text
|
||||||
" P | (V) -> paste and replace the currently selected text
|
" P | (V) -> paste and replace the currently selected text
|
||||||
" \d | (V) -> delete the currently selected text
|
" \d | (V) -> delete the currently selected text
|
||||||
|
@ -125,6 +126,8 @@
|
||||||
"hold ctrl to scroll left/right instead of up/down
|
"hold ctrl to scroll left/right instead of up/down
|
||||||
noremap <C-ScrollWheelUp> 3zl
|
noremap <C-ScrollWheelUp> 3zl
|
||||||
noremap <C-ScrollWheelDown> 3zh
|
noremap <C-ScrollWheelDown> 3zh
|
||||||
|
inoremap <C-ScrollWheelUp> <C-O>3zl
|
||||||
|
inoremap <C-ScrollWheelDown> <C-O>3zh
|
||||||
"}
|
"}
|
||||||
|
|
||||||
"TABS:{
|
"TABS:{
|
||||||
|
@ -269,7 +272,10 @@
|
||||||
nnoremap <Leader>, do
|
nnoremap <Leader>, do
|
||||||
"}
|
"}
|
||||||
|
|
||||||
"PASTE BUFFER OVERRIDE:{
|
"PASTE:{
|
||||||
|
"allow y to copy in normal mode
|
||||||
|
nnoremap y vy<Esc>
|
||||||
|
|
||||||
"alternatives that preserve the paste buffer
|
"alternatives that preserve the paste buffer
|
||||||
vnoremap p "_d"0P
|
vnoremap p "_d"0P
|
||||||
vnoremap P "_d"0P
|
vnoremap P "_d"0P
|
||||||
|
|
Loading…
Reference in a new issue