" " vertical_region.vim: Mapping targets to move up or down to lines that have " 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 " License: Same as Vim itself " if exists('loaded_vertical_region') || &compatible || v:version < 700 finish endif let loaded_vertical_region = 1 " Define plugin maps noremap (VerticalRegionUp) \ :call vertical_region#(v:count1, 1, 'n') sunmap (VerticalRegionUp) noremap (VerticalRegionDown) \ :call vertical_region#(v:count1, 0, 'n') sunmap (VerticalRegionDown)