]> Sergey Matveev's repositories - nnn.git/commitdiff
Rename env var
authorArun Prakash Jana <engineerarun@gmail.com>
Sat, 9 Mar 2019 08:16:18 +0000 (13:46 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Sat, 9 Mar 2019 08:16:18 +0000 (13:46 +0530)
README.md
nnn.1
src/nnn.c

index 6a406661d18a05c9c80e3754d7ff1ae3c7e8e1ea..eb34f1a73828b918e419e1c91b9af86715e91f2c 100644 (file)
--- a/README.md
+++ b/README.md
@@ -379,7 +379,7 @@ The following indicators are used in the detail view:
 | `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
 
diff --git a/nnn.1 b/nnn.1
index c4c168499e11fd32632f2df8fab69bc074834b48..d09cc3eee42e19263f58f6c7f20c5d3148b5437c 100644 (file)
--- a/nnn.1
+++ b/nnn.1
@@ -353,9 +353,9 @@ files.
     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.
index 0f33df9560bf1d971b1d99411c539f7a1f842753..baab55b306e15741f43028d1e8794e724fd41a2b 100644 (file)
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -447,7 +447,7 @@ static const char * const messages[] = {
 #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[] = {
@@ -467,7 +467,7 @@ static const char * const env_cfg[] = {
        "NNN_RESTRICT_0B",
        "NNN_TRASH",
 #ifdef __linux__
-       "NNN_CP_MV_PROG",
+       "NNN_OPS_PROG",
 #endif
 };
 
@@ -4102,7 +4102,7 @@ int main(int argc, char *argv[])
                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] = ' ';