Merge pull request #445 from techniumlabs/master
Using ? to get out of help screen. ESC and RET is also supportedmine
commit
34e8a7444c
|
|
@ -51,7 +51,8 @@ func newHelpView(app *appView, current ui.Igniter, hh ui.Hints) *helpView {
|
||||||
|
|
||||||
func (v *helpView) bindKeys() {
|
func (v *helpView) bindKeys() {
|
||||||
v.actions = ui.KeyActions{
|
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),
|
tcell.KeyEnter: ui.NewKeyAction("Back", v.backCmd, false),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue