From 6d5b3e2520d7b935bdda4d941c37cd3d0efab24b Mon Sep 17 00:00:00 2001 From: Brooklyn Nicholson Date: Thu, 30 Jul 2026 04:27:44 -0500 Subject: [PATCH] docs(tui): list Esc Esc in the hotkey panel; correct the Ctrl+U/K wording The kills are line-scoped now, so "delete to start / end" overstated them. --- ui-tui/src/content/hotkeys.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui-tui/src/content/hotkeys.ts b/ui-tui/src/content/hotkeys.ts index c1a4553a49d..273700114c0 100644 --- a/ui-tui/src/content/hotkeys.ts +++ b/ui-tui/src/content/hotkeys.ts @@ -21,13 +21,14 @@ export const HOTKEYS: [string, string][] = [ [action + '+G / Alt+G', 'open $EDITOR (Alt+G fallback for VSCode/Cursor)'], [action + '+L', 'redraw / repaint'], [paste + '+V / /paste', 'paste text; /paste attaches clipboard image'], + ['Esc Esc', 'discard draft (recall with ↑)'], ['Tab', 'apply completion'], ['↑/↓', 'completions / queue edit / history'], ['Ctrl+X', 'open live session switcher (deletes queued message while editing)'], [action + '+A/E', 'home / end of line'], [action + '+Z / ' + action + '+Y', 'undo / redo input edits'], [action + '+W', 'delete word'], - [action + '+U/K', 'delete to start / end'], + [action + '+U/K', 'kill to line start / end (repeat across lines)'], [action + '+←/→', 'jump word'], ['Home/End', 'start / end of line'], ['Shift+Enter / Alt+Enter', 'insert newline'],