clicking while holding the alt key will now select the current paragraph

This commit is contained in:
Kevin 2014-04-11 11:29:26 -04:00
parent cfcb854804
commit 5c71fa3587

View file

@ -147,8 +147,12 @@
" <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> | (N) -> select the current line in normal mode
" <C-LeftMouse> | (I) -> select the current line in visual 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) " (paste functions)
" <Leader>p | (N) -> view the paste buffers and register contents " <Leader>p | (N) -> view the paste buffers and register contents
@ -457,6 +461,10 @@
nnoremap <C-LeftMouse> <LeftMouse>V nnoremap <C-LeftMouse> <LeftMouse>V
inoremap <C-LeftMouse> <Esc><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:{ "PASTE:{