diff options
| author | 2017-04-06 09:57:32 +0530 | |
|---|---|---|
| committer | 2017-04-06 09:57:32 +0530 | |
| commit | e5b9a11584bd621e333605a6717966d9e42eb032 (patch) | |
| tree | dbcf00fbfa27019ffd6aa8cfd78115df4b225ab4 | |
| parent | 579316b5c04c0fc5dd8c7cb641cda34aaec1abd9 (diff) | |
| download | nnn-e5b9a11584bd621e333605a6717966d9e42eb032.tar.gz | |
Show marker only when spawning a shell.
| -rw-r--r-- | nnn.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1185,7 +1185,7 @@ nochange: } } exitcurses(); - spawn(bin, newpath, NULL, 1); + spawn(bin, newpath, NULL, 0); initcurses(); continue; } @@ -1351,7 +1351,7 @@ nochange: case SEL_RUN: run = xgetenv(env, run); exitcurses(); - spawn(run, NULL, path, 0); + spawn(run, NULL, path, 1); initcurses(); /* Re-populate as directory content may have changed */ goto begin; |