Remove VimEnter event after execution

This commit is contained in:
Marco Hinz 2013-08-04 18:08:57 +02:00
parent 0d132390dd
commit 34436b8da5

View file

@ -10,10 +10,11 @@ let g:loaded_startify = 1
augroup startify
autocmd!
autocmd VimEnter *
autocmd startify VimEnter *
\ if !argc() && (line2byte('$') == -1) && (v:progname =~? '^[gm]\=vim\%[\.exe]$') |
\ call startify#insane_in_the_membrane() |
\ endif
\ endif |
\ autocmd! startify VimEnter
augroup END
command! -nargs=? -bar -complete=customlist,startify#session_list SSave call startify#session_save(<f-args>)