From 8903ad88cd85bb78e935fe4f5560d5777d4974e7 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Tue, 21 Jul 2020 17:45:42 -0400 Subject: [PATCH] Update stash help to push the notion that q quits --- ui/stash.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/stash.go b/ui/stash.go index 40ba330..caef982 100644 --- a/ui/stash.go +++ b/ui/stash.go @@ -643,7 +643,7 @@ func stashHelpView(m stashModel) string { if m.err != nil { h = append(h, []string{"!: errors"}...) } - h = append(h, []string{"esc: exit"}...) + h = append(h, []string{"q: quit"}...) } return common.HelpView(h...) }