From 46b48cf71cc59d1997ecf9606df5bd042f1eacbc Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Mon, 7 Jun 2021 01:18:34 +0530 Subject: [PATCH] Update examples --- plugins/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/README.md b/plugins/README.md index a54cb9c5..e8abf17a 100644 --- a/plugins/README.md +++ b/plugins/README.md @@ -246,6 +246,7 @@ There are many plugins provided by `nnn` which can be used as examples. Here are ```sh #!/usr/bin/env sh + git log -p -- "$1" ``` @@ -253,6 +254,7 @@ git log -p -- "$1" ```sh #!/usr/bin/env sh + . $(dirname $0)/.nnn-plugin-helper nnn_cd "$(xsel -ob)" @@ -262,6 +264,7 @@ nnn_cd "$(xsel -ob)" ```sh #!/usr/bin/env sh + . $(dirname $0)/.nnn-plugin-helper nnn_cd "$(dirname $(readlink -fn $1))" 0 @@ -271,6 +274,7 @@ nnn_cd "$(dirname $(readlink -fn $1))" 0 ```sh #!/usr/bin/env sh + printf "cd to: " read -r dir @@ -281,6 +285,7 @@ printf "%s" "0c$dir" > "$NNN_PIPE" ```sh #!/usr/bin/env sh + if [ -z "$NNN_FIFO" ] ; then exit 1 fi