This website works better with JavaScript.
Home
Explore
Help
Sign In
Immanuel
/
nnn
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Retain nav-as-you-type mode after exiting spawned shell
master
Arun Prakash Jana
6 years ago
parent
ca1e2a02d8
commit
298ce7639e
No known key found for this signature in database
GPG Key ID:
A75979F35C080412
1 changed files
with
7 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-1
nnn.c
+ 7
- 1
nnn.c
View File
@@ -3167,10 +3167,16 @@ nochange:
case SEL_RUN:
case SEL_RUN:
run = xgetenv(env, run);
run = xgetenv(env, run);
spawn(run, NULL, NULL, path, F_NORMAL | F_MARKER);
spawn(run, NULL, NULL, path, F_NORMAL | F_MARKER);
/* Repopulate as directory content may have changed */
/* Continue in navigate-as-you-type mode, if enabled */
if (cfg.filtermode)
presel = FILTER;
/* Save current */
/* Save current */
if (ndents > 0)
if (ndents > 0)
copycurname();
copycurname();
/* Repopulate as directory content may have changed */
goto begin;
goto begin;
case SEL_RUNARG:
case SEL_RUNARG:
run = xgetenv(env, run);
run = xgetenv(env, run);
Write
Preview
Loading…
Cancel
Save