From ddbcebb3d6efdac2a8179a66688f1baf0339772f Mon Sep 17 00:00:00 2001 From: Piotr Fusik Date: Thu, 4 Apr 2024 09:53:44 +0200 Subject: [PATCH] [vscode] Highlight `is`. #64 --- editors/vscode/syntaxes/fusion.tmLanguage.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/editors/vscode/syntaxes/fusion.tmLanguage.json b/editors/vscode/syntaxes/fusion.tmLanguage.json index fd9c28c2..5c77985f 100644 --- a/editors/vscode/syntaxes/fusion.tmLanguage.json +++ b/editors/vscode/syntaxes/fusion.tmLanguage.json @@ -1075,6 +1075,10 @@ { "name": "keyword.operator.arithmetic.fu", "match": "[-+*/%]" + }, + { + "name": "keyword.operator.expression.pattern.is.fu", + "match": "\\bis\\b" } ] },