From 581a4d3bcc5d7877b358e465662d521de1aeaa9e Mon Sep 17 00:00:00 2001 From: Vanessa McHale Date: Mon, 26 Feb 2018 18:07:18 -0600 Subject: [PATCH] package publish --- syntax/ats.vim | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/syntax/ats.vim b/syntax/ats.vim index 0c2ec7f..0f869fa 100644 --- a/syntax/ats.vim +++ b/syntax/ats.vim @@ -8,9 +8,6 @@ if !exists('main_syntax') endif 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 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 lam llam fix raise of var val prval if then else syn keyword atsKeywordTwo case ifcase -syn region atsQualName start="\$" end="\." contains=atsIdentifier syn match atsKeyword "\v[\%\+\-\<\>\=!\:\~]+" @@ -48,6 +44,9 @@ syn region atsMacro start="#" end="\v$" contains=atsString syn keyword atsBool true false +syn match atsComment "\v^\/\/.*$" +syn region atsNestComment start="(\*" end="\*)" contains=atsNestComment,atsTodo,@Spell + highlight link atsBool Boolean highlight link atsKeywordTwo Include highlight link atsArrow Special