From 4832fc5fe1297f1241310f2453b850c72743e1bd Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Wed, 6 May 2020 18:41:01 +0530 Subject: Drop fzy support --- plugins/fzopen | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'plugins/fzopen') diff --git a/plugins/fzopen b/plugins/fzopen index a678627..677ea26 100755 --- a/plugins/fzopen +++ b/plugins/fzopen @@ -1,10 +1,10 @@ #!/usr/bin/env sh -# Description: Fuzzy find a file in directory subtree with fzy +# Description: Fuzzy find a file in directory subtree # Opens in $VISUAL or $EDITOR if text # Opens other type of files with xdg-open # -# Dependencies: fd/find, fzf/fzy/skim, xdg-open +# Dependencies: fd/find, fzf/skim, xdg-open # # Shell: POSIX compliant # Author: Arun Prakash Jana @@ -19,8 +19,6 @@ if which fzf >/dev/null 2>&1; then entry="$(eval "$cmd" | fzf --delimiter / --nth=-1 --tiebreak=begin --info=hidden)" # To show only the file name # entry=$(find . -type f 2>/dev/null | fzf --delimiter / --with-nth=-1 --tiebreak=begin --info=hidden) -elif which fzy >/dev/null 2>&1; then - entry=$(find . -type f 2>/dev/null | fzy) elif which sk >/dev/null 2>&1; then entry=$(find . -type f 2>/dev/null | sk) else -- cgit v1.2.3-70-g09d2