diff --git a/plugin/delimitMate.vim b/plugin/delimitMate.vim index f604b64..427c828 100644 --- a/plugin/delimitMate.vim +++ b/plugin/delimitMate.vim @@ -342,6 +342,8 @@ endfunction "}}} " Commands: {{{ +call s:DelimitMateDo() + " Let me refresh without re-loading the buffer: command! -bar DelimitMateReload call s:DelimitMateDo(1) @@ -366,7 +368,6 @@ augroup delimitMate \ call DelimitMateDo() | \ let b:delimitMate_was_here = 1 | \ endif - autocmd VimEnter * call DelimitMateDo() augroup END "}}}