2019-01-03 17:35:51 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
2021-05-16 19:25:29 +00:00
|
|
|
# Description: Regular mode:
|
|
|
|
# Fuzzy find a file in directory subtree.
|
|
|
|
# Opens in $VISUAL or $EDITOR if text.
|
|
|
|
# Opens other type of files with xdg-open.
|
|
|
|
# Work only with a single file selected.
|
|
|
|
#
|
|
|
|
# Picker mode:
|
|
|
|
# If picker mode output file is passed, it
|
|
|
|
# will be overwritten with any picked files.
|
|
|
|
# Leaves untouched if no file is picked.
|
|
|
|
# Works with single/multiple files selected.
|
2019-01-03 17:35:51 +00:00
|
|
|
#
|
2021-06-11 09:46:51 +00:00
|
|
|
# Dependencies: fd/find, fzf/skim, xdg-open/open (on macOS)
|
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
|
|
|
|
|
2021-07-17 15:02:01 +00:00
|
|
|
NUKE="${XDG_CONFIG_HOME:-$HOME/.config}/nnn/plugins/nuke"
|
|
|
|
USE_NUKE=0
|
|
|
|
|
2022-07-16 17:47:32 +00:00
|
|
|
# shellcheck disable=SC1090,SC1091
|
2021-05-16 19:25:29 +00:00
|
|
|
. "$(dirname "$0")"/.nnn-plugin-helper
|
|
|
|
|
2021-05-14 12:03:28 +00:00
|
|
|
if type fzf >/dev/null 2>&1; then
|
2020-04-12 13:36:59 +00:00
|
|
|
cmd="$FZF_DEFAULT_COMMAND"
|
2021-05-14 12:03:28 +00:00
|
|
|
if type fd >/dev/null 2>&1; then
|
2020-04-26 18:35:11 +00:00
|
|
|
[ -z "$cmd" ] && cmd="fd -t f 2>/dev/null"
|
|
|
|
else
|
|
|
|
[ -z "$cmd" ] && cmd="find . -type f 2>/dev/null"
|
|
|
|
fi
|
2021-06-11 13:48:29 +00:00
|
|
|
entry="$(eval "$cmd" | fzf -m)"
|
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)
|
2021-05-14 12:03:28 +00:00
|
|
|
elif type sk >/dev/null 2>&1; then
|
2020-04-20 17:09:30 +00:00
|
|
|
entry=$(find . -type f 2>/dev/null | sk)
|
2019-12-09 13:06:48 +00:00
|
|
|
else
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2021-05-16 19:25:29 +00:00
|
|
|
# Check for picker mode
|
|
|
|
if [ "$3" ]; then
|
|
|
|
if [ "$entry" ]; then
|
2021-11-01 08:05:18 +00:00
|
|
|
case "$entry" in
|
2021-11-01 08:15:49 +00:00
|
|
|
/*) fullpath="$entry" ;;
|
|
|
|
*) fullpath="$PWD/$entry" ;;
|
2021-11-01 08:05:18 +00:00
|
|
|
esac
|
2021-05-16 19:25:29 +00:00
|
|
|
if [ "-" = "$3" ]; then
|
2021-11-01 08:05:18 +00:00
|
|
|
printf "%s\n" "$fullpath"
|
2021-05-16 19:25:29 +00:00
|
|
|
else
|
2021-11-01 08:05:18 +00:00
|
|
|
printf "%s\n" "$fullpath" > "$3"
|
2021-05-16 19:25:29 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Tell `nnn` to clear its internal selection
|
|
|
|
printf "%s" "0p" > "$NNN_PIPE"
|
|
|
|
fi
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2021-07-17 15:02:01 +00:00
|
|
|
if [ "$USE_NUKE" -ne 0 ]; then
|
|
|
|
"$NUKE" "$entry"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2021-05-16 19:25:29 +00:00
|
|
|
# Open the file (works for a single file only)
|
2021-06-11 09:46:51 +00:00
|
|
|
cmd_file=""
|
|
|
|
cmd_open=""
|
|
|
|
if uname | grep -q "Darwin"; then
|
|
|
|
cmd_file="file -bIL"
|
|
|
|
cmd_open="open"
|
|
|
|
else
|
|
|
|
cmd_file="file -biL"
|
|
|
|
cmd_open="xdg-open"
|
|
|
|
fi
|
|
|
|
|
|
|
|
case "$($cmd_file "$entry")" in
|
2019-08-22 14:28:39 +00:00
|
|
|
*text*)
|
|
|
|
"${VISUAL:-$EDITOR}" "$entry" ;;
|
|
|
|
*)
|
2021-06-11 09:46:51 +00:00
|
|
|
$cmd_open "$entry" >/dev/null 2>&1 ;;
|
2019-08-22 14:28:39 +00:00
|
|
|
esac
|