diff --git a/ui/stash.go b/ui/stash.go index 46aab86c..318e7f16 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 567b2a1e..4a1bbc16 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 {