terminal: scrolling

This commit is contained in:
Mitchell Hashimoto
2022-04-28 21:18:27 -07:00
parent 79d2474aae
commit cbd6505d25
3 changed files with 40 additions and 3 deletions

11
src/terminal/main.zig Normal file
View File

@@ -0,0 +1,11 @@
pub const Terminal = @import("Terminal.zig");
// Not exported because they're just used for tests.
test {
_ = Terminal;
_ = @import("parse_table.zig");
_ = @import("Parser.zig");
_ = @import("Tabstops.zig");
}