diff options
author | Dave Snider <dave.snider@gmail.com> | 2020-08-28 15:33:25 -0700 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2020-08-29 05:36:19 +0530 |
commit | f79af220c7c3683636f50de94e97816171c1f651 (patch) | |
tree | 74e7a7bfb755daaf60a8739df5e3ef187c465d76 /plugins/autojump | |
parent | 2f61b0910dec004ba612fa6238ed8a2c4b9fe485 (diff) | |
download | nnn-f79af220c7c3683636f50de94e97816171c1f651.tar.gz |
Small plugin for jump. Also adds check for NNN_PIPE to autojump plugin (#714)
* Add jump plugin to nnn
* indents
* Readme for plugin
* add pipe check to autojump
* indents to 4
Merge plugins jump and autojump
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 54ff07b..3bfe228 100755 --- a/plugins/autojump +++ b/plugins/autojump @@ -1,20 +1,31 @@ #!/usr/bin/env sh -# Description: Navigate to directory using autojump +# Description: Navigate to directory using jump/autojump # -# Dependencies: autojump - https://github.com/wting/autojump +# Dependencies: jump - https://github.com/gsamokovarov/jump +# OR autojump - https://github.com/wting/autojump # -# Note: autojump STORES NAVIGATION PATTERNS +# Note: jump/autojump STORES NAVIGATION PATTERNS # # Shell: POSIX compliant -# Author: Marty Buchaus +# Authors: Marty Buchaus, Dave Snider -if which autojump >/dev/null 2>&1; then +if [ -z "$NNN_PIPE" ]; then + echo 'ERROR: NNN_PIPE is not set' | ${PAGER:-less} + exit 2 +fi + +if which jump >/dev/null 2>&1; then + 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: " read -r dir odir="$(autojump "$dir")" printf "%s" "0c$odir" > "$NNN_PIPE" else - printf "autojump missing" + printf "jump/autojump missing" read -r _ fi |