From 80b5a0ded41cfb5224194997606774af5da902f8 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Fri, 6 Oct 2017 13:57:15 -0400 Subject: [PATCH] Map the t character to select to the end of the word --- vim/config/keyboard.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vim/config/keyboard.vim b/vim/config/keyboard.vim index ae7bc37..d5c8047 100644 --- a/vim/config/keyboard.vim +++ b/vim/config/keyboard.vim @@ -260,6 +260,8 @@ " | (V) -> select all text to the right " | (V) -> select all text to the left up to the indent " +" t | (N) -> select to the end of the word +" " | (V) -> select four lines up " | (V) -> select four lines down " | (V) -> select one word right @@ -822,6 +824,9 @@ nnoremap gg0vG$ xnoremap gg0vG$ + "t to select to the end of the word + nnoremap t ve + "map remap keys for speedier text selection xnoremap 4k xnoremap 4j