1
0
Fork 0

add attributes

master
an 2019-09-16 20:20:27 -04:00
commit 5629a2ce59
1 arquivos alterados com 19 adições e 17 exclusões

Ver arquivo

@ -12,7 +12,8 @@ syn keyword qcTodo contained TODO FIXME XXX
syn keyword qcQuaked contained QUAKED
syn keyword qcType void float vector string entity
syn keyword qcStorageClass local var const
syn keyword qcStorageClass local var const noref static
syn keyword qcAttribute noreturn inline eraseable noerase accumulate last alias deprecated coverage
syn keyword qcConstant TRUE FALSE
@ -34,24 +35,25 @@ syn region qcComment start="/\*" end="\*/" contains=@qcCommentGroup,@Spell
syn sync ccomment qcComment minlines=10
hi def link qcLineComment qcComment
hi def link qcAttribute qcStorageClass
hi def link qcBuiltin PreProc
hi def link qcComment Comment
hi def link qcConditional Conditional
hi def link qcRepeat Repeat
hi def link qcString String
hi def link qcSpecial SpecialChar
hi def link qcNumber Number
hi def link qcVector String
hi def link qcFrame Number
hi def link qcBuiltin PreProc
hi def link qcPragma PreProc
hi def link qcType Type
hi def link qcStorageClass StorageClass
hi def link qcStatement Statement
hi def link qcConstant Constant
hi def link qcTodo Todo
hi def link qcQuaked Label
hi def link qcLabel Label
hi def link qcFrame Number
hi def link qcLabel Label
hi def link qcLineComment qcComment
hi def link qcNumber Number
hi def link qcPragma PreProc
hi def link qcQuaked Label
hi def link qcRepeat Repeat
hi def link qcSpecial SpecialChar
hi def link qcStatement Statement
hi def link qcStorageClass StorageClass
hi def link qcString String
hi def link qcStructure Structure
hi def link qcTodo Todo
hi def link qcType Type
hi def link qcVector String
let b:current_syntax = "quakec"