feat: add mouse tracking support for terminal applications #106
+365
−17
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.
Summary
This PR implements mouse event handling to support terminal applications that use mouse input (e.g., Midnight Commander, htop, vim with mouse mode enabled).
Changes
How it works
The implementation checks if the terminal application has enabled mouse tracking via DECSET escape sequences before sending mouse events. This ensures compatibility with both mouse-aware applications (mc, htop, vim) and traditional terminal applications.
Testing
Tested with:
mc(Midnight Commander) - mouse navigation workshtop- mouse clicking on processes worksvimwith:set mouse=a- mouse positioning worksTest plan
bun run demoand open http://localhost:8000/demo/mcand verify mouse clicks navigate panelshtopand verify mouse clicks select processesvimwith:set mouse=aand verify mouse positioning🤖 Generated with Claude Code