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:
parent
c1a81780d5
commit
4f296fe424
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue