fix: variables highlight

This commit is contained in:
Artemy 2023-12-29 12:56:21 +03:00
parent b67e6f481d
commit 341938d55a
3 changed files with 6 additions and 2 deletions

View file

@ -6,6 +6,10 @@ All notable changes to the "symboscript-vs" extension will be documented in this
- Nothing
## [0.1.2] - 2023-12-29
- fix syntax highlighting (variables)
## [0.1.0] - 2023-12-29
- Initial release

View file

@ -2,7 +2,7 @@
"name": "symboscript-vs",
"displayName": "SymboScript-vs",
"description": "Official language support for SymboScrypt",
"version": "0.1.1",
"version": "0.1.2",
"publisher": "symboscript",
"license": "MIT",
"repository": {

View file

@ -197,7 +197,7 @@
{
"comment": "variables",
"name": "variable.other.symboscript",
"match": "[a-z][a-z0-9_]*",
"match": "[A-Za-z_][A-Za-z0-9_]*",
"captures": {
"1": {
"name": "constant.numeric.symboscript"