2019-01-03 17:35:51 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
2020-05-06 13:11:01 +00:00
|
|
|
# Description: Fuzzy find a file in directory subtree
|
2019-08-22 14:28:39 +00:00
|
|
|
# Opens in $VISUAL or $EDITOR if text
|
|
|
|
# Opens other type of files with xdg-open
|
2019-01-03 17:35:51 +00:00
|
|
|
#
|
2020-05-06 13:11:01 +00:00
|
|
|
# Dependencies: fd/find, fzf/skim, xdg-open
|
2019-12-09 13:06:48 +00:00
|
|
|
#
|
2019-03-24 15:41:43 +00:00
|
|
|
# Shell: POSIX compliant
|
2019-01-03 17:35:51 +00:00
|
|
|
# Author: Arun Prakash Jana
|
|
|
|
|
2019-12-09 13:06:48 +00:00
|
|
|
if which fzf >/dev/null 2>&1; then
|
2020-04-12 13:36:59 +00:00
|
|
|
cmd="$FZF_DEFAULT_COMMAND"
|
2020-04-26 18:35:11 +00:00
|
|
|
if which fd >/dev/null 2>&1; then
|
|
|
|
[ -z "$cmd" ] && cmd="fd -t f 2>/dev/null"
|
|
|
|
else
|
|
|
|
[ -z "$cmd" ] && cmd="find . -type f 2>/dev/null"
|
|
|
|
fi
|
2020-04-12 13:36:59 +00:00
|
|
|
entry="$(eval "$cmd" | fzf --delimiter / --nth=-1 --tiebreak=begin --info=hidden)"
|
2020-02-20 03:07:49 +00:00
|
|
|
# To show only the file name
|
|
|
|
# entry=$(find . -type f 2>/dev/null | fzf --delimiter / --with-nth=-1 --tiebreak=begin --info=hidden)
|
2020-04-20 17:09:30 +00:00
|
|
|
elif which sk >/dev/null 2>&1; then
|
|
|
|
entry=$(find . -type f 2>/dev/null | sk)
|
2019-12-09 13:06:48 +00:00
|
|
|
else
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2019-08-22 14:28:39 +00:00
|
|
|
case "$(file -biL "$entry")" in
|
|
|
|
*text*)
|
|
|
|
"${VISUAL:-$EDITOR}" "$entry" ;;
|
|
|
|
*)
|
|
|
|
xdg-open "$entry" >/dev/null 2>&1 ;;
|
|
|
|
esac
|