From f40600e877e135ac1f119680b9d77fab5f71cc87 Mon Sep 17 00:00:00 2001
From: Alex Goodman <wagoodman@gmail.com>
Date: Mon, 29 Oct 2018 22:19:03 -0400
Subject: [PATCH] only show new keybindings

---
 ui/statusview.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ui/statusview.go b/ui/statusview.go
index 78351ff..dc21143 100644
--- a/ui/statusview.go
+++ b/ui/statusview.go
@@ -76,6 +76,6 @@ func (view *StatusView) Render() error {
 // KeyHelp indicates all the possible global actions a user can take when any pane is selected.
 func (view *StatusView) KeyHelp() string {
 	return renderStatusOption("^C", "Quit", false) +
-		renderStatusOption("^Space or TAB", "Switch view", false) +
-		renderStatusOption("^/ or ^F", "Filter files", Views.Filter.IsVisible())
+		renderStatusOption("TAB", "Switch view", false) +
+		renderStatusOption("^F", "Filter files", Views.Filter.IsVisible())
 }