Fortune: quote might be a funcref

Fixes https://github.com/mhinz/vim-startify/issues/396
This commit is contained in:
Marco Hinz 2019-10-27 02:35:20 +02:00
parent 520f277695
commit bba214f6b3
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -28,7 +28,12 @@ endfunction
" Function: #boxed {{{1
function! startify#fortune#boxed(...) abort
let wrapped_quote = []
let quote = a:0 && type(a:1) == type([]) ? a:1 : startify#fortune#quote()
if a:0 && type(a:1) == type([])
let quote = a:1
else
let Quote = startify#fortune#quote()
let quote = type(Quote) == type(function('tr')) ? Quote() : Quote
endif
for line in quote
let wrapped_quote += split(line, '\%50c.\{-}\zs\s', 1)
endfor