]> Sergey Matveev's repositories - nnn.git/commitdiff
Update plugin
authorArun Prakash Jana <engineerarun@gmail.com>
Wed, 21 Oct 2020 05:19:04 +0000 (10:49 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Wed, 21 Oct 2020 05:20:56 +0000 (10:50 +0530)
plugins/README.md
plugins/autojump

index 07aa7a8f0d8ca3b76a91bcb376de322c9846c151..3d2a609cdfb099b2c0468800351fd80749248aad 100644 (file)
@@ -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 |
index c4ba5d16b5f7f8d606daf040c6e33aa713eacb35..db10c84a8e463c14a3636796c50a1ab982e0aea4 100755 (executable)
@@ -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}