From fae083b90bc5d0b8bebfac5c38937fe0277963d9 Mon Sep 17 00:00:00 2001 From: Antoine Meausoone Date: Thu, 2 Jul 2020 21:27:26 +0200 Subject: [PATCH] feat(log): use better key --- internal/view/log.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/view/log.go b/internal/view/log.go index c6b2636b..9218a383 100644 --- a/internal/view/log.go +++ b/internal/view/log.go @@ -185,7 +185,7 @@ func (l *Log) bindKeys() { ui.Key4: ui.NewKeyAction("30m", l.sinceCmd(30*60), true), ui.Key5: ui.NewKeyAction("1h", l.sinceCmd(60*60), true), tcell.KeyEnter: ui.NewSharedKeyAction("Filter", l.filterCmd, false), - ui.KeyL: ui.NewKeyAction("Clear", l.clearCmd, true), + tcell.KeyCtrlK: ui.NewKeyAction("Clear", l.clearCmd, true), ui.KeyM: ui.NewKeyAction("Mark", l.markCmd, true), ui.KeyS: ui.NewKeyAction("Toggle AutoScroll", l.toggleAutoScrollCmd, true), ui.KeyF: ui.NewKeyAction("Toggle FullScreen", l.toggleFullScreenCmd, true),