From 07e10a15a02a6617e904970e4e250f980735b8f0 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Sat, 15 Nov 2014 09:32:20 +0100 Subject: [PATCH] Set StartifySection via syntax file This keeps it highlighted after 'set ft=startify' etc. References #117. --- autoload/startify.vim | 14 +++++--------- syntax/startify.vim | 9 +++++++-- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index f16744b..82b6732 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -33,7 +33,7 @@ let s:sep = startify#get_separator() " Function: #get_lastline {{{1 function! startify#get_lastline() abort - return s:lastline + return s:lastline + 1 endfunction " Function: #insane_in_the_membrane {{{1 @@ -51,7 +51,6 @@ function! startify#insane_in_the_membrane() abort endif enew - set filetype=startify setlocal \ bufhidden=wipe \ buftype=nofile @@ -91,7 +90,7 @@ function! startify#insane_in_the_membrane() abort echohl None endif - let s:section_header_lines = [] + let w:startify_section_header_lines = [] let s:lists = get(g:, 'startify_list_order', [ \ [' Last recently opened files:'], \ 'files', @@ -114,10 +113,6 @@ function! startify#insane_in_the_membrane() abort silent $delete _ - for item in s:section_header_lines - execute 'syntax region StartifySection start=/\%'. item .'l/ end=/$/' - endfor - if s:show_special call append('$', ['', ' [q] ']) endif @@ -155,6 +150,7 @@ function! startify#insane_in_the_membrane() abort call cursor(s:firstline + (s:show_special ? 2 : 0), 5) autocmd startify CursorMoved call s:set_cursor() + set filetype=startify silent! doautocmd User Startified endfunction @@ -492,7 +488,7 @@ function! s:set_cursor() abort let movement = 2 * (s:newline > s:oldline) - 1 " skip section headers lines until an entry is found - while index(s:section_header_lines, s:newline) != -1 + while index(w:startify_section_header_lines, s:newline) != -1 let s:newline += movement endwhile @@ -650,7 +646,7 @@ function! s:print_section_header() abort let curline = line('.') for lnum in range(curline, curline + len(s:last_message) + 1) - call add(s:section_header_lines, lnum) + call add(w:startify_section_header_lines, lnum) endfor call append('$', s:last_message + ['']) diff --git a/syntax/startify.vim b/syntax/startify.vim index 65edf69..df9d6fc 100644 --- a/syntax/startify.vim +++ b/syntax/startify.vim @@ -32,8 +32,13 @@ if exists('g:startify_custom_header') endif if exists('g:startify_custom_footer') - autocmd startify User Startified - \ execute 'syntax region StartifyFooter start=/\%'. (startify#get_lastline() + 1) .'l/ end=/*/' + execute 'syntax region StartifyFooter start=/\%'. startify#get_lastline() .'l/ end=/*/' +endif + +if exists('w:startify_section_header_lines') + for line in w:startify_section_header_lines + execute 'syntax region StartifySection start=/\%'. line .'l/ end=/$/' + endfor endif highlight default link StartifyBracket Delimiter