mirror of
https://github.com/anomalyco/opentui.git
synced 2026-04-24 20:45:56 +03:00
Labels
No labels
bug
core
documentation
feature
good first issue
help wanted
pull-request
question
react
solid
tmux
windows
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/opentui#1265
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/anomalyco/opentui/pull/363
Author: @melMass
Created: 11/29/2025
Status: ✅ Merged
Merged: 11/29/2025
Merged by: @kommander
Base:
main← Head:fix-kittykb-repeat📝 Commits (4)
63af47frefactor(keypress): replace keyrepeat event with repeated flagb1fa7eftest(keypress): update repeat event handling in kitty keyboard testse4c5b1cdocs(solid): add JSDoc documentation to useKeyboard hookacb40f5chore: 🧹 remove extra blank line in keypress debug renderer📊 Changes
7 files changed (+54 additions, -41 deletions)
View changed files
📝
packages/core/dev/keypress-debug-renderer.ts(+0 -4)📝
packages/core/src/lib/KeyHandler.ts(+3 -6)📝
packages/core/src/lib/parse.keypress-kitty.test.ts(+18 -11)📝
packages/core/src/lib/parse.keypress-kitty.ts(+4 -2)📝
packages/core/src/lib/parse.keypress.ts(+1 -0)📝
packages/core/src/tests/renderer.input.test.ts(+12 -10)📝
packages/solid/src/elements/hooks.ts(+16 -8)📄 Description
Problem
PR #357 introduced a breaking change: key repeats were emitted as separate
keyrepeatevents instead ofkeypressThis broke components like
Textareathat only subscribe tokeypress.They stopped receiving key repeats, so holding a key no longer triggered continuous input.
Solution
Following the @kommander 's suggestion: emit repeat events as
keypresswith arepeated: trueflag🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.