From bc43e715a78c9fe9d4a04583ef4c776cbfe2c3d3 Mon Sep 17 00:00:00 2001 From: Kevin Date: Wed, 9 Apr 2014 17:02:49 -0400 Subject: [PATCH] holding ctrl in normal or input modes and clicking will now put you in visual mode with the clicked line selected --- vim/config/keyboard.vim | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vim/config/keyboard.vim b/vim/config/keyboard.vim index 81bfc59..c9845bf 100644 --- a/vim/config/keyboard.vim +++ b/vim/config/keyboard.vim @@ -149,6 +149,9 @@ " | (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 +" " (paste functions) " p | (N) -> view the paste buffers and register contents " p | (N) -> paste in the direction entered @@ -455,6 +458,9 @@ xnoremap G$ xnoremap $ xnoremap ^ + + nnoremap V + inoremap V "} "PASTE:{