mirror of
https://github.com/SymboScript/symboscript-vs.git
synced 2024-11-05 21:33:58 +03:00
fix: variables highlight
This commit is contained in:
parent
b67e6f481d
commit
341938d55a
3 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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": {
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue