| `NNN_RESTRICT_NAV_OPEN=1` | open files on <kbd> ↵</kbd>, not <kbd>→</kbd> or <kbd>l</kbd> |
| `NNN_RESTRICT_0B=1` | do not open 0-byte files |
| `NNN_TRASH=1` | trash files to the desktop Trash [default: delete] |
-| `NNN_CP_MV_PROG=1` | show copy, move progress on Linux |
+| `NNN_OPS_PROG=1` | show copy, move progress on Linux |
#### Help
export NNN_TRASH=1
.Ed
.Pp
-\fBNNN_CP_MV_PROG:\fR show progress of copy, move operations (Linux-only, needs advcpmv).
+\fBNNN_OPS_PROG:\fR show progress of copy, move operations (Linux-only, needs advcpmv).
.Bd -literal
- export NNN_CP_MV_PROG=1
+ export NNN_OPS_PROG=1
.Ed
.Sh KNOWN ISSUES
If you are using urxvt you might have to set backspace key to DEC.
#define NNN_RESTRICT_0B 13
#define NNN_TRASH 14
#ifdef __linux__
-#define NNN_CP_MV_PROG 15
+#define NNN_OPS_PROG 15
#endif
static const char * const env_cfg[] = {
"NNN_RESTRICT_0B",
"NNN_TRASH",
#ifdef __linux__
- "NNN_CP_MV_PROG",
+ "NNN_OPS_PROG",
#endif
};
cfg.restrict0b = 1;
#ifdef __linux__
- if (!getenv(env_cfg[NNN_CP_MV_PROG])) {
+ if (!getenv(env_cfg[NNN_OPS_PROG])) {
cp[5] = cp[4];
cp[2] = cp[4] = ' ';