aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md6
-rw-r--r--nnn.11
-rw-r--r--plugins/README.md4
3 files changed, 6 insertions, 5 deletions
diff --git a/README.md b/README.md
index 234ae71..a98c716 100644
--- a/README.md
+++ b/README.md
@@ -122,9 +122,9 @@ It runs smoothly on the Pi, [Termux](https://www.youtube.com/watch?v=AbaauM7gUJw
## Quickstart
-1. [Install](https://github.com/jarun/nnn/wiki/Usage#installation) `nnn` and deps (if you need any).
-2. Configure [cd on quit](https://github.com/jarun/nnn/wiki/Basic-use-cases#configure-cd-on-quit).
-3. Files are opened with the desktop opener by default. Add `-e` in your alias to open text files in `$VISUAL`/`$EDITOR`/ vi. [Open detached](https://github.com/jarun/nnn/wiki/Basic-use-cases#detached-text) if you wish.
+1. [Install](https://github.com/jarun/nnn/wiki/Usage#installation) `nnn` and deps (if you need any). All files are opened with the desktop opener by default.
+2. Add option `-e` to your alias to open text files in `$VISUAL`/`$EDITOR`/ vi. [Open detached](https://github.com/jarun/nnn/wiki/Basic-use-cases#detached-text) if you wish.
+3. Configure [cd on quit](https://github.com/jarun/nnn/wiki/Basic-use-cases#configure-cd-on-quit).
4. [Install plugins](https://github.com/jarun/nnn/tree/master/plugins#installing-plugins).
5. Use option `-x` to copy selected file paths to system clipboard and show notis on cp, mv, rm completion.
6. For a CLI-only environment, customize and use plugin [`nuke`](https://github.com/jarun/nnn/blob/master/plugins/nuke) with option `-c` (overrides `-e`).
diff --git a/nnn.1 b/nnn.1
index 7655af3..3fb59a2 100644
--- a/nnn.1
+++ b/nnn.1
@@ -193,6 +193,7 @@ Special keys at filter prompt:
------ + ---------------------------------------
^char | Usual keybind functionality
Esc | Exit filter prompt but skip dir refresh
+ F5 | Exit filter prompt and refresh dir
------ + ---------------------------------------
.Ed
.Pp
diff --git a/plugins/README.md b/plugins/README.md
index bb71456..164207b 100644
--- a/plugins/README.md
+++ b/plugins/README.md
@@ -93,13 +93,13 @@ To select and invoke a plugin from the plugin directory, press <kbd>Enter</kbd>
#### Skip directory refresh after running a plugin
-`nnn` refreshes the directory after running a plugin to reflect any changes by the plugin. To disable this (say while running the `mediainfo` plugin on some filtered files), add a `-` before the plugin name:
+`nnn` refreshes the directory after running a plugin to reflect any changes by the plugin. To disable this (say while running the `mediainf` plugin on some filtered files), add a `-` before the plugin name:
```sh
export NNN_PLUG='m:-mediainf'
```
-Now `nnn` will not refresh the directory after running the `mediainfo` plugin.
+Now `nnn` will not refresh the directory after running the `mediainf` plugin.
## Running commands as plugin