add extra help binding

Kujtim Hoxha created

Change summary

internal/tui/tui.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

internal/tui/tui.go 🔗

@@ -52,7 +52,7 @@ var keys = keyMap{
 		key.WithHelp("ctrl+c", "quit"),
 	),
 	Help: key.NewBinding(
-		key.WithKeys("ctrl+_"),
+		key.WithKeys("ctrl+_", "ctrl+h"),
 		key.WithHelp("ctrl+?", "toggle help"),
 	),
 
@@ -427,7 +427,7 @@ func (a appModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
 		// If submitted, replace all named arguments and run the command
 		if msg.Submit {
 			content := msg.Content
-			
+
 			// Replace each named argument with its value
 			for name, value := range msg.Args {
 				placeholder := "$" + name