diff options
| author | Daniel Gavin <danielgavin5@hotmail.com> | 2022-10-23 15:45:01 +0200 |
|---|---|---|
| committer | Daniel Gavin <danielgavin5@hotmail.com> | 2022-10-23 15:45:01 +0200 |
| commit | fe4d819a865b92118584ee5fbc0609e59ad8b2fb (patch) | |
| tree | bcc70af39409493857f168892479b8c6497954df /editors | |
| parent | b7f489b4215b922a40fa88417e1ed777a2690a49 (diff) | |
Try to use recursion map on pointers to prevent stackoverflow crashes
Diffstat (limited to 'editors')
| -rw-r--r-- | editors/vscode/package.json | 2 | ||||
| -rw-r--r-- | editors/vscode/syntaxes/odin.tmLanguage.json | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/editors/vscode/package.json b/editors/vscode/package.json index a17b6a6..cf4fb6d 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -7,7 +7,7 @@ "type": "git", "url": "git://github.com/DanielGavin/ols.git" }, - "version": "0.1.4", + "version": "0.1.6", "engines": { "vscode": "^1.65.0" }, diff --git a/editors/vscode/syntaxes/odin.tmLanguage.json b/editors/vscode/syntaxes/odin.tmLanguage.json index d155e2d..a3d2cf3 100644 --- a/editors/vscode/syntaxes/odin.tmLanguage.json +++ b/editors/vscode/syntaxes/odin.tmLanguage.json @@ -90,7 +90,7 @@ }, { "name": "keyword.control.odin", - "match": "\\b(if|else|or_else|when|for|in|defer|switch|return|or_return)\\b" + "match": "\\b(if|else|or_else|when|for|in|not_in|defer|switch|return|or_return)\\b" }, { "name": "keyword.control.odin", |