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:
Kevin 2014-04-09 17:02:49 -04:00
parent 93a6d30f88
commit bc43e715a7

View file

@ -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:{