feat(tui): add search filtering to RebaseBranchPicker modal#45
Merged
HonestMajority merged 1 commit intomainfrom Feb 24, 2026
Merged
feat(tui): add search filtering to RebaseBranchPicker modal#45HonestMajority merged 1 commit intomainfrom
HonestMajority merged 1 commit intomainfrom
Conversation
Add TextArea-based substring search to the branch picker, matching the existing archive search pattern. Users can now type to filter branches, with matching segments highlighted in yellow/bold. - Add rebase_branch_search TextArea field and filtered_indices method - Rewrite event handler: typed chars go to search, arrow keys navigate - Rewrite renderer: 3-chunk layout with filter input and highlights - Update status bar hints to reflect new interaction model Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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 free
to 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.
Adds type-to-filter search to the RebaseBranchPicker modal, following the same pattern as the existing archive search. When a repo has many branches, users can now type to narrow the list instead of scrolling through every branch with arrow keys.
rebase_branch_searchTextArea captures typed characters for case-insensitive, space-separated substring matching against branch nameshighlight_segments()🤖 Generated with Claude Code