diff --git a/index.ts b/index.ts index d855803..16845d4 100644 --- a/index.ts +++ b/index.ts @@ -625,7 +625,9 @@ export default function queueSteerExtension(pi: ExtensionAPI) { if (features.has(QUEUE_STEER_FEATURE)) return; const factory = ((tui, theme, keybindings) => { - const editor = previousFactory?.(tui, theme, keybindings) ?? new CustomEditor(tui, theme, keybindings); + const editor = previousFactory?.(tui, theme, keybindings) ?? new CustomEditor(tui, theme, keybindings, { + embedWorkingStatus: true, + }); installSubmitGuard(editor, ctx); const handleInput = editor.handleInput.bind(editor); const renderEditor = editor.render.bind(editor);