add set_mark() and open_buffers()

This commit is contained in:
Marco Hinz 2013-05-02 15:00:00 +02:00
parent eb406f3870
commit 134e983f9a
2 changed files with 66 additions and 13 deletions

View file

@ -9,16 +9,16 @@ endif
let s:sep = startify#get_separator()
syntax match StartifySpecial /\V<empty buffer>\|<quit>/
syntax match StartifyBracket /\[\|\]/
syntax match StartifyNumber /\v\[.+\]/hs=s+1,he=e-1 contains=StartifyBracket
syntax match StartifyFile /.*/ contains=StartifyBracket,StartifyNumber,StartifyPath,StartifySpecial
syntax match StartifySpecial /\V<empty buffer>\|<quit>/
syntax match StartifyBracket /\[\|\]/
syntax match StartifyNumber /\[[^BSV]\+\]/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'
highlight link StartifyBracket Delimiter
highlight link StartifyNumber Number
highlight link StartifyBracket Delimiter
highlight link StartifyNumber Number
let b:current_syntax = 'startify'