From 131e8e212acfc50148a1ba0d920ab4e0c85fefad Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Thu, 21 Nov 2019 12:13:31 +0100 Subject: [PATCH] Remove warning when skim is not installed Switched to fzf a while back, skim is not needed on installations anymore. --- .config/shell/rc.d/alias-fuzzy-finding.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.config/shell/rc.d/alias-fuzzy-finding.sh b/.config/shell/rc.d/alias-fuzzy-finding.sh index 4ff5946..bce5cb5 100644 --- a/.config/shell/rc.d/alias-fuzzy-finding.sh +++ b/.config/shell/rc.d/alias-fuzzy-finding.sh @@ -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.