Set StartifySection via syntax file

This keeps it highlighted after 'set ft=startify' etc.

References #117.
This commit is contained in:
Daniel Hahler 2014-11-15 09:32:20 +01:00 committed by Marco Hinz
parent e964a581d0
commit 07e10a15a0
2 changed files with 12 additions and 11 deletions

View file

@ -33,7 +33,7 @@ let s:sep = startify#get_separator()
" Function: #get_lastline {{{1 " Function: #get_lastline {{{1
function! startify#get_lastline() abort function! startify#get_lastline() abort
return s:lastline return s:lastline + 1
endfunction endfunction
" Function: #insane_in_the_membrane {{{1 " Function: #insane_in_the_membrane {{{1
@ -51,7 +51,6 @@ function! startify#insane_in_the_membrane() abort
endif endif
enew enew
set filetype=startify
setlocal setlocal
\ bufhidden=wipe \ bufhidden=wipe
\ buftype=nofile \ buftype=nofile
@ -91,7 +90,7 @@ function! startify#insane_in_the_membrane() abort
echohl None echohl None
endif endif
let s:section_header_lines = [] let w:startify_section_header_lines = []
let s:lists = get(g:, 'startify_list_order', [ let s:lists = get(g:, 'startify_list_order', [
\ [' Last recently opened files:'], \ [' Last recently opened files:'],
\ 'files', \ 'files',
@ -114,10 +113,6 @@ function! startify#insane_in_the_membrane() abort
silent $delete _ silent $delete _
for item in s:section_header_lines
execute 'syntax region StartifySection start=/\%'. item .'l/ end=/$/'
endfor
if s:show_special if s:show_special
call append('$', ['', ' [q] <quit>']) call append('$', ['', ' [q] <quit>'])
endif endif
@ -155,6 +150,7 @@ function! startify#insane_in_the_membrane() abort
call cursor(s:firstline + (s:show_special ? 2 : 0), 5) call cursor(s:firstline + (s:show_special ? 2 : 0), 5)
autocmd startify CursorMoved <buffer> call s:set_cursor() autocmd startify CursorMoved <buffer> call s:set_cursor()
set filetype=startify
silent! doautocmd <nomodeline> User Startified silent! doautocmd <nomodeline> User Startified
endfunction endfunction
@ -492,7 +488,7 @@ function! s:set_cursor() abort
let movement = 2 * (s:newline > s:oldline) - 1 let movement = 2 * (s:newline > s:oldline) - 1
" skip section headers lines until an entry is found " 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 let s:newline += movement
endwhile endwhile
@ -650,7 +646,7 @@ function! s:print_section_header() abort
let curline = line('.') let curline = line('.')
for lnum in range(curline, curline + len(s:last_message) + 1) 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 endfor
call append('$', s:last_message + ['']) call append('$', s:last_message + [''])

View file

@ -32,8 +32,13 @@ if exists('g:startify_custom_header')
endif endif
if exists('g:startify_custom_footer') if exists('g:startify_custom_footer')
autocmd startify User Startified execute 'syntax region StartifyFooter start=/\%'. startify#get_lastline() .'l/ end=/*/'
\ execute 'syntax region StartifyFooter start=/\%'. (startify#get_lastline() + 1) .'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 endif
highlight default link StartifyBracket Delimiter highlight default link StartifyBracket Delimiter