2019-12-10 16:59:15 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
2020-10-21 05:19:04 +00:00
|
|
|
# Description: Navigate to directory using jump/autojump/zoxide
|
2019-12-10 16:59:15 +00:00
|
|
|
#
|
2020-08-28 22:33:25 +00:00
|
|
|
# Dependencies: jump - https://github.com/gsamokovarov/jump
|
|
|
|
# OR autojump - https://github.com/wting/autojump
|
2020-10-21 05:19:04 +00:00
|
|
|
# OR zoxide - https://github.com/ajeetdsouza/zoxide
|
2019-12-10 16:59:15 +00:00
|
|
|
#
|
2020-10-21 05:19:04 +00:00
|
|
|
# Note: The dependencies STORE NAVIGATION PATTERNS
|
2019-12-16 00:25:15 +00:00
|
|
|
#
|
2019-12-10 16:59:15 +00:00
|
|
|
# Shell: POSIX compliant
|
2020-10-21 05:19:04 +00:00
|
|
|
# Authors: Marty Buchaus, Dave Snider, Tim Adler
|
2019-12-10 16:59:15 +00:00
|
|
|
|
2021-03-27 19:29:23 +00:00
|
|
|
if [ ! -p "$NNN_PIPE" ]; then
|
2020-08-28 22:33:25 +00:00
|
|
|
echo 'ERROR: NNN_PIPE is not set' | ${PAGER:-less}
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
|
|
|
|
if which jump >/dev/null 2>&1; then
|
2020-10-21 04:33:56 +00:00
|
|
|
printf "jump to : "
|
2020-08-28 22:33:25 +00:00
|
|
|
read -r dir
|
|
|
|
odir="$(jump cd "$dir")"
|
|
|
|
printf "%s" "0c$odir" > "$NNN_PIPE"
|
|
|
|
elif which autojump >/dev/null 2>&1; then
|
2020-10-21 04:33:56 +00:00
|
|
|
printf "jump to : "
|
2019-12-10 16:59:15 +00:00
|
|
|
read -r dir
|
|
|
|
odir="$(autojump "$dir")"
|
2020-05-03 09:25:33 +00:00
|
|
|
printf "%s" "0c$odir" > "$NNN_PIPE"
|
2020-10-21 04:33:56 +00:00
|
|
|
elif which zoxide >/dev/null 2>&1; then
|
|
|
|
if which fzf >/dev/null 2>&1; then
|
|
|
|
odir="$(zoxide query -i --)"
|
|
|
|
printf "%s" "0c$odir" > "$NNN_PIPE"
|
|
|
|
else
|
|
|
|
printf "jump to : "
|
|
|
|
read -r dir
|
|
|
|
odir="$(zoxide query -- "$dir")"
|
|
|
|
printf "%s" "0c$odir" > "$NNN_PIPE"
|
|
|
|
fi
|
2019-12-10 16:59:15 +00:00
|
|
|
else
|
2020-10-21 04:33:56 +00:00
|
|
|
printf "No supported autojump script found. (jump/autojump/zoxide are supported)"
|
2020-01-02 17:43:56 +00:00
|
|
|
read -r _
|
2019-12-10 16:59:15 +00:00
|
|
|
fi
|