interruptTurn only flushed the in-flight streaming chunk (bufRef) to the transcript before calling idle(), which wiped segmentMessages and pendingSegmentTools. Every tool call and commentary line the agent had already emitted in the current turn disappeared the moment the user cancelled, even though that output is exactly what they want to keep when they hit Ctrl+C (quote from the blitz feedback: "everything was fine up until the point where you wanted to push to main"). Append each flushed segment message to the transcript first, then render the in-flight partial with the `*[interrupted]*` marker and its pendingSegmentTools. Sys-level "interrupted" note still fires when there is nothing to preserve.
30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
TypeScript
import { isMac } from '../lib/platform.js'
|
|
|
|
const action = isMac ? 'Cmd' : 'Ctrl'
|
|
const paste = isMac ? 'Cmd' : 'Alt'
|
|
|
|
export const HOTKEYS: [string, string][] = [
|
|
...(isMac
|
|
? ([
|
|
['Cmd+C', 'copy selection'],
|
|
['Ctrl+C', 'interrupt / clear draft / exit']
|
|
] as [string, string][])
|
|
: ([['Ctrl+C', 'copy selection / interrupt / clear draft / exit']] as [string, string][])),
|
|
[action + '+D', 'exit'],
|
|
[action + '+G', 'open $EDITOR for prompt'],
|
|
[action + '+L', 'new session (clear)'],
|
|
[paste + '+V / /paste', 'paste text; /paste attaches clipboard image'],
|
|
['Tab', 'apply completion'],
|
|
['↑/↓', 'completions / queue edit / history'],
|
|
[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 + '+←/→', 'jump word'],
|
|
['Home/End', 'start / end of line'],
|
|
['Shift+Enter / Alt+Enter', 'insert newline'],
|
|
['\\+Enter', 'multi-line continuation (fallback)'],
|
|
['!cmd', 'run shell command'],
|
|
['{!cmd}', 'interpolate shell output inline']
|
|
]
|