feat: add objc file type

This commit is contained in:
CJ van den Berg 2026-02-15 20:21:51 +01:00
parent 837844220c
commit 740fe75707
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 17 additions and 2 deletions

View file

@ -400,6 +400,19 @@ pub const nu = .{
.injections = "tree-sitter-nu/queries/nu/injections.scm",
};
pub const objc = .{
.description = "Objective-C",
.color = 0xE95325,
.icon = "",
.extensions = .{ "m", "objc" },
.comment = "//",
.highlights_list = .{
"tree-sitter-c/queries/highlights.scm",
"tree-sitter-objc/queries/highlights.scm",
},
.injections = "tree-sitter-objc/queries/injections.scm",
};
pub const ocaml = .{
.description = "OCaml",
.color = 0xF18803,