Skip to content

Commit

Permalink
Remove non-reserved keywords.
Browse files Browse the repository at this point in the history
  • Loading branch information
schungx committed Oct 31, 2021
1 parent 50e7a0c commit 078a104
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"displayName": "Rhai Language Support",
"description": "Syntax highlighting for Rhai scripts",
"publisher": "rhaiscript",
"version": "0.6.3",
"version": "0.6.4",
"icon": "assets/icon.png",
"homepage": "https://rhai.rs",
"bugs": {
Expand Down Expand Up @@ -107,4 +107,4 @@
"tslint": "^6.0.0",
"typescript": "^3.8.2"
}
}
}
2 changes: 1 addition & 1 deletion syntax/rhai.YAML-tmLanguage
Original file line number Diff line number Diff line change
Expand Up @@ -508,4 +508,4 @@ repository:
- name: support.function.rhai
match: \b(print|debug|call|curry|eval|type_of|is_def_var|is_def_fn|is_shared)\b
- name: invalid.illegal.keyword.rhai
match: \b(var|static|begin|end|shared|each|then|goto|exit|unless|match|case|public|protected|new|use|with|module|package|super|thread|spawn|go|await|async|sync|yield|default|void|null|nil)\b
match: \b(var|static|shared|goto|exit|match|case|public|protected|new|use|with|module|package|super|thread|spawn|go|await|async|sync|yield|default|void|null|nil)\b
2 changes: 1 addition & 1 deletion syntax/rhai.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@
},
{
"name": "invalid.illegal.keyword.rhai",
"match": "\\b(var|static|begin|end|shared|each|then|goto|exit|unless|match|case|public|protected|new|use|with|module|package|super|thread|spawn|go|await|async|sync|yield|default|void|null|nil)\\b"
"match": "\\b(var|static|shared|goto|exit|match|case|public|protected|new|use|with|module|package|super|thread|spawn|go|await|async|sync|yield|default|void|null|nil)\\b"
}
]
}
Expand Down

0 comments on commit 078a104

Please sign in to comment.