fix: decouple kanban hjkl navigation from item selection #129
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
Fixes kanban view navigation so that directional keys (h/j/k/l/g/G) only move the visual cursor without activating the highlighted item. Only Enter now selects and activates.
Previous behavior
Every cursor movement in kanban view (h/j/k/l) immediately:
This made it impossible to browse the kanban without each item getting fully activated on every keypress. Additionally, pressing Enter on the already-selected item (or any item) never entered interactive mode because the kanban handler returned early before reaching enterInteractiveMode().
New behavior
Files changed
internal/plugins/workspace/kanban.go— moveKanbanRow() and moveKanbanColumn() stripped of syncKanbanToList() and applyKanbanSelectionChange() callsinternal/plugins/workspace/keys.go— hjkl/gG return nil in kanban mode; Enter syncs kanban selection then falls through to activation with loadSelectedContent() fallbackKnown issue (not addressed here)
The kanban view status detection for sessions/workspaces is still broken — most items currently land in the Waiting column regardless of actual status. That will be fixed separately.
Test plan