mirror of
https://github.com/jarun/nnn.git
synced 2025-01-25 02:06:50 +00:00
Skip shell invocation to run user-scripts
This commit is contained in:
parent
b9205f1778
commit
9ca3f7d06b
|
@ -3036,13 +3036,15 @@ nochange:
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
mkpath(path, dents[cur].name, newpath);
|
mkpath(path, dents[cur].name, newpath);
|
||||||
|
/* Copy to path so we can return back to earlier dir */
|
||||||
xstrlcpy(path, rundir, PATH_MAX);
|
xstrlcpy(path, rundir, PATH_MAX);
|
||||||
if (runfile[0]) {
|
if (runfile[0]) {
|
||||||
xstrlcpy(lastname, runfile, NAME_MAX);
|
xstrlcpy(lastname, runfile, NAME_MAX);
|
||||||
spawn(shell, newpath, lastname, path, F_SHELL);
|
spawn(newpath, lastname, NULL, path,
|
||||||
|
F_NORMAL | F_SIGINT);
|
||||||
runfile[0] = '\0';
|
runfile[0] = '\0';
|
||||||
} else
|
} else
|
||||||
spawn(shell, newpath, NULL, path, F_SHELL);
|
spawn(newpath, NULL, NULL, path, F_NORMAL | F_SIGINT);
|
||||||
rundir[0] = '\0';
|
rundir[0] = '\0';
|
||||||
cfg.runscript = 0;
|
cfg.runscript = 0;
|
||||||
setdirwatch();
|
setdirwatch();
|
||||||
|
@ -3807,7 +3809,7 @@ nochange:
|
||||||
/* Regular script file */
|
/* Regular script file */
|
||||||
if (S_ISREG(sb.st_mode)) {
|
if (S_ISREG(sb.st_mode)) {
|
||||||
tmp = ndents ? dents[cur].name : NULL;
|
tmp = ndents ? dents[cur].name : NULL;
|
||||||
spawn(shell, scriptpath, tmp, path, F_SHELL);
|
spawn(scriptpath, tmp, NULL, path, F_NORMAL | F_SIGINT);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
0
user-scripts/edit.sh
Normal file → Executable file
0
user-scripts/edit.sh
Normal file → Executable file
0
user-scripts/fzy.sh
Normal file → Executable file
0
user-scripts/fzy.sh
Normal file → Executable file
0
user-scripts/picker.sh
Normal file → Executable file
0
user-scripts/picker.sh
Normal file → Executable file
0
user-scripts/sxiv.sh
Normal file → Executable file
0
user-scripts/sxiv.sh
Normal file → Executable file
Loading…
Reference in a new issue