mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-22 11:44:10 -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-Right> | (V) -> select a few lines right
|
||||||
" <Shift-Left> | (V) -> select a few lines left
|
" <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)
|
" (paste functions)
|
||||||
" <Leader>p | (N) -> view the paste buffers and register contents
|
" <Leader>p | (N) -> view the paste buffers and register contents
|
||||||
" <Leader>p<Direction> | (N) -> paste in the direction entered
|
" <Leader>p<Direction> | (N) -> paste in the direction entered
|
||||||
|
@ -455,6 +458,9 @@
|
||||||
xnoremap <C-Down> G$
|
xnoremap <C-Down> G$
|
||||||
xnoremap <C-Right> $
|
xnoremap <C-Right> $
|
||||||
xnoremap <C-Left> ^
|
xnoremap <C-Left> ^
|
||||||
|
|
||||||
|
nnoremap <C-LeftMouse> <LeftMouse>V
|
||||||
|
inoremap <C-LeftMouse> <Esc><LeftMouse>V
|
||||||
"}
|
"}
|
||||||
|
|
||||||
"PASTE:{
|
"PASTE:{
|
||||||
|
|
Loading…
Reference in a new issue