fix: g? help panel doesn't work in kanban/calendar views #64
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
track:api
track:auto
track:core
track:deploy
track:infra
track:ui
v0.1.0
v0.1.1
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
barrettruth/delta#64
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?
Problem
`g?` only works from queue view. In kanban and calendar views, the `g` key is either not handled or consumed differently, so the help panel never opens.
Expected
`g?` should open the keymap help panel from any view — queue, kanban, calendar, or when no view-specific handler is active.
Root Cause
Each view has its own keyboard handler that may consume `g` before the global handler sees it. The fix applied for queue view (onHelp callback + DOM event) needs to be replicated in kanban and calendar keyboard handlers.