From 4533f7f7e4b21818ec6d788fdb6207132828553b Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Tue, 30 Apr 2013 00:35:16 +0200 Subject: [PATCH] add syn-match: StartifyFile --- doc/startify.txt | 11 ++++++----- syntax/startify.vim | 1 + 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/doc/startify.txt b/doc/startify.txt index 848480f..2323dbe 100644 --- a/doc/startify.txt +++ b/doc/startify.txt @@ -183,11 +183,12 @@ Open the startify buffer. You can overwrite the highlight groups used by startify. The plugins defines these groups: - startifyBracket [,] - startifyNumber the numbers between [] - startifyPath the path to a file - startifySlash slashes in paths - startifySpecial , + StartifyBracket [,] + StartifyFile the actual file + StartifyNumber the numbers between [] + StartifyPath the path to a file + StartifySlash slashes in paths + StartifySpecial , Example: (my terminal emulator supports 256 colors) diff --git a/syntax/startify.vim b/syntax/startify.vim index 40a940e..d231c53 100644 --- a/syntax/startify.vim +++ b/syntax/startify.vim @@ -12,6 +12,7 @@ let s:sep = startify#get_sep() syntax match StartifySpecial /\V\|/ syntax match StartifyBracket /\[\|\]/ syntax match StartifyNumber /\v\[[eq[:digit:]]+\]/hs=s+1,he=e-1 contains=StartifyBracket +syntax match StartifyFile /.*/ contains=StartifyBracket,StartifyNumber,StartifyPath,StartifySpecial execute 'syntax match StartifySlash /\'. s:sep .'/' execute 'syntax match StartifyPath /\%9c.*\'. s:sep .'/ contains=StartifySlash'