mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 23:06:38 -05:00
holding ctrl in normal or input modes and clicking will now put you in
visual mode with the clicked line selected
This commit is contained in:
parent
93a6d30f88
commit
bc43e715a7
1 changed files with 6 additions and 0 deletions
|
@ -149,6 +149,9 @@
|
|||
" <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
|
||||
"
|
||||
" (paste functions)
|
||||
" <Leader>p | (N) -> view the paste buffers and register contents
|
||||
" <Leader>p<Direction> | (N) -> paste in the direction entered
|
||||
|
@ -455,6 +458,9 @@
|
|||
xnoremap <C-Down> G$
|
||||
xnoremap <C-Right> $
|
||||
xnoremap <C-Left> ^
|
||||
|
||||
nnoremap <C-LeftMouse> <LeftMouse>V
|
||||
inoremap <C-LeftMouse> <Esc><LeftMouse>V
|
||||
"}
|
||||
|
||||
"PASTE:{
|
||||
|
|
Loading…
Reference in a new issue