From 98c4b5a066bd682af1dd5c1acc2e21b278b5a8df Mon Sep 17 00:00:00 2001 From: bnjmn21 <68250874+bnjmn21@users.noreply.github.com> Date: Sat, 18 Jun 2022 22:38:48 +0200 Subject: [PATCH] Update spwn.tmLanguage.json updated flow control keywords so now "match" and "in" get highlighted instead of "switch", "case" and "has" --- syntaxes/spwn.tmLanguage.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/syntaxes/spwn.tmLanguage.json b/syntaxes/spwn.tmLanguage.json index 472f686..498f9b6 100644 --- a/syntaxes/spwn.tmLanguage.json +++ b/syntaxes/spwn.tmLanguage.json @@ -445,7 +445,7 @@ { "comment": "Flow control keywords", - "match": "\\b(else|for|if|return|error|extract|in|type|import|impl|break|continue|while|as|throw|switch|has|case|sync)\\b", + "match": "\\b(else|for|if|return|error|extract|in|type|import|impl|break|continue|while|as|throw|match|in|sync)\\b", "name": "keyword.control.spwn" } ] @@ -509,4 +509,4 @@ } } -} \ No newline at end of file +}