From 3223a3ebcda612d99d0265f64c73851715724206 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edvard=20Th=C3=B6rnros?= Date: Wed, 20 Aug 2025 08:44:19 +0200 Subject: [PATCH] `--|` should be highlighted correctly --- syntax/purescript.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax/purescript.vim b/syntax/purescript.vim index b01580c..c353596 100644 --- a/syntax/purescript.vim +++ b/syntax/purescript.vim @@ -158,7 +158,7 @@ syn region purescriptString start=+"+ skip=+\\\\\|\\"+ end=+"+ contains=@Spell syn region purescriptMultilineString start=+'"'+ end=+'"'+ fold contains=@Spell " Comment -syn match purescriptLineComment "---*\([^-!#$%&\*\+./<=>\?@\\^|~].*\)\?$" contains=purescriptCommentTodo,@Spell +syn match purescriptLineComment "---*\([^-!#$%&\*\+./<=>\?@\\^~].*\)\?$" contains=purescriptCommentTodo,@Spell syn region purescriptBlockComment start="{-" end="-}" fold \ contains=purescriptBlockComment,@Spell syn cluster purescriptComment contains=purescriptLineComment,purescriptBlockComment,@Spell