aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-12-30 00:41:25 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-12-30 00:41:25 +1300
commitfec5c3d716aa60e41f135d5c5a424875fbd835c0 (patch)
tree87eef21444d828a56db1e7948ca87372369ee2ac
parentUpdate regex_escape.vim to v1.0.2 (diff)
downloaddotfiles-fec5c3d716aa60e41f135d5c5a424875fbd835c0.tar.gz
dotfiles-fec5c3d716aa60e41f135d5c5a424875fbd835c0.zip
Update vertical_region.vim to v1.0.0
m---------vim/bundle/vertical_region0
-rw-r--r--vim/vimrc12
2 files changed, 6 insertions, 6 deletions
diff --git a/vim/bundle/vertical_region b/vim/bundle/vertical_region
-Subproject 14c91a98d63d74a81542af565af6a67377c5136
+Subproject 67136f00965612823a638bc2bef7a493703de66
diff --git a/vim/vimrc b/vim/vimrc
index 608f9a2b..f290b144 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -393,12 +393,12 @@ onoremap <Leader>_ :<C-U>normal! `[v`]<CR>
onoremap <Leader>% :<C-U>normal! 1GVG<CR>
" \{ and \} move to lines with non-space chars before current column
-nmap <Leader>{ <Plug>(VerticalRegionUpNormal)
-nmap <Leader>} <Plug>(VerticalRegionDownNormal)
-omap <Leader>{ <Plug>(VerticalRegionUpOperator)
-omap <Leader>} <Plug>(VerticalRegionDownOperator)
-xmap <Leader>{ <Plug>(VerticalRegionUpVisual)
-xmap <Leader>} <Plug>(VerticalRegionDownVisual)
+nmap <Leader>{ <Plug>(VerticalRegionUp)
+nmap <Leader>} <Plug>(VerticalRegionDown)
+omap <Leader>{ <Plug>(VerticalRegionUp)
+omap <Leader>} <Plug>(VerticalRegionDown)
+xmap <Leader>{ <Plug>(VerticalRegionUp)
+xmap <Leader>} <Plug>(VerticalRegionDown)
" \/ types :vimgrep for me ready to enter a search pattern
nnoremap <Leader>/ :<C-U>vimgrep /\c/j **<S-Left><S-Left><Right>