chore: update deps

This commit is contained in:
Peter Steinberger
2026-01-20 12:58:49 +00:00
parent 759068304e
commit 6f9861bb9b
6 changed files with 412 additions and 481 deletions

View File

@@ -192,7 +192,8 @@ export async function runTui(opts: TuiOptions) {
const statusContainer = new Container();
const footer = new Text("", 1, 0);
const chatLog = new ChatLog();
const editor = new CustomEditor(editorTheme);
const tui = new TUI(new ProcessTerminal());
const editor = new CustomEditor(tui, editorTheme);
const root = new Container();
root.addChild(header);
root.addChild(chatLog);
@@ -212,7 +213,6 @@ export async function runTui(opts: TuiOptions) {
);
};
const tui = new TUI(new ProcessTerminal());
tui.addChild(root);
tui.setFocus(editor);