Make startify#fortune#boxed() take optional argument

References #285.
This commit is contained in:
Marco Hinz 2017-06-05 10:52:22 +02:00
parent ae8cfbb9db
commit 1940c9f9b9
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F
2 changed files with 5 additions and 5 deletions

View file

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

View file

@ -542,9 +542,9 @@ Dynamic example:~
<
If you go for a dynamic header, you might find the following functions useful:
startify#fortune#quote() raw random quote
startify#fortune#boxed() formatted random quote in a box
startify#fortune#cowsay() formatted random quote in a box + cow
startify#fortune#quote() raw random quote
startify#fortune#boxed(...) opt list or formatted random quote in a box
startify#fortune#cowsay() formatted random quote in a box + cow
Try them like this:
>