From 5c71fa358777bb8905d5108290214e7cb6ad09fc Mon Sep 17 00:00:00 2001 From: Kevin Date: Fri, 11 Apr 2014 11:29:26 -0400 Subject: [PATCH] clicking while holding the alt key will now select the current paragraph --- vim/config/keyboard.vim | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/vim/config/keyboard.vim b/vim/config/keyboard.vim index b5b3110..faa709c 100644 --- a/vim/config/keyboard.vim +++ b/vim/config/keyboard.vim @@ -147,8 +147,12 @@ " | (V) -> select a few lines right " | (V) -> select a few lines left " -" | (N) -> select the current line in visual mode -" | (I) -> select the current line in visual mode +" | (N) -> select the current line in normal mode +" | (I) -> select the current line in input mode +" +" | (N) -> select the current paragraph in normal mode +" | (V) -> select the current paragraph in visual mode +" | (I) -> select the current paragraph in input mode " " (paste functions) " p | (N) -> view the paste buffers and register contents @@ -457,6 +461,10 @@ nnoremap V inoremap V + + nnoremap vip + xnoremap vip + inoremap vip "} "PASTE:{