mirror of
https://github.com/jarun/nnn.git
synced 2025-01-09 17:39:38 +00:00
Support readline in open with
This commit is contained in:
parent
c4f39a200a
commit
12a4ab3248
|
@ -3757,7 +3757,14 @@ nochange:
|
|||
tmp = xreadline(tmp, "archive name: ");
|
||||
break;
|
||||
case SEL_OPENWITH:
|
||||
#ifdef NORL
|
||||
tmp = xreadline(NULL, "open with: ");
|
||||
#else
|
||||
presel = 0;
|
||||
tmp = getreadline("open with: ", path, ipath, &presel);
|
||||
if (presel == MSGWAIT)
|
||||
goto nochange;
|
||||
#endif
|
||||
break;
|
||||
case SEL_NEW:
|
||||
tmp = xreadline(NULL, "name/link suffix [@ for none]: ");
|
||||
|
|
Loading…
Reference in a new issue