2019-12-10 16:59:15 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
2021-07-17 14:17:53 +00:00
|
|
|
# Description: Navigate to directory using jump/autojump/zoxide/z
|
2019-12-10 16:59:15 +00:00
|
|
|
#
|
2021-05-15 17:32:01 +00:00
|
|
|
# Dependencies:
|
|
|
|
# - jump - https://github.com/gsamokovarov/jump
|
|
|
|
# - OR autojump - https://github.com/wting/autojump
|
|
|
|
# - OR zoxide - https://github.com/ajeetdsouza/zoxide
|
2021-07-17 14:17:53 +00:00
|
|
|
# - OR z - https://github.com/rupa/z (z requires fzf)
|
2021-09-26 19:54:01 +00:00
|
|
|
# - OR z (fish) - https://github.com/jethrokuan/z (z requires fzf)
|
2022-06-30 03:22:36 +00:00
|
|
|
# - OR z.lua - https://github.com/skywind3000/z.lua (z.lua can enhanced with fzf)
|
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
|
|
|
#
|
2022-06-30 03:22:36 +00:00
|
|
|
# to make z.lua work, you need to set $NNN_ZLUA to the path of script z.lua
|
|
|
|
#
|
2019-12-10 16:59:15 +00:00
|
|
|
# Shell: POSIX compliant
|
2021-07-17 14:17:53 +00:00
|
|
|
# Authors: Marty Buchaus, Dave Snider, Tim Adler, Nick Waywood
|
2019-12-10 16:59:15 +00:00
|
|
|
|
2021-03-27 19:29:23 +00:00
|
|
|
if [ ! -p "$NNN_PIPE" ]; then
|
2021-05-14 13:15:09 +00:00
|
|
|
printf 'ERROR: NNN_PIPE is not set!'
|
|
|
|
read -r _
|
2020-08-28 22:33:25 +00:00
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
|
2021-05-14 12:03:28 +00:00
|
|
|
if type jump >/dev/null 2>&1; then
|
2020-10-21 04:33:56 +00:00
|
|
|
printf "jump to : "
|
2021-09-04 20:31:41 +00:00
|
|
|
IFS= read -r line
|
2021-09-04 23:50:31 +00:00
|
|
|
# shellcheck disable=SC2086
|
|
|
|
odir="$(jump cd ${line})"
|
2020-08-28 22:33:25 +00:00
|
|
|
printf "%s" "0c$odir" > "$NNN_PIPE"
|
2021-05-14 12:03:28 +00:00
|
|
|
elif type 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"
|
2021-05-14 12:03:28 +00:00
|
|
|
elif type zoxide >/dev/null 2>&1; then
|
|
|
|
if type fzf >/dev/null 2>&1; then
|
2020-10-21 04:33:56 +00:00
|
|
|
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
|
2022-06-30 03:22:36 +00:00
|
|
|
elif type lua >/dev/null 2>&1 && [ -n "$NNN_ZLUA" ]; then
|
|
|
|
printf "jump to : "
|
|
|
|
read -r line
|
|
|
|
if type fzf >/dev/null 2>&1; then
|
|
|
|
odir="$(lua "$NNN_ZLUA" -l "$line" | fzf --nth 2.. --reverse --inline-info --tac +s -e --height 35%)"
|
|
|
|
printf "%s" "0c$(echo "$odir" | awk '{print $2}')" > "$NNN_PIPE"
|
|
|
|
else
|
|
|
|
odir="$(lua "$NNN_ZLUA" -e "$line")"
|
|
|
|
printf "%s" "0c$odir" > "$NNN_PIPE"
|
|
|
|
fi
|
2019-12-10 16:59:15 +00:00
|
|
|
else
|
2021-09-26 19:54:01 +00:00
|
|
|
# rupa/z uses $_Z_DATA, jethrokuan/z (=port of z for fish) uses $Z_DATA
|
2021-09-26 21:17:51 +00:00
|
|
|
datafile="${_Z_DATA:-${Z_DATA:-$HOME/.z}}"
|
2021-07-17 14:17:53 +00:00
|
|
|
if type fzf >/dev/null 2>&1 && [ -f "$datafile" ]; then
|
|
|
|
# Read the data from z's file instead of calling
|
|
|
|
# z so the data doesn't need to be processed twice
|
|
|
|
sel=$(awk -F "|" '{print $1}' "$datafile" | fzf | awk '{$1=$1};1')
|
|
|
|
|
|
|
|
# NOTE: Uncomment this line and comment out the line above if
|
|
|
|
# you want to see the weightings of the dir's in the fzf pane
|
|
|
|
# sel=$(awk -F "|" '{printf "%s %s\n", $2, $1}' "$datafile" | fzf | sed 's/^[0-9,.]* *//' | awk '{$1=$1};1')
|
|
|
|
|
|
|
|
printf "%s" "0c$sel" > "$NNN_PIPE"
|
|
|
|
else
|
|
|
|
printf "No supported autojump script [jump/autojump/zoxide/z (needs fzf)] found"
|
|
|
|
read -r _
|
|
|
|
fi
|
2019-12-10 16:59:15 +00:00
|
|
|
fi
|