Reword instructions for fuzzy finding programs
Uses the full name of fuzzy finders instead of just their abbreviations when warning about any of them missing, to make it clearer which programs the warning is talking about.
This commit is contained in:
parent
b1cb9ceef9
commit
de582afa1d
1 changed files with 4 additions and 4 deletions
|
@ -5,13 +5,13 @@
|
|||
if type sk >/dev/null 2>&1; then
|
||||
alias fzf=sk
|
||||
elif type fzy >/dev/null 2>&1; then
|
||||
echo "[WARNING]: fzy found as fuzzy finder - install sk to use full script functionality"
|
||||
echo "[WARNING]: fzy found as fuzzy finder - install skim to use full script functionality"
|
||||
alias fzf=fzy
|
||||
elif type fzf >/dev/null 2>&1; then
|
||||
echo "[WARNING]: fzf found as fuzzy finder - install sk to use full script functionality"
|
||||
echo "[WARNING]: fzf found as fuzzy finder - install skim to use full script functionality"
|
||||
alias fzf=fzf
|
||||
else
|
||||
echo "[WARNING]: No fuzzy finder found - install sk to enable functionality"
|
||||
echo "[WARNING]: No fuzzy finder found - install skim to enable functionality"
|
||||
fi
|
||||
|
||||
# check for existence of greplikes. If found, substitute fzf with it.
|
||||
|
@ -23,7 +23,7 @@ elif type ag >/dev/null 2>&1; then
|
|||
elif type ack >/dev/null 2>&1; then
|
||||
alias rg=ack
|
||||
else
|
||||
echo "[WARNING]: No grep-like found - install rg/ag/ack to enable functionality"
|
||||
echo "[WARNING]: No grep-like found - install ripgrep/the silver surfer (ag)/ack to enable functionality"
|
||||
fi
|
||||
|
||||
# set up fuzzy file and directory search
|
||||
|
|
Loading…
Reference in a new issue