mirror of https://github.com/Wilfred/difftastic/
Add Zig support
parent
be0afd1696
commit
7f2efa1af9
@ -0,0 +1,6 @@
|
||||
const std = @import("std");
|
||||
|
||||
pub fn main() void {
|
||||
std.debug.print("Hello, {s}!", .{"user"});
|
||||
std.debug.print("Hello, again!", .{});
|
||||
}
|
||||
@ -0,0 +1,5 @@
|
||||
const std = @import("std");
|
||||
|
||||
pub fn main() void {
|
||||
std.debug.print("Hello, {s}!", .{"world"});
|
||||
}
|
||||
@ -0,0 +1 @@
|
||||
../tree-sitter-zig/queries/highlights.scm
|
||||
@ -0,0 +1 @@
|
||||
tree-sitter-zig/src
|
||||
Loading…
Reference in New Issue