From 729c45c49ff70719393e5ee760227e52ad3aa360 Mon Sep 17 00:00:00 2001 From: Vanessa McHale Date: Mon, 26 Feb 2018 17:48:54 -0600 Subject: [PATCH] package publish --- syntax/ats.vim | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/syntax/ats.vim b/syntax/ats.vim index 6d2c2bd..8ba3076 100644 --- a/syntax/ats.vim +++ b/syntax/ats.vim @@ -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