Skip to content

Commit

Permalink
Filter is now called find
Browse files Browse the repository at this point in the history
  • Loading branch information
meowgorithm committed Dec 24, 2020
1 parent 47b24f6 commit 37a9b68
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ui/stash.go
Expand Up @@ -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()
Expand Down
4 changes: 2 additions & 2 deletions ui/stashhelp.go
Expand Up @@ -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 {
Expand Down

0 comments on commit 37a9b68

Please sign in to comment.