Add ratatui based TUI as default interactive mode#38
Open
k29 wants to merge 4 commits intotigy32:mainfrom
Open
Add ratatui based TUI as default interactive mode#38k29 wants to merge 4 commits intotigy32:mainfrom
k29 wants to merge 4 commits intotigy32:mainfrom
Conversation
Contributor
Author
|
there are some cases where this doesn't behave great, large copy paste, text selection etc. will add a few more commits to this PR. |
62f2fa1 to
81b511f
Compare
Replaces rustyline REPL with a full terminal UI built on ratatui + Crossterm. Scrollable chat with streaming support, welcome banner, multi-line input area, status bar. You can go back to rustyline using --no-tui flag.
- Enable bracketed paste for proper large paste handling - Enable keyboard enhancement for shift+enter newline support - Remove mouse capture so terminal text selection works natively - Add horizontal margins to prevent text from touching screen edges Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Enable crossterm MouseCapture to handle scroll events (3 lines per tick) and click-drag text selection with reversed-color highlighting. Selected text is auto-copied to clipboard on mouse release using platform commands (pbcopy/xclip/xsel). Selection clears on new streaming content and clicks outside the chat panel.
Reserve 1 column for the scrollbar so wrapped text no longer gets clipped. Remove the horizontal margin that was previously added. Update CLAUDE.md with feature branch update workflow.
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.
Replaces rustyline REPL with a full terminal UI built on ratatui + Crossterm. Scrollable chat with streaming support, welcome banner, multi-line input area, status bar. You can go back to rustyline using --no-tui flag.