aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorDaniel Gavin <danielgavin5@hotmail.com>2022-10-23 15:45:01 +0200
committerDaniel Gavin <danielgavin5@hotmail.com>2022-10-23 15:45:01 +0200
commitfe4d819a865b92118584ee5fbc0609e59ad8b2fb (patch)
treebcc70af39409493857f168892479b8c6497954df /editors
parentb7f489b4215b922a40fa88417e1ed777a2690a49 (diff)
Try to use recursion map on pointers to prevent stackoverflow crashes
Diffstat (limited to 'editors')
-rw-r--r--editors/vscode/package.json2
-rw-r--r--editors/vscode/syntaxes/odin.tmLanguage.json2
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",