Filter is now called find

This commit is contained in:
Christian Rocha 2020-12-14 19:53:06 -05:00
commit 37a9b6846f
2 changed files with 3 additions and 3 deletions

View file

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

View file

@ -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 {