aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2020-10-21 10:49:04 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2020-10-21 10:50:56 +0530
commit57163ffa5de7c2c8ab136e5f50ac56a7ce0dac7c (patch)
treecc5012090cf7d665b3d5cb65f619db83678f5df1
parentf3e122fc32489feff3cbe804d881fe6c9077bef5 (diff)
downloadnnn-57163ffa5de7c2c8ab136e5f50ac56a7ce0dac7c.tar.gz
Update plugin
-rw-r--r--plugins/README.md2
-rwxr-xr-xplugins/autojump7
2 files changed, 5 insertions, 4 deletions
diff --git a/plugins/README.md b/plugins/README.md
index 07aa7a8..3d2a609 100644
--- a/plugins/README.md
+++ b/plugins/README.md
@@ -16,7 +16,7 @@ Plugins extend the capabilities of `nnn`. They are _executable_ scripts (or bina
| Plugin (a-z) | Description | Lang | Dependencies |
| --- | --- | --- | --- |
-| [autojump](autojump) | Navigate to dir/path | sh | [jump](https://github.com/gsamokovarov/jump)/autojump |
+| [autojump](autojump) | Navigate to dir/path | sh | [jump](https://github.com/gsamokovarov/jump)/autojump/zoxide |
| [bookmarks](bookmarks) | Use named bookmarks managed with symlinks | sh | fzf |
| [boom](boom) | Play random music from dir | sh | [moc](http://moc.daper.net/) |
| [bulknew](bulknew) | Create multiple files/dirs at once | bash | sed, xargs, mktemp |
diff --git a/plugins/autojump b/plugins/autojump
index c4ba5d1..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}