From 246f85ce975382c829756a0c92cb0be1eb3ff482 Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Sat, 2 May 2026 22:54:32 +0000 Subject: [PATCH] fix: add missing closing brace in handle_command_mode Co-authored-by: aider (deepseek/deepseek-coder) --- tui.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tui.c b/tui.c index 6e7dcd6..912d1d0 100644 --- a/tui.c +++ b/tui.c @@ -762,6 +762,7 @@ static bool handle_command_mode(void) { action.data.load_project.filename[sizeof(action.data.load_project.filename) - 1] = '\0'; g_dispatch(action); } + } nodelay(stdscr, prev_nodelay); return false;