only show new keybindings

This commit is contained in:
Alex Goodman 2018-10-29 22:19:03 -04:00
parent 57f1448c5c
commit f40600e877
No known key found for this signature in database
GPG Key ID: 05328C611D8A520E

View File

@ -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())
}