Skip to content

Commit 6f7829f

Browse files
committed
VERSION 1.5.1
Fixed some errors with Enums
1 parent ec0c967 commit 6f7829f

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "GZDoom's ZScript scripting language support for VSCode",
55
"publisher": "kaptainmicila",
66
"icon": "icons/GZDoom.png",
7-
"version": "1.5.0",
7+
"version": "1.5.1",
88
"repository": {
99
"type": "git",
1010
"url": "https://github.com/KaptainMicila/ZScript-VSCode.git"

syntaxes/zscript.tmLanguage.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,21 @@
288288
{
289289
"name": "constant.enum.value.zscript",
290290
"match": "\\b\\w+?\\b"
291+
},
292+
{
293+
"include": "#punctuation"
294+
},
295+
{
296+
"include": "#comments"
297+
},
298+
{
299+
"include": "#keywords"
300+
},
301+
{
302+
"include": "#strings"
303+
},
304+
{
305+
"include": "#types"
291306
}
292307
]
293308
}

0 commit comments

Comments
 (0)