mirror of
https://github.com/SymboScript/symboscript-vs.git
synced 2024-11-21 20:56:24 +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
|
- Nothing
|
||||||
|
|
||||||
|
## [0.1.2] - 2023-12-29
|
||||||
|
|
||||||
|
- fix syntax highlighting (variables)
|
||||||
|
|
||||||
## [0.1.0] - 2023-12-29
|
## [0.1.0] - 2023-12-29
|
||||||
|
|
||||||
- Initial release
|
- Initial release
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "symboscript-vs",
|
"name": "symboscript-vs",
|
||||||
"displayName": "SymboScript-vs",
|
"displayName": "SymboScript-vs",
|
||||||
"description": "Official language support for SymboScrypt",
|
"description": "Official language support for SymboScrypt",
|
||||||
"version": "0.1.1",
|
"version": "0.1.2",
|
||||||
"publisher": "symboscript",
|
"publisher": "symboscript",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
|
@ -197,7 +197,7 @@
|
||||||
{
|
{
|
||||||
"comment": "variables",
|
"comment": "variables",
|
||||||
"name": "variable.other.symboscript",
|
"name": "variable.other.symboscript",
|
||||||
"match": "[a-z][a-z0-9_]*",
|
"match": "[A-Za-z_][A-Za-z0-9_]*",
|
||||||
"captures": {
|
"captures": {
|
||||||
"1": {
|
"1": {
|
||||||
"name": "constant.numeric.symboscript"
|
"name": "constant.numeric.symboscript"
|
||||||
|
|
Loading…
Add table
Reference in a new issue