From d1a16228893a0c231476e37d3545ff49157a1d67 Mon Sep 17 00:00:00 2001 From: Kevin Date: Fri, 28 Mar 2014 11:44:12 -0400 Subject: [PATCH] Removed shift-a because that's the key combo for 'A' (insert at end of line)- whoops! Instead \a has been added, and select all has been added to visual mode in both forms. --- vim/config/keyboard.vim | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/vim/config/keyboard.vim b/vim/config/keyboard.vim index e40856b..26d59f6 100644 --- a/vim/config/keyboard.vim +++ b/vim/config/keyboard.vim @@ -1,4 +1,4 @@ - +"==========================" " Keyboard Configuration: " "===========================" " @@ -45,7 +45,10 @@ " | (N) -> move to the end of the line " | (N) -> move to the beginning of the non-whitespace " | (N) -> move to the beginning of the line +" | (V) -> select all " | (N) -> select all +" a | (V) -> select all +" a | (N) -> select all " | (N) -> select all text above the cursor " | (N) -> select all text above the cursor " | (N) -> select all text below the cursor @@ -152,7 +155,9 @@ "map remap keys to select text nnoremap gg0vG$ - nnoremap gg0vG$ + vnoremap gg0vG$ + nnoremap a gg0vG$ + vnoremap a gg0vG$ nnoremap vgg0 nnoremap vgg0 nnoremap vG$