aboutsummaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-29 12:57:08 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-29 12:57:08 +1200
commit2c7265708c052b119354325d6bb161fc8087be81 (patch)
treece69d51ea8887e4321c279c55d82a7bd32314f41 /plugin
parentCorrect a comment (diff)
downloadvim-toggle-flags-2c7265708c052b119354325d6bb161fc8087be81.tar.gz
vim-toggle-flags-2c7265708c052b119354325d6bb161fc8087be81.zip
Refactor completely, dropping Vim 6.x cruft
Diffstat (limited to 'plugin')
-rw-r--r--plugin/toggle_flags.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/toggle_flags.vim b/plugin/toggle_flags.vim
index e8202e1..5e5bdf7 100644
--- a/plugin/toggle_flags.vim
+++ b/plugin/toggle_flags.vim
@@ -12,6 +12,6 @@ let loaded_toggle_flags = 1
" User commands wrapping around calls to the above function
command -nargs=+ -complete=option ToggleFlag
- \ call toggle_flags#Toggle(<f-args>, 0)
+ \ call toggle_flags#(<f-args>, 0)
command -nargs=+ -complete=option ToggleFlagLocal
- \ call toggle_flags#Toggle(<f-args>, 1)
+ \ call toggle_flags#(<f-args>, 1)