Eval g:startify_custom_header if it's a string

This commit is contained in:
Marco Hinz 2016-03-17 11:44:26 +01:00
parent 994a85ac22
commit f90594bb9a

View file

@ -68,9 +68,15 @@ function! startify#insane_in_the_membrane() abort
endif
" Must be global so that it can be read by syntax/startify.vim.
let g:startify_header = exists('g:startify_custom_header')
\ ? copy(g:startify_custom_header)
\ : startify#fortune#cowsay()
if exists('g:startify_custom_header')
if type(g:startify_custom_header) == type([])
let g:startify_header = copy(g:startify_custom_header)
else
let g:startify_header = eval(g:startify_custom_header)
endif
else
let g:startify_header = startify#fortune#cowsay()
endif
let g:startify_header += [''] " add blank line
call append('$', g:startify_header)