fix(tui): stop streaming markdown/code after message completes#13854
fix(tui): stop streaming markdown/code after message completes#13854mocksoul wants to merge 11 commits intoanomalyco:betafrom
Conversation
- Remove OPENCODE_EXPERIMENTAL_PLAN_MODE flag from flag.ts - Update prompt.ts to always use plan mode logic - Update registry.ts to always include plan tools in CLI - Remove flag documentation from cli.mdx
|
Thanks for your contribution! This PR doesn't have a linked issue. All PRs must reference an existing issue. Please:
See CONTRIBUTING.md for details. |
|
The following comment was made by an LLM, it may be inaccurate: Potential Duplicate Found:
Why related: This PR addresses the same issue — preventing the last table row from being truncated/skipped after streaming completes. Both PRs are fixing the same behavior where incomplete messages cause the last row to be dropped, and both likely involve adjusting the streaming state logic for completed messages. |
b79517f to
1912918
Compare
fa79b48 to
a843a79
Compare
|
Thanks for working on this fix! I was also investigating the same issue (Bug #13855) and started implementing the same solution with Looking forward to this being merged! 👍 |
Summary
TextPartpassesstreaming={true}unconditionally — even for completed messagesmessage.time.completedso finished messages render all rowsFixes #13855
Note
Full fix requires companion change in opentui (streaming setter must rebuild tables on
true→falsetransition). See anomalyco/opentui#696