Uh oh!
There was an error while loading. Please reload this page.
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 into
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
1912918Comparefa79b48 to
a843a79Comparetrry-hub
commented
Mar 3, 2026
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! 👍 |
Closing this pull request because it has had no updates for more than 60 days. If you plan to continue working on it, feel free to reopen or open a new PR. |
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