diff options
| author | dozn <16659513+dozn@users.noreply.github.com> | 2024-12-27 14:40:47 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-27 14:40:47 -0800 |
| commit | 4bcde79b9d703576cd47910f4f9351c31a53ff86 (patch) | |
| tree | e541a185358099d665fbc3d0b243c2d9a52796a0 /editors | |
| parent | 8520e3940dac797d195a509b8c27c192f9b1ba3b (diff) | |
Added new_clone, free, and free_all to odin.tmLanguage.json
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 c47b964..c5fa8ba 100644 --- a/editors/vscode/syntaxes/odin.tmLanguage.json +++ b/editors/vscode/syntaxes/odin.tmLanguage.json @@ -336,7 +336,7 @@ }, { "name": "meta.function-call.odin", - "begin": "\\b(len|cap|offset_of_selector|offset_of_member|offset_of|offset_of_by_string|type_of|type_info_of|typeid_of|swizzle|complex|quaternion|real|imag|jmag|kmag|conj|expand_values|min|max|abs|clamp|soa_zip|soa_unzip|make|new|resize|reserve|append|delete|assert|panic)\\b\\s*(\\()", + "begin": "\\b(len|cap|offset_of_selector|offset_of_member|offset_of|offset_of_by_string|type_of|type_info_of|typeid_of|swizzle|complex|quaternion|real|imag|jmag|kmag|conj|expand_values|min|max|abs|clamp|soa_zip|soa_unzip|make|new|new_clone|resize|reserve|append|delete|free|free_all|assert|panic)\\b\\s*(\\()", "beginCaptures": { "1": { "name": "support.function.builtin.odin" }, "2": { "name": "meta.brace.round.odin" } |