aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/autojump
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-12-16 05:55:15 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-12-16 05:55:15 +0530
commit5c76187b61295d2cc7b4d026e294536c6e410636 (patch)
treea29a6c4399494caf280c85bb28eb6491cbdc3c24 /plugins/autojump
parent208a6605f55474abb1ba45296749177752895f5f (diff)
downloadnnn-5c76187b61295d2cc7b4d026e294536c6e410636.tar.gz
Update docs
Diffstat (limited to 'plugins/autojump')
-rwxr-xr-xplugins/autojump17
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