Skip creating new buffer if current buffer is empty

This prevents buffer-local commands getting lost that were set before startify
was run. E.g. :Git which is set by fugitive.
This commit is contained in:
Marco Hinz 2018-04-09 17:02:43 +02:00
parent 5a1d811d5f
commit 6f621bd99a
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F
2 changed files with 4 additions and 2 deletions

View file

@ -61,7 +61,9 @@ function! startify#insane_in_the_membrane() abort
endfor
endif
noautocmd enew
if line2byte('$') != -1
noautocmd enew
endif
silent! setlocal
\ bufhidden=wipe

View file

@ -33,7 +33,7 @@ function! s:update_oldfiles(file)
endfunction
function! s:genesis()
if !argc() && (line2byte('$') == -1)
if !argc()
if get(g:, 'startify_session_autoload') && filereadable('Session.vim')
source Session.vim
elseif !get(g:, 'startify_disable_at_vimenter')