add syn-match: StartifyFile
This commit is contained in:
parent
a5021aacdd
commit
4533f7f7e4
|
@ -183,11 +183,12 @@ Open the startify buffer.
|
||||||
You can overwrite the highlight groups used by startify. The plugins defines
|
You can overwrite the highlight groups used by startify. The plugins defines
|
||||||
these groups:
|
these groups:
|
||||||
|
|
||||||
startifyBracket [,]
|
StartifyBracket [,]
|
||||||
startifyNumber the numbers between []
|
StartifyFile the actual file
|
||||||
startifyPath the path to a file
|
StartifyNumber the numbers between []
|
||||||
startifySlash slashes in paths
|
StartifyPath the path to a file
|
||||||
startifySpecial <empty buffer>,<quit>
|
StartifySlash slashes in paths
|
||||||
|
StartifySpecial <empty buffer>,<quit>
|
||||||
|
|
||||||
Example: (my terminal emulator supports 256 colors)
|
Example: (my terminal emulator supports 256 colors)
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,7 @@ let s:sep = startify#get_sep()
|
||||||
syntax match StartifySpecial /\V<empty buffer>\|<quit>/
|
syntax match StartifySpecial /\V<empty buffer>\|<quit>/
|
||||||
syntax match StartifyBracket /\[\|\]/
|
syntax match StartifyBracket /\[\|\]/
|
||||||
syntax match StartifyNumber /\v\[[eq[:digit:]]+\]/hs=s+1,he=e-1 contains=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 StartifySlash /\'. s:sep .'/'
|
||||||
execute 'syntax match StartifyPath /\%9c.*\'. s:sep .'/ contains=StartifySlash'
|
execute 'syntax match StartifyPath /\%9c.*\'. s:sep .'/ contains=StartifySlash'
|
||||||
|
|
Loading…
Reference in a new issue