From fa0565f8e36f8e272c02733c8986dac090ccec10 Mon Sep 17 00:00:00 2001 From: Michal Kuratczyk Date: Fri, 27 Nov 2020 10:23:50 +0100 Subject: [PATCH] Disable filtering on the Help screen --- internal/view/help.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/view/help.go b/internal/view/help.go index 7389abfa..a673495d 100644 --- a/internal/view/help.go +++ b/internal/view/help.go @@ -56,7 +56,7 @@ func (h *Help) Init(ctx context.Context) error { } func (h *Help) bindKeys() { - h.Actions().Delete(ui.KeySpace, tcell.KeyCtrlSpace, tcell.KeyCtrlS) + h.Actions().Delete(ui.KeySpace, tcell.KeyCtrlSpace, tcell.KeyCtrlS), ui.KeySlash) h.Actions().Set(ui.KeyActions{ tcell.KeyEscape: ui.NewKeyAction("Back", h.app.PrevCmd, true), ui.KeyHelp: ui.NewKeyAction("Back", h.app.PrevCmd, false),