mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 23:06:38 -05:00
Middle-click now enters input mode, and ctrl+middle-click now pastes where
the cursor is. Some redundant definitions were removed, and submodules were updated.
This commit is contained in:
parent
aae6cac6cd
commit
dc5b1547bf
5 changed files with 10 additions and 7 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit 6adab8a234c7165502f555a9e0cff5c5a4f99ac0
|
Subproject commit ff1aaf88a9c04d53fd23501cae2cdfc914631022
|
|
@ -1 +1 @@
|
||||||
Subproject commit 81313611ae3ac45d85bd36e68d5a981bde5d5886
|
Subproject commit f161992c116c9fbfaf900524acd7034586fd3309
|
|
@ -1 +1 @@
|
||||||
Subproject commit a6677df3e3e2adf59f074841966f1117e85fc02f
|
Subproject commit a9b7d23a74b91d5c124de30fad146ac359f9d6a4
|
|
@ -1 +1 @@
|
||||||
Subproject commit b82501c01c39b6d9e098b1ec13205571271b14cc
|
Subproject commit 204e56d5cddf694d084d8cf604de9f6038cef403
|
|
@ -43,6 +43,9 @@
|
||||||
"
|
"
|
||||||
" Mappings:
|
" Mappings:
|
||||||
" (mouse)
|
" (mouse)
|
||||||
|
" <MiddleMouse | (N) -> enter input mode where you click
|
||||||
|
" <C-MiddleMouse> | (N) -> paste text from current buffer at cursor
|
||||||
|
"
|
||||||
" <C-LeftMouse> | (N) -> select the current line in normal mode
|
" <C-LeftMouse> | (N) -> select the current line in normal mode
|
||||||
" <C-LeftMouse> | (I) -> select the current line in input mode
|
" <C-LeftMouse> | (I) -> select the current line in input mode
|
||||||
"
|
"
|
||||||
|
@ -247,9 +250,9 @@
|
||||||
|
|
||||||
"MAPPINGS: GENERAL KEYBINDINGS AND REBINDINGS {{{
|
"MAPPINGS: GENERAL KEYBINDINGS AND REBINDINGS {{{
|
||||||
"MOUSE:{
|
"MOUSE:{
|
||||||
"hold shift to enable middle-click paste
|
"midle click enters input mode
|
||||||
noremap <S-Insert> <MiddleMouse>
|
nnoremap <MiddleMouse> <LeftMouse>i
|
||||||
noremap! <S-Insert> <MiddleMouse>
|
nnoremap <C-MiddleMouse> <LeftMouse>p
|
||||||
|
|
||||||
"hold ctrl to scroll left/right instead of up/down
|
"hold ctrl to scroll left/right instead of up/down
|
||||||
noremap <C-ScrollWheelUp> 4zl
|
noremap <C-ScrollWheelUp> 4zl
|
||||||
|
|
Loading…
Reference in a new issue