fix: don't clear loading animation when Ctrl+C clears editor

- Remove statusContainer.clear() from clearEditor()
- Loading animation should only be removed when agent finishes
- Ctrl+C once should only clear editor text, not status
This commit is contained in:
Mario Zechner 2025-11-12 22:23:21 +01:00
parent dea7067593
commit 2509add9bf

View file

@ -429,7 +429,6 @@ export class TuiRenderer {
clearEditor(): void {
this.editor.setText("");
this.statusContainer.clear();
this.ui.requestRender();
}