From da049df255947fdaef6f434c36bf4642ae970181 Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Sat, 3 May 2025 12:30:58 -0700 Subject: [PATCH] feat: drop support for `q` since we already support ctrl+d --- codex-rs/tui/src/chatwidget.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/codex-rs/tui/src/chatwidget.rs b/codex-rs/tui/src/chatwidget.rs index 06bf1bc8b4..70ada25777 100644 --- a/codex-rs/tui/src/chatwidget.rs +++ b/codex-rs/tui/src/chatwidget.rs @@ -149,12 +149,7 @@ impl ChatWidget<'_> { InputResult::Submitted(text) => { // Special client‑side commands start with a leading slash. let trimmed = text.trim(); - match trimmed { - "q" => { - // Gracefully request application shutdown. - let _ = self.app_event_tx.send(AppEvent::ExitRequest); - } "/clear" => { // Clear the current conversation history without exiting. self.conversation_history.clear();