From bd30e412547869e7ebe6d67a5d58db7fa0f1ea24 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Fri, 4 Jan 2019 08:32:55 +0530 Subject: [PATCH] Update docs --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 2b920ded..52b94698 100644 --- a/README.md +++ b/README.md @@ -74,12 +74,12 @@ We need contributors. Please visit the [ToDo list](https://github.com/jarun/nnn/ - [change dir color](#change-dir-color) - [integrate patool](#integrate-patool) - [lftp transfers](#lftp-transfers) - - [work faster at rename prompt](#work-faster-at-rename-prompt) + - [prompt shortcuts](#prompt-shortcuts) - [set idle timeout](#set-idle-timeout) - - [show hot plugged drives](#show-hot-plugged-drives) + - [show hot-plugged drives](#show-hot-plugged-drives) - [tmux configuration](#tmux-configuration) - [BSD terminal issue](#bsd-terminal-issue) - - [disable file open on navigation](#disable-file-open-on-navigation) + - [restrict file open](#restrict-file-open) - [Why fork?](#why-fork) - [Mentions](#mentions) - [Developers](#developers) @@ -503,15 +503,15 @@ On systems where `atool` is not available but `patool` is, drop two copies of th lftp can be used from `nnn` for automated remote transfers or copying a selection to a server. Visit the [wiki page](https://github.com/jarun/nnn/wiki/simplify-remote-transfers-with-lftp) for more details on the integration. -#### work faster at rename prompt +#### prompt shortcuts -The rename prompt supports some bash-like command-line shortcuts - ^A, ^E, ^U. ^L clears the name. +The prompts (expect filter prompt) support some bash-like command-line shortcuts - ^A, ^E, ^U. ^L clears the input. #### set idle timeout The terminal locker is disabled by default. To set the wait time in seconds, use environment variable `NNN_IDLE_TIMEOUT`. -#### show hot plugged drives +#### show hot-plugged drives Enable volume management in your DE file manager and set removable drives or media to be auto-mounted when inserted. Then visit the usual mount point location (`/mnt` or `/media/user`) in `nnn`. @@ -523,13 +523,13 @@ Enable volume management in your DE file manager and set removable drives or med By default in OpenBSD & FreeBSD, `stty` maps ^Y to `DSUSP`. This means that typing ^Y will suspend `nnn` as if you typed ^Z (you can bring `nnn` back to the foreground by issuing `fg`) instead of entering multi-copy mode. You can check this with `stty -a`. If it includes the text `dsusp = ^Y`, issuing `stty dsusp undef` will disable this `DSUSP` and let `nnn` receive the ^Y instead. -#### Disable file open on navigation +#### Restrict file open In order to disable opening files on accidental navigation key ( or l) press: export DISABLE_FILE_OPEN_ON_NAV=1 -To open files with this setting, press Enter. +Use Enter to open files. #### WHY FORK?