diff options
Diffstat (limited to 'src/search.zig')
| -rw-r--r-- | src/search.zig | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/search.zig b/src/search.zig index 557b030..321f948 100644 --- a/src/search.zig +++ b/src/search.zig | |||
| @@ -1,11 +1,12 @@ | |||
| 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 Editor = @import("Editor.zig"); | 7 | const Editor = es.Editor; |
| 7 | const Highlight = @import("highlight.zig").Highlight; | 8 | const Highlight = es.Highlight; |
| 8 | const Key = @import("key.zig").Key; | 9 | const Key = es.Key; |
| 9 | 10 | ||
| 10 | const CallbackData = struct { | 11 | const CallbackData = struct { |
| 11 | allocator: Allocator, | 12 | allocator: Allocator, |