@@ -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
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user