From 4f95796edecc77efe17d32cb8f015e6c86d169a2 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sat, 28 Jan 2023 10:01:46 +0530 Subject: [PATCH] Run cmd as plugin now supported exported variables --- nnn.1 | 2 +- plugins/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nnn.1 b/nnn.1 index 7025d6a4..9d6d813d 100644 --- a/nnn.1 +++ b/nnn.1 @@ -429,7 +429,7 @@ separated by \fI;\fR: To run a plugin at startup, use the option `-P` followed by the plugin key. NOTES: - 1. Place $nnn in double quotes (\fB"$nnn"\fR) + 1. Place $nnn (or exported variables) in double quotes (\fB"$nnn"\fR) 2. Use single quotes for $NNN_PLUG so "$nnn" is not interpreted 3. (Again) add \fB!\fR before the command 4. To disable directory refresh after running a \fIcommand as plugin\fR, diff --git a/plugins/README.md b/plugins/README.md index 5d749c17..460f2af9 100644 --- a/plugins/README.md +++ b/plugins/README.md @@ -180,7 +180,7 @@ export NNN_PLUG='m:-!|mediainfo "$nnn";t:-!|tree -ps;l:-!|ls -lah --group-direct This option is incompatible with `&` (terminal output is masked for GUI programs) and ignores `*` (output is already paged for user). Notes: -1. Place `$nnn` in double quotes (**`"$nnn"`**) +1. Place `$nnn` (or exported variables) in double quotes (**`"$nnn"`**) 2. Use single quotes for `$NNN_PLUG` so `"$nnn"` is not interpreted 3. (_Again_) add `!` before the command 4. To disable directory refresh after running a _command as plugin_, prefix with `-!`