run startify at start only for 'vim' and 'gvim'

Don't call Startify at start when using evim, view, etc.
This commit is contained in:
Marco Hinz 2013-04-28 09:17:57 +02:00
parent 12d0ca643b
commit b6c528b6aa

View file

@ -14,7 +14,10 @@ let g:startify_session_dir = resolve(expand(get(g:, 'startify_session_dir',
augroup startify
autocmd!
autocmd VimEnter * if !argc() && (line2byte('$') == -1) | call s:insane_in_the_membrane() | endif
autocmd VimEnter *
\ if !argc() && (line2byte('$') == -1) && (v:progname == 'vim' || v:progname == 'gvim') |
\ call s:insane_in_the_membrane() |
\ endif
augroup END
command! -nargs=? -bar -complete=customlist,startify#get_session_names SSave call startify#save_session(<f-args>)