nnn/plugins/autojump

21 lines
428 B
Plaintext
Raw Normal View History

2019-12-10 16:59:15 +00:00
#!/usr/bin/env sh
# Description: Navigate to directory using autojump
#
# Requires: autojump - https://github.com/wting/autojump
#
2019-12-16 00:25:15 +00:00
# Note: autojump STORES NAVIGATION PATTERNS
#
2019-12-10 16:59:15 +00:00
# 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
2020-01-02 17:43:56 +00:00
printf "autojump missing"
read -r _
2019-12-10 16:59:15 +00:00
fi