mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 20:01:27 +00:00
Fix wrong prompt
This commit is contained in:
parent
0d435614b2
commit
572094c838
|
@ -3221,11 +3221,10 @@ nochange:
|
||||||
goto nochange;
|
goto nochange;
|
||||||
}
|
}
|
||||||
|
|
||||||
r = get_input("press 'c' for cli mode");
|
if (sel == SEL_OPEN || sel == SEL_LAUNCH) {
|
||||||
if (r == 'c')
|
r = get_input("press 'c' for cli mode");
|
||||||
r = F_NORMAL;
|
(r == 'c') ? (r = F_NORMAL) : (r = F_NOWAIT | F_NOTRACE);
|
||||||
else
|
}
|
||||||
r = F_NOWAIT | F_NOTRACE;
|
|
||||||
|
|
||||||
if (sel == SEL_OPEN) {
|
if (sel == SEL_OPEN) {
|
||||||
getprogarg(tmp, &ptr);
|
getprogarg(tmp, &ptr);
|
||||||
|
|
Loading…
Reference in a new issue