Major update

- Add an IO system to hijack a bit of the terminal.
- Other minor fixes.
This commit is contained in:
2026-08-22 22:57:18 +01:00
parent 1f3b53753a
commit 3563324a1c
13 changed files with 621 additions and 43 deletions
+2 -1
View File
@@ -4,7 +4,8 @@
int main(int argc, char *argv[]) {
std::vector<std::string> args(argv, argv + argc);
try {
bed::BEd ed(args);
bed::internal::io::IO io = bed::internal::io::IO();
bed::BEd ed(args, io);
ed.run();
} catch (bed::fatal_error &e) {
if (e.code)