mirror of
https://shylinux.com/x/ContextOS
synced 2025-04-25 16:58:06 +08:00
14 lines
415 B
VimL
14 lines
415 B
VimL
syntax match Comment "#.*$"
|
|
syntax match Comment "\<Name: \"[^\"]*\""
|
|
syntax match Comment "\<Help: \"[^\"]*\""
|
|
|
|
highlight kitConst ctermfg=yellow
|
|
syntax match kitConst "\<kit\.[a-z0-9A-Z_.]*"
|
|
syntax match kitConst "\<app\.[a-z0-9A-Z_.]*"
|
|
|
|
highlight msgConst ctermfg=cyan
|
|
syntax match msgConst "\<m\.[a-z0-9A-Z_.]*"
|
|
syntax match msgConst "\<msg\.[a-z0-9A-Z_.]*"
|
|
syntax match msgConst "\<sub\.[a-z0-9A-Z_.]*"
|
|
|