change startup check regex once again

I'm terribly sorry for excluding all MacVim users.

Closes #14.
This commit is contained in:
Marco Hinz 2013-04-28 13:33:39 +02:00
parent 80f6ca4323
commit 4a170ee843

View file

@ -15,7 +15,7 @@ let g:startify_session_dir = resolve(expand(get(g:, 'startify_session_dir',
augroup startify
autocmd!
autocmd VimEnter *
\ if !argc() && (line2byte('$') == -1) && (v:progname =~# '^g\=vim') |
\ if !argc() && (line2byte('$') == -1) && (v:progname !~# 'g\=vimdiff\|view\|evim') |
\ call s:insane_in_the_membrane() |
\ endif
augroup END