We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a8cc5b commit 6795d13Copy full SHA for 6795d13
cmd/checkout/main.go
@@ -71,6 +71,8 @@ func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
71
72
case tea.KeyMsg:
73
switch msg.Type {
74
+ case tea.KeyCtrlC, tea.KeyEsc:
75
+ return m, tea.Quit
76
case tea.KeyRight:
77
if m.step < 2 {
78
m.step++
0 commit comments