mirror of
https://github.com/jarun/nnn.git
synced 2024-11-28 13:51:31 +00:00
Use NNN_DE_FILE_MANAGER
This commit is contained in:
parent
76327e9db3
commit
4e7e871990
|
@ -25,7 +25,7 @@ Noice is Not Noice, a noicer fork...
|
||||||
- [Keyboard shortcuts](#keyboard-shortcuts)
|
- [Keyboard shortcuts](#keyboard-shortcuts)
|
||||||
- [Filters](#filters)
|
- [Filters](#filters)
|
||||||
- [File type abbreviations](#file-type-abbreviations)
|
- [File type abbreviations](#file-type-abbreviations)
|
||||||
- [File association](#file-association)
|
- [File handling](#file-handling)
|
||||||
- [Help](#help)
|
- [Help](#help)
|
||||||
- [Quickstart](#quickstart)
|
- [Quickstart](#quickstart)
|
||||||
- [How to](#how-to)
|
- [How to](#how-to)
|
||||||
|
@ -133,7 +133,7 @@ nnn needs libreadline and libncursesw (on Linux or ncurses on OS X) and standard
|
||||||
| `Left`, `Backspace`, `h`, `^H` | Go to parent dir |
|
| `Left`, `Backspace`, `h`, `^H` | Go to parent dir |
|
||||||
| `~` | Jump to HOME dir |
|
| `~` | Jump to HOME dir |
|
||||||
| `-` | Jump to last visited dir |
|
| `-` | Jump to last visited dir |
|
||||||
| `o` | Open dir in desktop file manager |
|
| `o` | Open dir in `NNN_DE_FILE_MANAGER` |
|
||||||
| `/`, `&` | Filter dir contents |
|
| `/`, `&` | Filter dir contents |
|
||||||
| `c` | Show change dir prompt |
|
| `c` | Show change dir prompt |
|
||||||
| `d` | Toggle detail view |
|
| `d` | Toggle detail view |
|
||||||
|
@ -176,7 +176,7 @@ The following abbreviations are used in the detail view:
|
||||||
| `b` | Block Device |
|
| `b` | Block Device |
|
||||||
| `c` | Character Device |
|
| `c` | Character Device |
|
||||||
|
|
||||||
#### File association
|
#### File handling
|
||||||
- Set `NNN_OPENER` to let a desktop opener handle it all. E.g.:
|
- Set `NNN_OPENER` to let a desktop opener handle it all. E.g.:
|
||||||
|
|
||||||
export NNN_OPENER=xdg-open
|
export NNN_OPENER=xdg-open
|
||||||
|
|
2
nnn.1
2
nnn.1
|
@ -46,7 +46,7 @@ Change to the HOME directory
|
||||||
.It Ic -
|
.It Ic -
|
||||||
Change to the last visited directory
|
Change to the last visited directory
|
||||||
.It Ic o
|
.It Ic o
|
||||||
Open directory in desktop file manager
|
Open directory in NNN_DE_FILE_MANAGER
|
||||||
.It Ic /, &
|
.It Ic /, &
|
||||||
Change filter (more information below)
|
Change filter (more information below)
|
||||||
.It Ic c
|
.It Ic c
|
||||||
|
|
2
nnn.c
2
nnn.c
|
@ -936,7 +936,7 @@ show_help(void)
|
||||||
[Left], [Backspace], h, ^H Go to parent dir\n\
|
[Left], [Backspace], h, ^H Go to parent dir\n\
|
||||||
~ Jump to HOME dir\n\
|
~ Jump to HOME dir\n\
|
||||||
- Jump to last visited dir\n\
|
- Jump to last visited dir\n\
|
||||||
o Open dir in desktop file manager\n\
|
o Open dir in NNN_DE_FILE_MANAGER\n\
|
||||||
/, & Filter dir contents\n\
|
/, & Filter dir contents\n\
|
||||||
c Show change dir prompt\n\
|
c Show change dir prompt\n\
|
||||||
d Toggle detail view\n\
|
d Toggle detail view\n\
|
||||||
|
|
Loading…
Reference in a new issue