diff options
Diffstat (limited to 'src/Syntax.zig')
| -rw-r--r-- | src/Syntax.zig | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Syntax.zig b/src/Syntax.zig index ce3f432..f29c7fc 100644 --- a/src/Syntax.zig +++ b/src/Syntax.zig | |||
| @@ -5,7 +5,10 @@ const std = @import("std"); | |||
| 5 | 5 | ||
| 6 | const Syntax = @This(); | 6 | const Syntax = @This(); |
| 7 | 7 | ||
| 8 | pub const database = [_]Syntax{makefile.syntax, zig.syntax}; | 8 | pub const database = [_]Syntax{ |
| 9 | makefile.syntax, | ||
| 10 | zig.syntax, | ||
| 11 | }; | ||
| 9 | 12 | ||
| 10 | pub const Flags = struct { | 13 | pub const Flags = struct { |
| 11 | hl_numbers: bool = false, | 14 | hl_numbers: bool = false, |