From 119174b7ddeeced9b2e0e3bef625aa58c5dd7070 Mon Sep 17 00:00:00 2001 From: Israel Chauca Fuentes Date: Mon, 20 Sep 2010 00:53:12 -0500 Subject: [PATCH] Add -bar to commands. --- plugin/delimitMate.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugin/delimitMate.vim b/plugin/delimitMate.vim index 81d42ac..72527fe 100644 --- a/plugin/delimitMate.vim +++ b/plugin/delimitMate.vim @@ -421,13 +421,13 @@ endfunction "}}} call s:DelimitMateDo() " Let me refresh without re-loading the buffer: -command! DelimitMateReload call s:DelimitMateDo(1) +command! -bar DelimitMateReload call s:DelimitMateDo(1) " Quick test: -command! DelimitMateTest silent call s:TestMappingsDo() +command! -bar DelimitMateTest silent call s:TestMappingsDo() " Switch On/Off: -command! DelimitMateSwitch call s:DelimitMateSwitch() +command! -bar DelimitMateSwitch call s:DelimitMateSwitch() "}}} " Autocommands: {{{