aboutsummaryrefslogtreecommitdiff
path: root/editors/vscode/syntaxes
diff options
context:
space:
mode:
authorDaniel Gavin <danielgavin5@hotmail.com>2022-10-27 16:21:12 +0200
committerDaniel Gavin <danielgavin5@hotmail.com>2022-10-27 16:21:12 +0200
commit601a1a447aee462575c8de91677991750cb612e5 (patch)
tree03e36f3406331675454b7069a0126c88e193ebba /editors/vscode/syntaxes
parent42a1ceac0e9a080e11fa94d153c0dc5f3e24738b (diff)
Add support for matrix types
Diffstat (limited to 'editors/vscode/syntaxes')
-rw-r--r--editors/vscode/syntaxes/odin.tmLanguage.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/vscode/syntaxes/odin.tmLanguage.json b/editors/vscode/syntaxes/odin.tmLanguage.json
index a3d2cf3..90c5bd8 100644
--- a/editors/vscode/syntaxes/odin.tmLanguage.json
+++ b/editors/vscode/syntaxes/odin.tmLanguage.json
@@ -126,7 +126,7 @@
},
{
"name": "storage.type.odin",
- "match": "\\b(struct|enum|union|map|set|bit_set|typeid)\\b"
+ "match": "\\b(struct|enum|union|map|set|bit_set|typeid|matrix)\\b"
},
{
"name": "keyword.function.odin",
@@ -267,7 +267,7 @@
},
{
"name": "support.type.odin",
- "match": "\\b((f16|f32|f64)|(complex32|complex64|complex128))\\b"
+ "match": "\\b((f16|f32|f64)|(complex32|complex64|complex128)|(quaternion64|quaternion128|quaternion256))\\b"
},
{
"name": "support.type.odin",