Using ? to get out of help screen. ESC and RET is also supported
parent
a170cf5ff0
commit
deac5c85a7
|
|
@ -51,7 +51,8 @@ func newHelpView(app *appView, current ui.Igniter, hh ui.Hints) *helpView {
|
|||
|
||||
func (v *helpView) bindKeys() {
|
||||
v.actions = ui.KeyActions{
|
||||
tcell.KeyEsc: ui.NewKeyAction("Back", v.backCmd, true),
|
||||
ui.KeyHelp: ui.NewKeyAction("Back", v.backCmd, true),
|
||||
tcell.KeyEsc: ui.NewKeyAction("Back", v.backCmd, false),
|
||||
tcell.KeyEnter: ui.NewKeyAction("Back", v.backCmd, false),
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue