diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2019-12-16 05:55:15 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2019-12-16 05:55:15 +0530 |
commit | 5c76187b61295d2cc7b4d026e294536c6e410636 (patch) | |
tree | a29a6c4399494caf280c85bb28eb6491cbdc3c24 /plugins/autojump | |
parent | 208a6605f55474abb1ba45296749177752895f5f (diff) | |
download | nnn-5c76187b61295d2cc7b4d026e294536c6e410636.tar.gz |
Update docs
Diffstat (limited to 'plugins/autojump')
-rwxr-xr-x | plugins/autojump | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/plugins/autojump b/plugins/autojump deleted file mode 100755 index d158113..0000000 --- a/plugins/autojump +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env sh - -# Description: Navigate to directory using autojump -# -# Requires: autojump - https://github.com/wting/autojump -# -# Shell: POSIX compliant -# Author: Marty Buchaus - -if which autojump >/dev/null 2>&1; then - printf "jump to: " - read -r dir - odir="$(autojump "$dir")" - printf "%s" "0$odir" > "$NNN_PIPE" -else - exit 1 -fi |