Do not check v:progname anymore

Originally this check was meant to prevent showing the Startify buffer for
certain cases I can't recall anymore.

Now the Startify buffer will be shown at startup if these conditions are true:

  1) no arguments were provided to Vim on the commandline
  2) the first buffer is empty
This commit is contained in:
Marco Hinz 2015-11-03 13:05:46 +01:00
parent 6f886cdc48
commit 9afab110e9

View file

@ -24,7 +24,7 @@ augroup startify
augroup END
function! s:genesis()
if !argc() && (line2byte('$') == -1) && (v:progname =~? '^[-gmnq]\=vim\=x\=\%[\.exe]$')
if !argc() && (line2byte('$') == -1)
if get(g:, 'startify_session_autoload') && filereadable('Session.vim')
source Session.vim
else