Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down