diff options
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | plugin/toggle_flags.vim | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1 +1 @@ -3.0.0 +3.1.0 diff --git a/plugin/toggle_flags.vim b/plugin/toggle_flags.vim index 5e5bdf7..f824510 100644 --- a/plugin/toggle_flags.vim +++ b/plugin/toggle_flags.vim @@ -11,7 +11,7 @@ endif let loaded_toggle_flags = 1 " User commands wrapping around calls to the above function -command -nargs=+ -complete=option ToggleFlag +command -bar -nargs=+ -complete=option ToggleFlag \ call toggle_flags#(<f-args>, 0) -command -nargs=+ -complete=option ToggleFlagLocal +command -bar -nargs=+ -complete=option ToggleFlagLocal \ call toggle_flags#(<f-args>, 1) |