From 9441c97e579851ce50ceb997d8a2e1dfc8d9faa7 Mon Sep 17 00:00:00 2001 From: Will Gray Date: Thu, 17 Feb 2011 15:29:34 -0600 Subject: [PATCH] Enable chaining :commands with :bar. --- plugin/indent_guides.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugin/indent_guides.vim b/plugin/indent_guides.vim index 2c8276b..907ee6d 100644 --- a/plugin/indent_guides.vim +++ b/plugin/indent_guides.vim @@ -20,9 +20,9 @@ function! s:IndentGuidesDisable() endfunction " Commands -command! IndentGuidesToggle call s:IndentGuidesToggle() -command! IndentGuidesEnable call s:IndentGuidesEnable() -command! IndentGuidesDisable call s:IndentGuidesDisable() +command! -bar IndentGuidesToggle call s:IndentGuidesToggle() +command! -bar IndentGuidesEnable call s:IndentGuidesEnable() +command! -bar IndentGuidesDisable call s:IndentGuidesDisable() " " Initializes a given variable to a given value. The variable is only