/* Show a prompt with input string and return the changes */
static char *
-xreadline(char *fname)
+xreadline(char *fname, char *prompt)
{
int old_curs = curs_set(1);
size_t len, pos;
wint_t ch[2] = {0};
static wchar_t * const buf = (wchar_t *)g_buf;
+ printprompt(prompt);
+
if (fname) {
DPRINTF_S(fname);
len = pos = mbstowcs(buf, fname, NAME_MAX);
if (*ch == CONTROL('L')) {
clearprompt();
+ printprompt(prompt);
len = pos = 0;
continue;
}
if (*ch == CONTROL('U')) {
clearprompt();
+ printprompt(prompt);
memmove(buf, buf + pos, (len - pos) << 2);
len -= pos;
pos = 0;
settimeout();
DPRINTF_S(buf);
wcstombs(g_buf, buf, NAME_MAX);
+ clearprompt();
return g_buf;
}
else
printmsg("quotes off");
goto nochange;
- case SEL_OPEN:
- printprompt("open with: "); // fallthrough
+ case SEL_OPEN: // fallthrough
case SEL_ARCHIVE: // fallthrough
case SEL_NEW:
- if (sel != SEL_OPEN)
- printprompt("name: ");
+ if (sel == SEL_OPEN)
+ tmp = xreadline(NULL, "open with: ");
+ else
+ tmp = xreadline(NULL, "name: ");
- tmp = xreadline(NULL);
- clearprompt();
if (tmp == NULL || tmp[0] == '\0')
break;
if (ndents <= 0)
break;
- printprompt("");
- tmp = xreadline(dents[cur].name);
- clearprompt();
+ tmp = xreadline(dents[cur].name, "");
if (tmp == NULL || tmp[0] == '\0')
break;