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:
parent
6f886cdc48
commit
9afab110e9
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue