From a27df8325c9ae7e4b0aa677936137dbf94e73b42 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Tue, 28 May 2019 16:40:35 +0200 Subject: [PATCH] Doc: slightly improve the centered header example --- doc/startify.txt | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/doc/startify.txt b/doc/startify.txt index a633322..5ca086f 100644 --- a/doc/startify.txt +++ b/doc/startify.txt @@ -985,13 +985,15 @@ How do I center my header/footer?~ Try something along these lines: > - function! s:filter_header(lines) abort - let longest_line = max(map(copy(a:lines), 'strwidth(v:val)')) - let centered_lines = map(copy(a:lines), + function! s:center(lines) abort + let longest_line = max(map(copy(a:lines), 'strwidth(v:val)')) + let centered_lines = map(copy(a:lines), \ 'repeat(" ", (&columns / 2) - (longest_line / 2)) . v:val') - return centered_lines + return centered_lines endfunction - let g:startify_custom_header = s:filter_header(startify#fortune#cowsay()) + + let g:startify_custom_header = s:center(startify#fortune#cowsay()) + let g:startify_custom_footer = s:center(['foo', 'bar', 'baz']) < ------------------------------------------------------------------------------ *startify-faq-09*