mirror of
https://github.com/SymboScript/symboscript-vs.git
synced 2025-02-22 04:13:18 +03:00
fix: async
This commit is contained in:
parent
341938d55a
commit
2bfeb03382
3 changed files with 10 additions and 2 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue