diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2019-12-18 21:53:18 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2019-12-18 21:53:18 +0530 |
commit | 6b5bb16b46cbf8ee2b6c34d7b52ddbf872f40930 (patch) | |
tree | 1db813ee0f373e321b76769a6f1ac2d55bebbd6b /plugins/README.md | |
parent | fb2c548e86ca92b53dc01bf232ecb2b9c6896785 (diff) | |
download | nnn-6b5bb16b46cbf8ee2b6c34d7b52ddbf872f40930.tar.gz |
Minor improvements
- reduce 4 spaces between help columns as it's too wide for handhelds
- support `]` as prompt in nav-as-you-type-mode when filter is empty
- update plugin docs
Diffstat (limited to 'plugins/README.md')
-rw-r--r-- | plugins/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/README.md b/plugins/README.md index 763aa43..4676a96 100644 --- a/plugins/README.md +++ b/plugins/README.md @@ -87,7 +87,7 @@ For example: Now <kbd>;x</kbd> can be used to make a file executable, <kbd>;g</kbd> can be used to the git log of a git project directory, <kbd>;s</kbd> can be used to preview a partially downloaded media file. -`nnn` waits for user confirmation when it executes a command as plugin (unline plugins which can add a `read` to wait). If you do not need to wait for user confirmation after the command has executed, add a `*` after the command. For example: +`nnn` waits for user confirmation (the prompt `Press Enter to continue`) when it executes a command as plugin (unline plugins which can add a `read` to wait). If you do not need to wait for user confirmation after the command has executed, add a `*` after the command. For example: export NNN_PLUG='x:_chmod +x $nnn;g:_git log;s:_smplayer $nnn*;o:fzopen' |