From 8b8d2f80a5cbbdf9b9382a8950308432053babb4 Mon Sep 17 00:00:00 2001 From: Vanessa McHale Date: Wed, 28 Feb 2018 19:50:06 -0600 Subject: [PATCH] package publish --- syntax/ats.vim | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/syntax/ats.vim b/syntax/ats.vim index d7edfc3..4699367 100644 --- a/syntax/ats.vim +++ b/syntax/ats.vim @@ -46,7 +46,8 @@ syn region atsMacro start="\v^#" end="\v$" contains=atsString syn keyword atsBool true false syn match atsComment "\v\/\/.*$" contains=atsTodo,@Spell -syn region atsNestComment start="(\*" end="\*)" contains=atsNestComment,atsTodo,@Spell +syn region atsNestComment start="/\*" end="\*/" contains=atsNestComment,atsTodo,@Spell +syn region atsNestParenComment start="(\*" end="\*)" contains=atsTodo,@Spell,atsNestParenComment syntax match logicalAnd '&&' conceal cchar=∧ syntax match leq '<=' conceal cchar=≤ @@ -70,6 +71,7 @@ highlight link atsInt Number highlight link atsChar Character highlight link atsComment Comment highlight link atsNestComment Comment +highlight link atsNestParenComment Comment highlight link atsKeyword Keyword highlight link atsType Type highlight link atsIdentifier Identifier