Remove warning when skim is not installed
Switched to fzf a while back, skim is not needed on installations anymore.
This commit is contained in:
parent
0c7a9ca7f5
commit
131e8e212a
1 changed files with 1 additions and 3 deletions
|
@ -5,13 +5,11 @@
|
|||
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 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 skim to use full script functionality"
|
||||
alias fzf=fzf
|
||||
else
|
||||
echo "[WARNING]: No fuzzy finder found - install skim to enable functionality"
|
||||
echo "[WARNING]: No fuzzy finder found - install skim/fzf/fzy to enable functionality"
|
||||
fi
|
||||
|
||||
# check for existence of greplikes. If found, substitute fzf with it.
|
||||
|
|
Loading…
Reference in a new issue