From 049d889075ba3a5c729f2cc621cfe468e519fd09 Mon Sep 17 00:00:00 2001 From: Vinh Le Date: Wed, 9 Sep 2026 17:44:20 +1000 Subject: [PATCH] fix: keep the working spinner in the editor border --- index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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);