Skip to content

Commit a9c34c0

Browse files
committed
Fix: Include content panel bindings in status bar whitelist
Added up/down/c/e/d keys to the status bar whitelist so that content panel navigation bindings (↑↓ select prev/next, c copy, e edit, d delete) appear in the status bar when in content context. This restores the original behavior where chatPage.Bindings() were always included in the status bar when the content panel is focused. Assisted-By: docker-agent
1 parent dd408b8 commit a9c34c0

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

pkg/tui/tui.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1670,7 +1670,12 @@ func (m *appModel) Bindings() []key.Binding {
16701670
"ctrl+j": true, // newline fallback
16711671
"ctrl+g": true, // edit in external editor (editor context)
16721672
"ctrl+r": true, // history search (editor context)
1673-
// Content panel bindings are included via chatPage.Bindings()
1673+
// Content panel bindings (↑↓, c, e, d) are always included
1674+
"up": true,
1675+
"down": true,
1676+
"c": true,
1677+
"e": true,
1678+
"d": true,
16741679
}
16751680

16761681
// Filter to only include status bar keys

0 commit comments

Comments
 (0)