Don't add blank line for empty custom header

Closes #210.
This commit is contained in:
Marco Hinz 2016-03-20 14:21:55 +01:00
parent ffb80ec99e
commit 570ef9e11f

View file

@ -88,7 +88,9 @@ function! startify#insane_in_the_membrane() abort
else
let g:startify_header = startify#fortune#cowsay()
endif
let g:startify_header += [''] " add blank line
if !empty(g:startify_header)
let g:startify_header += [''] " add blank line
endif
call append('$', g:startify_header)
let s:tick = 0