diff options
Diffstat (limited to 'plugins/autojump')
-rwxr-xr-x | plugins/autojump | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/plugins/autojump b/plugins/autojump index 3bfe228..db10c84 100755 --- a/plugins/autojump +++ b/plugins/autojump @@ -1,14 +1,15 @@ #!/usr/bin/env sh -# Description: Navigate to directory using jump/autojump +# Description: Navigate to directory using jump/autojump/zoxide # # Dependencies: jump - https://github.com/gsamokovarov/jump # OR autojump - https://github.com/wting/autojump +# OR zoxide - https://github.com/ajeetdsouza/zoxide # -# Note: jump/autojump STORES NAVIGATION PATTERNS +# Note: The dependencies STORE NAVIGATION PATTERNS # # Shell: POSIX compliant -# Authors: Marty Buchaus, Dave Snider +# Authors: Marty Buchaus, Dave Snider, Tim Adler if [ -z "$NNN_PIPE" ]; then echo 'ERROR: NNN_PIPE is not set' | ${PAGER:-less} @@ -16,16 +17,26 @@ if [ -z "$NNN_PIPE" ]; then fi if which jump >/dev/null 2>&1; then - printf "jump to: " + printf "jump to : " read -r dir odir="$(jump cd "$dir")" printf "%s" "0c$odir" > "$NNN_PIPE" elif which autojump >/dev/null 2>&1; then - printf "jump to: " + printf "jump to : " read -r dir odir="$(autojump "$dir")" printf "%s" "0c$odir" > "$NNN_PIPE" +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 else - printf "jump/autojump missing" + printf "No supported autojump script found. (jump/autojump/zoxide are supported)" read -r _ fi |