nnn/plugins/fzcd

36 lines
678 B
Plaintext
Raw Normal View History

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