summaryrefslogtreecommitdiff
path: root/src/Syntax
diff options
context:
space:
mode:
Diffstat (limited to 'src/Syntax')
-rw-r--r--src/Syntax/makefile.zig4
-rw-r--r--src/Syntax/zig.zig3
2 files changed, 5 insertions, 2 deletions
diff --git a/src/Syntax/makefile.zig b/src/Syntax/makefile.zig
index caf1317..5c93df4 100644
--- a/src/Syntax/makefile.zig
+++ b/src/Syntax/makefile.zig
@@ -1,6 +1,8 @@
1// zig fmt: off 1// zig fmt: off
2 2
3const Syntax = @import("../Syntax.zig"); 3const es = @import("root");
4
5const Syntax = es.Syntax;
4 6
5pub const syntax = Syntax{ 7pub const syntax = Syntax{
6 .name = "Makefile", 8 .name = "Makefile",
diff --git a/src/Syntax/zig.zig b/src/Syntax/zig.zig
index 9519c74..4826bfb 100644
--- a/src/Syntax/zig.zig
+++ b/src/Syntax/zig.zig
@@ -1,8 +1,9 @@
1// zig fmt: off 1// zig fmt: off
2 2
3const es = @import("root");
3const std = @import("std"); 4const std = @import("std");
4 5
5const Syntax = @import("../Syntax.zig"); 6const Syntax = es.Syntax;
6 7
7// TODO: Add support for the multiline string \\ 8// TODO: Add support for the multiline string \\
8pub const syntax = Syntax{ 9pub const syntax = Syntax{