feat: add asm file type

This commit is contained in:
CJ van den Berg 2026-02-16 21:38:24 +01:00
parent 5c8b804def
commit 880eac1a7e
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 16 additions and 4 deletions

View file

@ -7,6 +7,15 @@ pub const agda = .{
.comment = "--",
};
pub const @"asm" = .{
.description = "Assembly (asm)",
.icon = "",
.extensions = .{ "s", "asm", "assembly" },
.comment = "#",
.highlights = "tree-sitter-asm/queries/asm/highlights.scm",
.injections = "tree-sitter-asm/queries/asm/injections.scm",
};
pub const astro = .{
.description = "Astro",
.icon = "",
@ -342,8 +351,9 @@ pub const @"markdown-inline" = .{
};
pub const nasm = .{
.description = "Assembly Language (nasm)",
.extensions = .{ "asm", "nasm" },
.description = "Assembly (nasm)",
.icon = "",
.extensions = .{ "nasm" },
.comment = "#",
.injections = "tree-sitter-nasm/queries/injections.scm",
};