Skip to content
This repository was archived by the owner on Jul 29, 2025. It is now read-only.

Commit 23763fb

Browse files
committed
add extra help binding
1 parent 05b0570 commit 23763fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/tui/tui.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ var keys = keyMap{
5252
key.WithHelp("ctrl+c", "quit"),
5353
),
5454
Help: key.NewBinding(
55-
key.WithKeys("ctrl+_"),
55+
key.WithKeys("ctrl+_", "ctrl+h"),
5656
key.WithHelp("ctrl+?", "toggle help"),
5757
),
5858

@@ -427,7 +427,7 @@ func (a appModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
427427
// If submitted, replace all named arguments and run the command
428428
if msg.Submit {
429429
content := msg.Content
430-
430+
431431
// Replace each named argument with its value
432432
for name, value := range msg.Args {
433433
placeholder := "$" + name

0 commit comments

Comments
 (0)