Control the session with keyboard shortcuts
tools & sandbox
// what it does
Ctrl+L clears the screen, Ctrl+R starts a reverse search through your prompt history, and Ctrl+T toggles the full TODO list. Ctrl+C cancels the in-flight request and clears the input; press it again on an empty line, or Ctrl+D, to exit. Esc closes dialogs and suggestion popups.
// shortcut
Ctrl+L
Ctrl+R
Ctrl+T
Ctrl+C
Ctrl+D
Esc
// gotcha
A single Ctrl+C cancels the current turn rather than quitting — it takes a second press (or Ctrl+D on an empty prompt) to leave, which trips up people expecting one interrupt to kill the app. Ctrl+D only exits when the input line is empty; otherwise it deletes the character under the cursor.