nnn/plugins/fzopen

32 lines
946 B
Plaintext
Raw Normal View History

2019-01-03 17:35:51 +00:00
#!/usr/bin/env sh
2019-08-22 14:28:39 +00:00
# Description: Fuzzy find a file in directory subtree with fzy
# Opens in $VISUAL or $EDITOR if text
# Opens other type of files with xdg-open
2019-01-03 17:35:51 +00:00
#
2019-12-09 13:06:48 +00:00
# Requires: fzf/fzy, xdg-open
#
# 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
cmd="$FZF_DEFAULT_COMMAND"
[ -z "$cmd" ] && cmd="find . -type f 2>/dev/null"
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)
2019-12-09 13:06:48 +00:00
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)
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