mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-21 15:01:26 +00:00
parent
7868b25a2b
commit
0f0c54b812
2 changed files with 2 additions and 1 deletions
|
|
@ -24,6 +24,7 @@
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Auto-retry now handles "terminated" errors from Codex API mid-stream failures
|
- 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
|
## [0.49.3] - 2026-01-22
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2246,7 +2246,7 @@ export class InteractiveMode {
|
||||||
}
|
}
|
||||||
|
|
||||||
private async handleFollowUp(): Promise<void> {
|
private async handleFollowUp(): Promise<void> {
|
||||||
const text = this.editor.getText().trim();
|
const text = (this.editor.getExpandedText?.() ?? this.editor.getText()).trim();
|
||||||
if (!text) return;
|
if (!text) return;
|
||||||
|
|
||||||
// Queue input during compaction (extension commands execute immediately)
|
// Queue input during compaction (extension commands execute immediately)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue