We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a918425 commit dba871eCopy full SHA for dba871e
2 files changed
.gitignore
@@ -22,3 +22,4 @@ vendor
22
/cagent
23
/cagent-*
24
/docker-mcp-*
25
+docker-agent
pkg/tui/tui.go
@@ -1577,6 +1577,11 @@ func (m *appModel) Bindings() []key.Binding {
1577
key.WithHelp("Ctrl+k", "commands"),
1578
))
1579
1580
+ bindings = append(bindings, key.NewBinding(
1581
+ key.WithKeys("ctrl+?"),
1582
+ key.WithHelp("Ctrl+?", "help"),
1583
+ ))
1584
+
1585
// Show newline help based on keyboard enhancement support
1586
if m.keyboardEnhancementsSupported {
1587
bindings = append(bindings, key.NewBinding(
0 commit comments