aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nnn.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 1cdaa56..76e448e 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -2161,8 +2161,8 @@ static bool show_help(char *path)
dprintf(fd, "NNN_SHOW_HIDDEN: 1\n");
if (getenv("NNN_NO_AUTOSELECT"))
dprintf(fd, "NNN_NO_AUTOSELECT: 1\n");
- if (getenv("DISABLE_FILE_OPEN_ON_NAV"))
- dprintf(fd, "DISABLE_FILE_OPEN_ON_NAV: 1\n");
+ if (getenv("NNN_NO_FILE_OPEN_ON_NAV"))
+ dprintf(fd, "NNN_NO_FILE_OPEN_ON_NAV: 1\n");
dprintf(fd, "\n");
@@ -3778,7 +3778,7 @@ int main(int argc, char *argv[])
cfg.autoselect = 0;
/* Disable opening files on right arrow and `l` */
- if (getenv("DISABLE_FILE_OPEN_ON_NAV"))
+ if (getenv("NNN_NO_FILE_OPEN_ON_NAV"))
cfg.nonavopen = 1;
/* Restrict opening of 0-byte files */