feat: add awk file type
This commit is contained in:
parent
68932ba74b
commit
54cebe31e6
2 changed files with 8 additions and 0 deletions
|
@ -37,6 +37,7 @@ pub fn build(b: *std.Build) void {
|
|||
ts_queryfile(b, tree_sitter_dep, ts_bin_query_gen, "queries/cmake/highlights.scm");
|
||||
ts_queryfile(b, tree_sitter_dep, ts_bin_query_gen, "tree-sitter-agda/queries/highlights.scm");
|
||||
ts_queryfile(b, tree_sitter_dep, ts_bin_query_gen, "tree-sitter-astro/queries/highlights.scm");
|
||||
ts_queryfile(b, tree_sitter_dep, ts_bin_query_gen, "tree-sitter-awk/queries/highlights.scm");
|
||||
ts_queryfile(b, tree_sitter_dep, ts_bin_query_gen, "tree-sitter-bash/queries/highlights.scm");
|
||||
ts_queryfile(b, tree_sitter_dep, ts_bin_query_gen, "tree-sitter-c-sharp/queries/highlights.scm");
|
||||
ts_queryfile(b, tree_sitter_dep, ts_bin_query_gen, "tree-sitter-c/queries/highlights.scm");
|
||||
|
|
|
@ -14,6 +14,13 @@ pub const astro = .{
|
|||
.comment = "//",
|
||||
};
|
||||
|
||||
pub const awk = .{
|
||||
.description = "Awk",
|
||||
.icon = "",
|
||||
.extensions = .{"awk", "gawk"},
|
||||
.comment = "#",
|
||||
};
|
||||
|
||||
pub const bash = .{
|
||||
.description = "Bash",
|
||||
.color = 0x3e474a,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue