From 4f296fe4245d7d5146bbb67d6960acd10b09d12e Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Fri, 27 Apr 2018 10:55:55 +0200 Subject: [PATCH] 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 --- syntax/startify.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax/startify.vim b/syntax/startify.vim index 38a20ab..aa0e118 100644 --- a/syntax/startify.vim +++ b/syntax/startify.vim @@ -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')