Enable scrolling in task detail view with j/k keys and mouse wheel#445
Open
Enable scrolling in task detail view with j/k keys and mouse wheel#445
Conversation
Previously, the task detail pane viewport was only scrollable with PgUp/PgDn keys. Users naturally expected to use j/k keys (vim-style) and mouse wheel for scrolling, but these were not working. Changes: - Removed j/k key blocking in detail view to enable vim-style scrolling - Added mouse event routing to detail view for mouse wheel scrolling - Updated help text to show "j/k/wheel" as scroll options The viewport component already supported these inputs, but they were being blocked at the app routing level. Mouse events are now passed to the detail view while preserving tmux's native pane-clicking functionality (which operates at the tmux level, not the app level). Navigation keys remain unchanged: - Arrow keys (↑/↓) navigate between tasks - j/k scroll within the current task's content - Mouse clicks on tmux panes still switch between panes Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
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.
Summary
Changes
Previously, the task detail pane viewport was only scrollable with PgUp/PgDn keys. Users naturally expected to use j/k keys and mouse wheel for scrolling, but these were not working.
Key changes:
updateDetail()to enable vim-style scrollingThe viewport component from Bubble Tea already supported these inputs, but they were being blocked at the app routing level.
How it works
Navigation remains unchanged
Test plan
🤖 Generated with Claude Code