chore(confirm): bind n and N to the negative response

This commit is contained in:
Christian Rocha 2022-07-27 12:37:38 -07:00
parent 43b8733f93
commit c78ac9cf6b

View file

@ -54,7 +54,7 @@ func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
m.quitting = true
m.selected = 0
return m, tea.Quit
case "ctrl+c", "q":
case "ctrl+c", "q", "n", "N":
m.selected = 1
m.quitting = true
return m, tea.Quit