fix(gui): add kitty key/mouse parsing and robust terminal event dispatch - #21
Closed
Blankeos wants to merge 1 commit into
Closed
fix(gui): add kitty key/mouse parsing and robust terminal event dispatch#21Blankeos wants to merge 1 commit into
Blankeos wants to merge 1 commit into
Conversation
- Upgrade terminal UI stack to `crossterm` 0.29 and `ratatui` 0.30.2 (`ratatui-textarea` 0.9.2) - Parse kitty escape variants including key `Press/Repeat/Release` and SGR mouse sequences, then dispatch by event kind - Add batched terminal event draining with mouse coalescing for motion/drag/scroll events - Introduce focus-transition and popup-tail suppression logic to avoid duplicate actions from key releases/repeats - Enable keyboard `REPORT_EVENT_TYPES`, reorder terminal setup probing, and update textarea cursor handling for new API - Expand tests for key kind parsing, mouse coalescing, and popup tail suppression behavior
Owner
Author
|
@joshxfi pls check w/ your weird ass terminal 🥹🙏
rustc --version
rustup update stable
bun uninstall -g lazygitrs # if `where lazygitrs` is bun
npm uninstall -g lazygitrs # if `where lazygitrs` is pnpm
brew uninstall blankeos/tap/lazygitrs # if `where lazygitrs` is brew
cargo install \
--git https://github.com/blankeos/lazygitrs \
--branch fix/joshxfi-weird-terminal \
--locked \
--force
lazygitrs |
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.
crossterm0.29 andratatui0.30.2 (ratatui-textarea0.9.2) - Parse kitty escape variants including keyPress/Repeat/Releaseand SGR mouse sequences, then dispatch by event kind - Add batched terminal event draining with mouse coalescing for motion/drag/scroll events - Introduce focus-transition and popup-tail suppression logic to avoid duplicate actions from key releases/repeats - Enable keyboardREPORT_EVENT_TYPES, reorder terminal setup probing, and update textarea cursor handling for new API - Expand tests for key kind parsing, mouse coalescing, and popup tail suppression behavior