diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2019-06-24 21:50:01 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2019-06-24 21:50:01 +0530 |
commit | 80bdeb8d724ee57d86ad7d432f4ae7b43744c2fb (patch) | |
tree | a3e2137090a6b3da7d7013078c263d3c6320a617 | |
parent | 277f156c370bfca23ec87e41bf42ff2a37f7eb6d (diff) | |
download | nnn-80bdeb8d724ee57d86ad7d432f4ae7b43744c2fb.tar.gz |
Fix order of options in man
-rw-r--r-- | nnn.1 | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -145,9 +145,10 @@ when dealing with the !, e and p commands respectively. A single combination to NOTE: Bookmark keys should be single-character to use them in combination with the Leader key. .Ed .Pp -\fBNNN_OPENER:\fR specify a custom file opener. +\fBNNN_USE_EDITOR:\fR use VISUAL (else EDITOR, preferably CLI, fallback vi) to handle text +files. .Bd -literal - export NNN_OPENER=mimeopen + export NNN_USE_EDITOR=1 .Ed .Pp \fBNNN_CONTEXT_COLORS:\fR string of color codes for each context, e.g.: @@ -157,28 +158,27 @@ when dealing with the !, e and p commands respectively. A single combination to codes: 0-black, 1-red, 2-green, 3-yellow, 4-blue (default), 5-magenta, 6-cyan, 7-white .Ed .Pp -\fBNNN_SSHFS_OPTS:\fR Pass additional options to sshfs command: +\fBNNN_SSHFS_OPTS:\fR pass additional options to sshfs command: .Bd -literal export NNN_SSHFS_OPTS='sshfs -o reconnect,idmap=user,cache_timeout=3600' NOTE: The options must be preceded by `sshfs` and comma-separated without any space between them. .Ed .Pp -\fBNNN_IDLE_TIMEOUT:\fR set idle timeout (in seconds) to invoke terminal locker (default: disabled). -.Pp -\fBNNN_COPIER:\fR system clipboard copier script. The project page has some sample copier scripts. -.Pp \fBNNN_NOTE:\fR \fIabsolute\fR path to a note file. .Bd -literal export NNN_NOTE='/home/user/.mynotes' .Ed .Pp -\fBNNN_USE_EDITOR:\fR use EDITOR (VISUAL takes preference, preferably CLI, fallback vi) to handle text -files. +\fBNNN_OPENER:\fR specify a custom file opener. .Bd -literal - export NNN_USE_EDITOR=1 + export NNN_OPENER=mimeopen .Ed .Pp +\fBNNN_IDLE_TIMEOUT:\fR set idle timeout (in seconds) to invoke terminal locker (default: disabled). +.Pp +\fBNNN_COPIER:\fR system clipboard copier script. The project page has some sample copier scripts. +.Pp \fBNNN_NO_AUTOSELECT:\fR disable directory auto-selection in \fInavigate-as-you-type\fR mode. .Bd -literal export NNN_NO_AUTOSELECT=1 |