From d7849587e5cf36ea4858fe2aab4f7b5faff76d33 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Thu, 15 Aug 2019 12:28:42 +0200 Subject: [PATCH] Skip default header for very old versions Closes https://github.com/mhinz/vim-startify/issues/386 --- autoload/startify.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 23ecdd0..0327cfc 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -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