diff options
Diffstat (limited to 'src/Row.zig')
| -rw-r--r-- | src/Row.zig | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Row.zig b/src/Row.zig index a542160..38fb72b 100644 --- a/src/Row.zig +++ b/src/Row.zig | |||
| @@ -1,12 +1,13 @@ | |||
| 1 | const es = @import("root"); | ||
| 1 | const std = @import("std"); | 2 | const std = @import("std"); |
| 2 | 3 | ||
| 3 | const Allocator = std.mem.Allocator; | 4 | const Allocator = std.mem.Allocator; |
| 4 | const ArrayList = std.ArrayList; | 5 | const ArrayList = std.ArrayList; |
| 5 | const Buffer = @import("Buffer.zig"); | 6 | const Buffer = es.Buffer; |
| 6 | const Config = @import("Config.zig"); | 7 | const Config = es.Config; |
| 7 | const Highlight = @import("highlight.zig").Highlight; | 8 | const Highlight = es.Highlight; |
| 8 | const Row = @This(); | 9 | const Row = @This(); |
| 9 | const StringBuilder = @import("StringBuilder.zig"); | 10 | const StringBuilder = es.StringBuilder; |
| 10 | 11 | ||
| 11 | allocator: Allocator, | 12 | allocator: Allocator, |
| 12 | 13 | ||