mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-22 11:44:10 -05:00
clicking while holding the alt key will now select the current paragraph
This commit is contained in:
parent
cfcb854804
commit
5c71fa3587
1 changed files with 10 additions and 2 deletions
|
@ -147,8 +147,12 @@
|
|||
" <Shift-Right> | (V) -> select a few lines right
|
||||
" <Shift-Left> | (V) -> select a few lines left
|
||||
"
|
||||
" <C-LeftMouse> | (N) -> select the current line in visual mode
|
||||
" <C-LeftMouse> | (I) -> select the current line in visual mode
|
||||
" <C-LeftMouse> | (N) -> select the current line in normal mode
|
||||
" <C-LeftMouse> | (I) -> select the current line in input mode
|
||||
"
|
||||
" <A-LeftMouse> | (N) -> select the current paragraph in normal mode
|
||||
" <A-LeftMouse> | (V) -> select the current paragraph in visual mode
|
||||
" <A-LeftMouse> | (I) -> select the current paragraph in input mode
|
||||
"
|
||||
" (paste functions)
|
||||
" <Leader>p | (N) -> view the paste buffers and register contents
|
||||
|
@ -457,6 +461,10 @@
|
|||
|
||||
nnoremap <C-LeftMouse> <LeftMouse>V
|
||||
inoremap <C-LeftMouse> <Esc><LeftMouse>V
|
||||
|
||||
nnoremap <A-LeftMouse> <LeftMouse>vip
|
||||
xnoremap <A-LeftMouse> <Esc><LeftMouse>vip
|
||||
inoremap <A-LeftMouse> <LeftMouse>vip
|
||||
"}
|
||||
|
||||
"PASTE:{
|
||||
|
|
Loading…
Reference in a new issue