Syntax: fix StartifyFooter regexp

Prior to this StartifyFooter would only reach up to the first * character. Now
we include any character including newlines. This effectively highlights
everything to the end of the buffer.

References #316
This commit is contained in:
Marco Hinz 2018-04-27 10:55:55 +02:00
parent c1a81780d5
commit 4f296fe424
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -31,7 +31,7 @@ execute 'syntax match StartifyPath /\%'. (len(s:padding_left) + 6) .'c.*\'. s:se
execute 'syntax region StartifyHeader start=/\%1l/ end=/\%'. (len(g:startify_header) + 2) .'l/'
if exists('g:startify_custom_footer')
execute 'syntax region StartifyFooter start=/\%'. startify#get_lastline() .'l/ end=/*/'
execute 'syntax region StartifyFooter start=/\%'. startify#get_lastline() .'l/ end=/\_.*/'
endif
if exists('b:startify.section_header_lines')