From 2bfeb03382dee610e8edc1c6ab103f272fee6475 Mon Sep 17 00:00:00 2001 From: Artemy Date: Fri, 29 Dec 2023 14:18:15 +0300 Subject: [PATCH] fix: async --- CHANGELOG.md | 4 ++++ package.json | 2 +- syntaxes/symboscript.tmLanguage.json | 6 +++++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7e6546..64a202e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ All notable changes to the "symboscript-vs" extension will be documented in this - Nothing +## [0.1.3] - 2023-12-29 + +- fix syntax highlighting (async) + ## [0.1.2] - 2023-12-29 - fix syntax highlighting (variables) diff --git a/package.json b/package.json index 4e99e8b..b5a5a8c 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "symboscript-vs", "displayName": "SymboScript-vs", "description": "Official language support for SymboScrypt", - "version": "0.1.2", + "version": "0.1.3", "publisher": "symboscript", "license": "MIT", "repository": { diff --git a/syntaxes/symboscript.tmLanguage.json b/syntaxes/symboscript.tmLanguage.json index 1b9091d..5aca3e7 100644 --- a/syntaxes/symboscript.tmLanguage.json +++ b/syntaxes/symboscript.tmLanguage.json @@ -76,7 +76,7 @@ "patterns": [ { "name": "keyword.control.symboscript", - "match": "\\b(if|else|while|for|loop|return|yield|async|await|break|continue|in)\\b" + "match": "\\b(if|else|while|for|loop|return|yield|await|break|continue|in)\\b" }, { "name": "keyword.other.fn.symboscript", @@ -86,6 +86,10 @@ "name": "keyword.other.let.symboscript", "match": "\\b(let)\\b" }, + { + "name": "keyword.other.async.symboscript", + "match": "\\b(async)\\b" + }, { "name": "keyword.other.bool.symboscript", "match": "\\b(true|false)\\b"