fix(coding-agent): expand paste markers in follow-up queue

fixes #912
This commit is contained in:
Mario Zechner 2026-01-22 22:35:46 +01:00
parent 7868b25a2b
commit 0f0c54b812
2 changed files with 2 additions and 1 deletions

View file

@ -24,6 +24,7 @@
### Fixed
- Auto-retry now handles "terminated" errors from Codex API mid-stream failures
- Follow-up queue (Alt+Enter) now sends full paste content instead of `[paste #N ...]` markers ([#912](https://github.com/badlogic/pi-mono/issues/912))
## [0.49.3] - 2026-01-22

View file

@ -2246,7 +2246,7 @@ export class InteractiveMode {
}
private async handleFollowUp(): Promise<void> {
const text = this.editor.getText().trim();
const text = (this.editor.getExpandedText?.() ?? this.editor.getText()).trim();
if (!text) return;
// Queue input during compaction (extension commands execute immediately)