From 9afab110e95b84c0170bcb81bb733c39b98b2065 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Tue, 3 Nov 2015 13:05:46 +0100 Subject: [PATCH] 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 --- plugin/startify.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/startify.vim b/plugin/startify.vim index 8875952..b62cded 100644 --- a/plugin/startify.vim +++ b/plugin/startify.vim @@ -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