Skip to content

Commit da2ab35

Browse files
authored
feat(textarea): use ctrl+w instead of ctrl+q (#58)
* feat(textarea): use ctrl+w instead of ctrl+q * feat(textarea): alias for ctrl+w
1 parent 6f1959b commit da2ab35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/ui/help.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ func (k keyMap) FullHelp() [][]key.Binding {
2525

2626
var helpKeys = keyMap{
2727
Save: key.NewBinding(
28-
key.WithKeys("ctrl+q"),
29-
key.WithHelp("ctrl+q", "save"),
28+
key.WithKeys("ctrl+w", "ctrl+q"),
29+
key.WithHelp("ctrl+w", "save"),
3030
),
3131
Quit: key.NewBinding(
3232
key.WithKeys("ctrl+c"),

0 commit comments

Comments
 (0)