Enable chaining :commands with :bar.

This commit is contained in:
Will Gray 2011-02-17 15:29:34 -06:00
parent 4a3c2d3d46
commit 9441c97e57

View File

@ -20,9 +20,9 @@ function! s:IndentGuidesDisable()
endfunction endfunction
" Commands " Commands
command! IndentGuidesToggle call s:IndentGuidesToggle() command! -bar IndentGuidesToggle call s:IndentGuidesToggle()
command! IndentGuidesEnable call s:IndentGuidesEnable() command! -bar IndentGuidesEnable call s:IndentGuidesEnable()
command! IndentGuidesDisable call s:IndentGuidesDisable() command! -bar IndentGuidesDisable call s:IndentGuidesDisable()
" "
" Initializes a given variable to a given value. The variable is only " Initializes a given variable to a given value. The variable is only