package publish

This commit is contained in:
Vanessa McHale 2018-02-26 17:48:54 -06:00
parent 19152f2175
commit 729c45c49f
1 changed files with 6 additions and 4 deletions

View File

@ -22,8 +22,9 @@ syn match atsSpecial -\v\\[0-9]+-
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 lam llam fix raise of var val prval case ifcase
syn match atsOperator "\$"
syn keyword atsKeyword lam llam fix raise of var val prval
syn keyword atsKeywordTwo case ifcase if then else
syn region atsQualName start="\$" end="\." contains=atsIdentifier
syn match atsKeyword "\v[\%\+\-\<\>\=!]+"
@ -39,11 +40,12 @@ syn keyword atsType implement primplmnt extern
syn match atsParens "[()]"
syn match atsOperator "\v[@\[\]]"
syn match atsOperator "\v\@"
syn match atsMacro "\v\#.*$"
highlight link atsParens Underlined
highlight link atsKeywordTwo Include
highlight link atsQualName Include
highlight link atsArrow Special
highlight link atsFixity Underlined
highlight link atsOperator Special