aboutsummaryrefslogtreecommitdiffstats
path: root/src/nnn.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nnn.c')
-rw-r--r--src/nnn.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 20b7b25..33ac941 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -5792,6 +5792,7 @@ int main(int argc, char *argv[])
initpath = "/";
} else {
arg = argv[optind];
+ DPRINTF_S(arg);
if (strlen(arg) > 7 && !strncmp(arg, "file://", 7))
arg = arg + 7;
initpath = realpath(arg, NULL);
@@ -5814,7 +5815,7 @@ int main(int argc, char *argv[])
}
if (S_ISREG(sb.st_mode)) {
- spawn(opener, arg, NULL, NULL, F_NOWAIT);
+ spawn(opener, arg, NULL, NULL, cfg.cliopener ? F_CLI : F_NOTRACE | F_NOWAIT);
return _SUCCESS;
}
}