package publish
This commit is contained in:
parent
badc39d41b
commit
581a4d3bcc
1 changed files with 3 additions and 4 deletions
|
@ -8,9 +8,6 @@ if !exists('main_syntax')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
syn keyword atsTodo TODO FIXME contained
|
syn keyword atsTodo TODO FIXME contained
|
||||||
syn match atsComment "\v\/\/.*$"
|
|
||||||
syn region atsNestComment start="(\*" end="\*)" contains=atsNestComment,atsTodo,@Spell
|
|
||||||
|
|
||||||
syn match atsIdentifier "\v[a-zA-Z][a-zA-Z_0-9]*"
|
syn match atsIdentifier "\v[a-zA-Z][a-zA-Z_0-9]*"
|
||||||
|
|
||||||
syn match atsUint "\v[0-9]+u"
|
syn match atsUint "\v[0-9]+u"
|
||||||
|
@ -24,7 +21,6 @@ syn region atsString start=+"+ end=+"+ contains=atsSpecial
|
||||||
syn keyword atsKeyword staload dynload overload with fun symintr include fn fnx and prfun prfn
|
syn keyword atsKeyword staload dynload overload with fun symintr include fn fnx and prfun prfn
|
||||||
syn keyword atsKeyword lam llam fix raise of var val prval if then else
|
syn keyword atsKeyword lam llam fix raise of var val prval if then else
|
||||||
syn keyword atsKeywordTwo case ifcase
|
syn keyword atsKeywordTwo case ifcase
|
||||||
syn region atsQualName start="\$" end="\." contains=atsIdentifier
|
|
||||||
|
|
||||||
syn match atsKeyword "\v[\%\+\-\<\>\=!\:\~]+"
|
syn match atsKeyword "\v[\%\+\-\<\>\=!\:\~]+"
|
||||||
|
|
||||||
|
@ -48,6 +44,9 @@ syn region atsMacro start="#" end="\v$" contains=atsString
|
||||||
|
|
||||||
syn keyword atsBool true false
|
syn keyword atsBool true false
|
||||||
|
|
||||||
|
syn match atsComment "\v^\/\/.*$"
|
||||||
|
syn region atsNestComment start="(\*" end="\*)" contains=atsNestComment,atsTodo,@Spell
|
||||||
|
|
||||||
highlight link atsBool Boolean
|
highlight link atsBool Boolean
|
||||||
highlight link atsKeywordTwo Include
|
highlight link atsKeywordTwo Include
|
||||||
highlight link atsArrow Special
|
highlight link atsArrow Special
|
||||||
|
|
Loading…
Reference in a new issue