Merge branch 'zig-0.14'

This commit is contained in:
CJ van den Berg 2025-09-11 09:52:16 +02:00
commit 789f049207
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 24 additions and 4 deletions

View file

@ -118,6 +118,14 @@ pub const fish = .{
.highlights = "tree-sitter-fish/queries/highlights.scm",
};
pub const @"fsharp" = .{
.description = "F#",
.color = 0x378bba,
.icon = "",
.extensions = .{"fs"},
.comment = "//",
};
pub const @"git-rebase" = .{
.description = "Git (rebase)",
.color = 0xf34f29,
@ -232,6 +240,16 @@ pub const kdl = .{
.comment = "//",
};
pub const commonlisp = .{
.description = "Lisp",
.color = 0xFFFFFF,
.icon = "",
.extensions = .{"lisp", "ls", "el"},
.comment = ";",
.highlights = "tree-sitter-scheme/queries/highlights.scm",
.parser = scheme.parser,
};
pub const lua = .{
.description = "Lua",
.color = 0x02027d,
@ -339,7 +357,6 @@ pub const odin = .{
.description = "Odin",
.extensions = .{"odin"},
.comment = "//",
.parser = @import("file_type.zig").Parser("odin"),
.injections = "tree-sitter-odin/queries/injections.scm",
};
@ -433,8 +450,9 @@ pub const rust = .{
pub const scheme = .{
.description = "Scheme",
.extensions = .{ "scm", "ss", "el" },
.extensions = .{ "scm", "ss" },
.comment = ";",
.parser = @import("file_type.zig").Parser("scheme"),
};
pub const sql = .{