2019-10-23 10:04:12 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
2020-05-06 13:11:01 +00:00
|
|
|
# Description: Run fzf and go to the directory of the file selected
|
2019-10-23 10:04:12 +00:00
|
|
|
#
|
|
|
|
# Shell: POSIX compliant
|
|
|
|
# Author: Anna Arad
|
|
|
|
|
2019-11-21 20:44:25 +00:00
|
|
|
. "$(dirname "$0")"/.nnn-plugin-helper
|
2019-10-23 10:04:12 +00:00
|
|
|
|
2020-05-06 13:11:01 +00:00
|
|
|
if [ "$(cmd_exists fzf)" -eq "0" ]; then
|
2019-11-26 12:36:31 +00:00
|
|
|
sel=$(fzf)
|
2019-10-23 10:04:12 +00:00
|
|
|
else
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2019-11-26 12:36:31 +00:00
|
|
|
if [ -n "$sel" ]; then
|
|
|
|
if ! [ -d "$sel" ]; then
|
|
|
|
sel=$(dirname "$sel")
|
2019-12-09 17:57:10 +00:00
|
|
|
elif [ "$sel" = "." ]; then
|
|
|
|
exit 0
|
2019-11-26 12:36:31 +00:00
|
|
|
fi
|
2019-11-20 13:17:26 +00:00
|
|
|
|
2020-07-21 07:57:56 +00:00
|
|
|
# Check if selected path returned
|
|
|
|
# by fzf command is absolute
|
|
|
|
case $sel in
|
|
|
|
/*) nnn_cd "$sel" ;;
|
|
|
|
*)
|
|
|
|
# Remove "./" prefix if it exists
|
|
|
|
sel="${sel#./}"
|
|
|
|
|
|
|
|
if [ "$PWD" = "/" ]; then
|
|
|
|
nnn_cd "/$sel"
|
|
|
|
else
|
|
|
|
nnn_cd "$PWD/$sel"
|
|
|
|
fi;;
|
|
|
|
esac
|
2019-10-23 10:04:12 +00:00
|
|
|
fi
|