20 lines
666 B
VimL
20 lines
666 B
VimL
if exists("b:current_syntax")
|
|
finish
|
|
endif
|
|
|
|
syn keyword brmKeyMandatory nick name mail phone
|
|
syn keyword brmKeyOptional born
|
|
syn keyword brmKeyMulti card desfire
|
|
syn keyword brmKeyExistence joined destroyed
|
|
syn keyword brmKeyMarkers studentstart studentstop suspendstart suspendstop chairstart chairstop councilstart councilstop revisionstart revisionstop grantstart grantstop
|
|
|
|
syn region brmComment start="#" end="\n"
|
|
|
|
hi def link brmKeyMandatory Identifier
|
|
hi def link brmComment Comment
|
|
hi def link brmKeyExistence Constant
|
|
hi def link brmKeyOptional Conditional
|
|
hi def link brmKeyMulti Type
|
|
hi def link brmKeyMarkers Special
|
|
|
|
let b:current_syntax = "brmember"
|