From 37a9b6846f9667caca2062a131689066156b41a1 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Mon, 14 Dec 2020 19:53:06 -0500 Subject: [PATCH] Filter is now called find --- ui/stash.go | 2 +- ui/stashhelp.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/stash.go b/ui/stash.go index 46aab86..318e7f1 100644 --- a/ui/stash.go +++ b/ui/stash.go @@ -462,7 +462,7 @@ func newStashModel(common *commonModel) stashModel { ni.Focus() si := textinput.NewModel() - si.Prompt = stashTextInputPromptStyle("Filter: ") + si.Prompt = stashTextInputPromptStyle("Find: ") si.CursorColor = lib.Fuschia.String() si.CharLimit = noteCharacterLimit si.Focus() diff --git a/ui/stashhelp.go b/ui/stashhelp.go index 567b2a1..4a1bbc1 100644 --- a/ui/stashhelp.go +++ b/ui/stashhelp.go @@ -142,9 +142,9 @@ func (m stashModel) helpView() (string, int) { // If we're browsing a filtered set if m.filterState == filterApplied { - filterHelp = []string{"/", "edit filter", "esc", "clear filter"} + filterHelp = []string{"/", "edit search", "esc", "clear search"} } else { - filterHelp = []string{"/", "filter"} + filterHelp = []string{"/", "find"} } if isStashed {