Update stash help to push the notion that q quits

This commit is contained in:
Christian Rocha 2020-07-21 17:45:42 -04:00 committed by Christian Muehlhaeuser
commit 8903ad88cd

View file

@ -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...)
}