diff options
| author | Damian Tarnawski <gthetarnav@gmail.com> | 2023-10-10 20:32:37 +0200 |
|---|---|---|
| committer | Damian Tarnawski <gthetarnav@gmail.com> | 2023-10-10 20:32:37 +0200 |
| commit | f7446c0195e08e657c6190f196e78402b52d7092 (patch) | |
| tree | f54f010618c1e602656dd0ca1b2a2781e1c16777 /editors | |
| parent | 3ff362f886242345a3c0d58db529825e419bf5d0 (diff) | |
Actually include all strings to proc definition
Diffstat (limited to 'editors')
| -rw-r--r-- | editors/vscode/syntaxes/odin.tmLanguage.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/vscode/syntaxes/odin.tmLanguage.json b/editors/vscode/syntaxes/odin.tmLanguage.json index 4a8f036..c52d589 100644 --- a/editors/vscode/syntaxes/odin.tmLanguage.json +++ b/editors/vscode/syntaxes/odin.tmLanguage.json @@ -81,7 +81,7 @@ "beginCaptures": { "1": { "name": "storage.type.function.odin" } }, "end": "(?=^|\\)|,|;)|(?<=})", "patterns": [ - { "include": "#strings-quoted-double" }, + { "include": "#strings" }, { "include": "#comments" }, { "include": "#procedure-parameters" }, { "include": "#procedure-return-type" }, |