mirror of
https://github.com/akelge/zsh
synced 2025-08-15 14:28:35 +00:00
Moved to Vundle
Adopted vim-templates plugin, instead of homegrown skeleton
This commit is contained in:
19
vim/bundle/vim-template/syntax/vim-template.vim
Normal file
19
vim/bundle/vim-template/syntax/vim-template.vim
Normal file
@ -0,0 +1,19 @@
|
||||
" vim-template syntax file
|
||||
" Language: vim-template
|
||||
" Maintainer: Stephen Chandler Paul <thatslyude@gmail.com>
|
||||
" Last Change: 2014 April 21
|
||||
|
||||
if exists("b:current_syntax")
|
||||
finish
|
||||
endif
|
||||
|
||||
if b:vim_template_subtype != ""
|
||||
execute "runtime! syntax/" . b:vim_template_subtype . ".vim"
|
||||
unlet b:current_syntax
|
||||
endif
|
||||
|
||||
syn match vimtemplateVariable "%\%(DAY\|YEAR\|MONTH\|DATE\|TIME\|FILE\|FFILE\|EXT\|MAIL\|USER\|HOST\|GUARD\|CLASS\|MACROCLASS\|CAMELCLASS\|HERE\)%" containedin=ALL
|
||||
|
||||
let b:current_syntax = "vim-template"
|
||||
|
||||
hi def link vimtemplateVariable Constant
|
Reference in New Issue
Block a user