aboutsummaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-29 13:14:05 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-29 13:14:05 +1200
commit882c4b191292de7ef78cff1b7de0d3efb6b93b7e (patch)
treef532a5ea04f7afb461b1b64c4fdf065a42db0313 /plugin
parentMerge branch 'release/v1.1.0' into develop (diff)
downloadvim-vertical-region-882c4b191292de7ef78cff1b7de0d3efb6b93b7e.tar.gz
vim-vertical-region-882c4b191292de7ef78cff1b7de0d3efb6b93b7e.zip
Use entry point function name
Diffstat (limited to 'plugin')
-rw-r--r--plugin/vertical_region.vim12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugin/vertical_region.vim b/plugin/vertical_region.vim
index eebcc72..cd7caa1 100644
--- a/plugin/vertical_region.vim
+++ b/plugin/vertical_region.vim
@@ -17,14 +17,14 @@ let loaded_vertical_region = 1
" Define plugin maps
nnoremap <silent> <Plug>(VerticalRegionUp)
- \ :<C-U>call vertical_region#Map(v:count1, 1, 'n')<CR>
+ \ :<C-U>call vertical_region#(v:count1, 1, 'n')<CR>
nnoremap <silent> <Plug>(VerticalRegionDown)
- \ :<C-U>call vertical_region#Map(v:count1, 0, 'n')<CR>
+ \ :<C-U>call vertical_region#(v:count1, 0, 'n')<CR>
onoremap <silent> <Plug>(VerticalRegionUp)
- \ :<C-U>call vertical_region#Map(v:count1, 1, 'o')<CR>
+ \ :<C-U>call vertical_region#(v:count1, 1, 'o')<CR>
onoremap <silent> <Plug>(VerticalRegionDown)
- \ :<C-U>call vertical_region#Map(v:count1, 0, 'o')<CR>
+ \ :<C-U>call vertical_region#(v:count1, 0, 'o')<CR>
xnoremap <silent> <Plug>(VerticalRegionUp)
- \ :<C-U>call vertical_region#Map(v:count1, 1, 'x')<CR>
+ \ :<C-U>call vertical_region#(v:count1, 1, 'x')<CR>
xnoremap <silent> <Plug>(VerticalRegionDown)
- \ :<C-U>call vertical_region#Map(v:count1, 0, 'x')<CR>
+ \ :<C-U>call vertical_region#(v:count1, 0, 'x')<CR>