Skip default header for very old versions

Closes https://github.com/mhinz/vim-startify/issues/386
This commit is contained in:
Marco Hinz 2019-08-15 12:28:42 +02:00
parent 2486ab67bc
commit d7849587e5
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -64,7 +64,7 @@ function! startify#insane_in_the_membrane(on_vimenter) abort
" Must be global so that it can be read by syntax/startify.vim.
let g:startify_header = exists('g:startify_custom_header')
\ ? s:set_custom_section(g:startify_custom_header)
\ : startify#fortune#cowsay()
\ : (exists('*strwidth') ? startify#fortune#cowsay() : [])
if !empty(g:startify_header)
let g:startify_header += [''] " add blank line
endif