feat: add command mode with :q quit support and tests

Co-authored-by: aider (deepseek/deepseek-coder) <aider@aider.chat>
This commit is contained in:
Loic Coenen
2026-05-01 15:23:00 +00:00
parent 68ec0abb99
commit efe51944a1
3 changed files with 194 additions and 0 deletions

3
tui.h
View File

@@ -12,4 +12,7 @@ void tui_run(Engine *engine);
// Cleanup TUI
void tui_cleanup(void);
// Handle command mode input (after pressing ':')
void tui_handle_command_mode(Engine *engine);
#endif // TUI_H