Add StartifySelect highlight group

This commit is contained in:
Marco Hinz 2014-09-02 16:28:10 +02:00
parent 03de6ee94d
commit 236e3e9ea2
2 changed files with 32 additions and 20 deletions

View file

@ -484,24 +484,29 @@ COLORS *startify-colors*
You can overwrite the highlight groups used by startify. The plugin defines You can overwrite the highlight groups used by startify. The plugin defines
these groups: these groups:
StartifyBracket [,] Highlight group | Description | Default
StartifyFile the actual file ------------------------------------------------------------------
StartifyFooter the custom footer | |
StartifyHeader the custom header StartifyBracket | [,] | linked to Delimiter
StartifyNumber the numbers between [] StartifyFile | the actual file | <none>
StartifyPath the path to a file StartifyFooter | the custom footer | linked to Normal
StartifySection section headers StartifyHeader | the custom header | linked to Normal
StartifySlash slashes in paths StartifyNumber | the numbers between [] | linked to Number
StartifySpecial <empty buffer>,<quit> StartifyPath | the path to a file | <none>
StartifySection | section headers | linked to Special
StartifySelect | selected entries | linked to Title
StartifySlash | slashes in paths | <none>
StartifySpecial | <empty buffer>,<quit> | <none>
Example: (my terminal emulator supports 256 colors) Example: (my terminal emulator supports 256 colors)
> >
hi StartifyBracket ctermfg=240 highlight StartifyBracket ctermfg=240
hi StartifyFooter ctermfg=111 highlight StartifyFooter ctermfg=240
hi StartifyHeader ctermfg=203 highlight StartifyHeader ctermfg=114
hi StartifyNumber ctermfg=215 highlight StartifyNumber ctermfg=215
hi StartifyPath ctermfg=245 highlight StartifyPath ctermfg=245
hi StartifySlash ctermfg=240 highlight StartifySlash ctermfg=240
highlight StartifySpecial ctermfg=240
< <
============================================================================== ==============================================================================
FAQ *startify-faq* FAQ *startify-faq*

View file

@ -13,10 +13,16 @@ let s:sep = startify#get_separator()
syntax sync fromstart syntax sync fromstart
syntax match StartifyBracket /.*\%9c/ contains=
\ StartifyNumber,
\ StartifySelect,
syntax match StartifySpecial /\V<empty buffer>\|<quit>/ syntax match StartifySpecial /\V<empty buffer>\|<quit>/
syntax match StartifyBracket /.*\%9c/ contains=StartifyNumber syntax match StartifyNumber /^\s*\[\zs[^BSVT]*\ze\]/
syntax match StartifyNumber /^\s*\zs[^BSVT]*\]\ze\s/hs=s+1,he=e-1 syntax match StartifySelect /^\s*\[\zs[BSVT]*\ze\]/
syntax match StartifyFile /.*/ contains=StartifyBracket,StartifyNumber,StartifyPath,StartifySpecial syntax match StartifyFile /.*/ contains=
\ StartifyBracket,
\ StartifyPath,
\ StartifySpecial,
execute 'syntax match StartifySlash /\'. s:sep .'/' execute 'syntax match StartifySlash /\'. s:sep .'/'
execute 'syntax match StartifyPath /\%9c.*\'. s:sep .'/ contains=StartifySlash' execute 'syntax match StartifyPath /\%9c.*\'. s:sep .'/ contains=StartifySlash'
@ -31,10 +37,11 @@ if exists('g:startify_custom_footer')
\ autocmd! startify User \ autocmd! startify User
endif endif
highlight default link StartifyHeader Normal
highlight default link StartifyFooter Normal
highlight default link StartifyBracket Delimiter highlight default link StartifyBracket Delimiter
highlight default link StartifyFooter Normal
highlight default link StartifyHeader Normal
highlight default link StartifyNumber Number highlight default link StartifyNumber Number
highlight default link StartifySection Special highlight default link StartifySection Special
highlight default link StartifySelect Title
let b:current_syntax = 'startify' let b:current_syntax = 'startify'