diff options
| author | 2022-01-02 00:17:47 +0200 | |
|---|---|---|
| committer | 2022-01-02 00:17:47 +0200 | |
| commit | bd3101517b7b2d0d81f2014eb3c2613e82b25def (patch) | |
| tree | 72cffbbcdc2be0f22987e1a4cb20892fbc3db052 /src/search.zig | |
| parent | changes (diff) | |
| download | es-bd3101517b7b2d0d81f2014eb3c2613e82b25def.tar.gz es-bd3101517b7b2d0d81f2014eb3c2613e82b25def.tar.xz es-bd3101517b7b2d0d81f2014eb3c2613e82b25def.zip | |
hierarchy changes
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, |