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:
Marty Oehme 2019-06-26 21:21:52 +02:00
parent b1cb9ceef9
commit de582afa1d

View file

@ -5,13 +5,13 @@
if type sk >/dev/null 2>&1; then if type sk >/dev/null 2>&1; then
alias fzf=sk alias fzf=sk
elif type fzy >/dev/null 2>&1; then 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 alias fzf=fzy
elif type fzf >/dev/null 2>&1; then 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 alias fzf=fzf
else else
echo "[WARNING]: No fuzzy finder found - install sk to enable functionality" echo "[WARNING]: No fuzzy finder found - install skim to enable functionality"
fi fi
# check for existence of greplikes. If found, substitute fzf with it. # 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 elif type ack >/dev/null 2>&1; then
alias rg=ack alias rg=ack
else 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 fi
# set up fuzzy file and directory search # set up fuzzy file and directory search