Uh oh!
There was an error while loading. Please reload this page.
feat(tui): Allow to expand pasted text (AKA "pasted summary") - #8496
Closed
berenar wants to merge 19 commits into
Closed
feat(tui): Allow to expand pasted text (AKA "pasted summary")#8496berenar wants to merge 19 commits into
berenar wants to merge 19 commits into
Conversation
…ts in the prompt field
Extract 9 pure utility functions from index.tsx into paste-summary.ts to improve code organization and testability
Add unit tests covering all 9 paste summary utility functions with edge cases, boundary conditions, and immutability checks - Test createPastePlaceholder with various line counts - Test range shifting and text rewriting operations - Test cursor position calculations after operations - Test part update functions for text, file, and agent types - Test immutable part replacement - 47 tests with 100% code coverage
Contributor
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. |
Contributor
The following comment was made by an LLM, it may be inaccurate: No duplicate PRs found |
berenar
commented
Jan 14, 2026
ContributorAuthor
Fixes #8501 |
berenarforce-pushed
the
feat/expand-paste-summary
branch
from
January 19, 2026 10:15
adabb07 to
a7109d9Compare
This was referenced Jan 22, 2026
This was referenced Jan 28, 2026
thdxrforce-pushed
the
dev
branch
3 times, most recently
from
January 30, 2026 14:37
f1ae801 to
08fa7f7Compare6 tasks
This was referenced Apr 5, 2026
Closed
Contributor
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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What does this PR do?
Allows you to toggle the paste summary feature on and off to view and edit the contents of the pasted text.
This mainly fixes:
[Pasted ~1 lines]) #8501And helps with:
Demo
demo_toggle_paste_sumary.mov
Why I created this PR
[Pasted ~1 lines]) #8501Decisions taken
experimental.disable_paste_summary, if not available, it falls back to the current behavior (paste shows summary, not content)ctrl+oThings needed before merging
How did you verify your code works?
bun devand manually tested it the different use cases