From 92e97c5f78a755cc504139fd72d32ca2c05444d5 Mon Sep 17 00:00:00 2001 From: Rhiannon Morris Date: Fri, 19 Jun 2020 16:48:11 +0200 Subject: [PATCH] Allow multiple %s at the start of a comment tbh comments are probably anything that doesn't happen to be a pragma but I'm leaving it like this --- syntax/beluga.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax/beluga.vim b/syntax/beluga.vim index e0a200b..6d392f1 100644 --- a/syntax/beluga.vim +++ b/syntax/beluga.vim @@ -11,7 +11,7 @@ hi def link belArrowEtc Function syn match belDelim /[()[\]{}.;,]\|\<\/\>\||-\@!\|<\|-\@/ hi def link belDelim Delimiter -syn match belComment /%\s.*$/ +syn match belComment /%\+\s.*$/ hi def link belComment Comment syn region belBlockComment start='%{' end='}%' contains=belBlockComment