From 29c9ab308a614ff31a2abedda853742a7bbdfa5b Mon Sep 17 00:00:00 2001 From: Josh Sherman Date: Sat, 15 Apr 2017 12:38:33 -0500 Subject: [PATCH] [vim] b to better brace matching Jumps to the end of the line and then does the matching from there. Saves the extra jump when trying to jump between conditionals that use braces --- vim/vimrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vim/vimrc b/vim/vimrc index 156ddc1..a0506ae 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -113,6 +113,8 @@ nmap j gg nmap k G nmap l $ +nmap b $% + nnoremap [ :bprevious nnoremap ] :bnext