mirror of
https://github.com/anomalyco/opentui.git
synced 2026-04-25 13:06:00 +03:00
[GH-ISSUE #592] Keyboard input randomly dropped during typing and navigation #161
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#161
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?
Originally created by @Gijuno on GitHub (Jan 26, 2026).
Original GitHub issue: https://github.com/anomalyco/opentui/issues/592
Keyboard input randomly dropped during typing and navigation
Environment
Description
When typing in textarea or navigating with arrow keys, input is randomly dropped/ignored.
Text input:
Arrow keys:
Ctrl+C:
Root Cause Analysis
Debug logs (
OTUI_DEBUG=1) show full screen repaint on every single keystroke:The entire screen (including static elements like the logo) is being repainted on every keypress. This appears to block stdin event processing, causing subsequent keypresses to be dropped.
Reproduction
opencode)Expected Behavior
Workarounds Attempted
animations_enabled: false) - no effectSuggested Fix
@Gijuno commented on GitHub (Jan 26, 2026):
Closing - this was a local environment issue caused by a misconfigured MCP plugin (loaded as a plugin instead of MCP server, causing stdin conflict). Not an OpenTUI bug.