aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin/vertical_region.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/plugin/vertical_region.vim')
-rw-r--r--vim/plugin/vertical_region.vim29
1 files changed, 0 insertions, 29 deletions
diff --git a/vim/plugin/vertical_region.vim b/vim/plugin/vertical_region.vim
deleted file mode 100644
index ddf83a53..00000000
--- a/vim/plugin/vertical_region.vim
+++ /dev/null
@@ -1,29 +0,0 @@
-"
-" vertical_region.vim: Move to a line that has non-space characters before or
-" in the current column, usually to find lines that begin or end blocks in
-" languages where indenting is used to show or specify structure.
-"
-" Author: Tom Ryder <tom@sanctum.geek.nz>
-" License: Same as Vim itself
-"
-if exists('g:loaded_vertical_region') || &compatible
- finish
-endif
-if v:version < 700
- finish
-endif
-let g:loaded_vertical_region = 1
-
-" Define plugin maps
-nnoremap <expr> <Plug>(VerticalRegionUpNormal)
- \ vertical_region#Map(v:count1, 1, 'n')
-nnoremap <expr> <Plug>(VerticalRegionDownNormal)
- \ vertical_region#Map(v:count1, 0, 'n')
-onoremap <expr> <Plug>(VerticalRegionUpOperator)
- \ vertical_region#Map(v:count1, 1, 'o')
-onoremap <expr> <Plug>(VerticalRegionDownOperator)
- \ vertical_region#Map(v:count1, 0, 'o')
-xnoremap <expr> <Plug>(VerticalRegionUpVisual)
- \ vertical_region#Map(v:count1, 1, 'x')
-xnoremap <expr> <Plug>(VerticalRegionDownVisual)
- \ vertical_region#Map(v:count1, 0, 'x')