mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Simplify get_input()
This commit is contained in:
parent
984cffecc4
commit
4a2d978630
16
src/nnn.c
16
src/nnn.c
|
@ -822,22 +822,22 @@ static inline bool xconfirm(int c)
|
||||||
|
|
||||||
static int get_input(const char *prompt)
|
static int get_input(const char *prompt)
|
||||||
{
|
{
|
||||||
int r;
|
|
||||||
|
|
||||||
if (prompt)
|
if (prompt)
|
||||||
printmsg(prompt);
|
printmsg(prompt);
|
||||||
cleartimeout();
|
cleartimeout();
|
||||||
|
|
||||||
|
int r = getch();
|
||||||
|
|
||||||
#ifdef KEY_RESIZE
|
#ifdef KEY_RESIZE
|
||||||
do {
|
while (r == KEY_RESIZE) {
|
||||||
r = getch();
|
if (prompt) {
|
||||||
if (r == KEY_RESIZE && prompt) {
|
|
||||||
clearoldprompt();
|
clearoldprompt();
|
||||||
xlines = LINES;
|
xlines = LINES;
|
||||||
printmsg(prompt);
|
printmsg(prompt);
|
||||||
}
|
}
|
||||||
} while (r == KEY_RESIZE);
|
|
||||||
#else
|
r = getch();
|
||||||
r = getch();
|
}
|
||||||
#endif
|
#endif
|
||||||
settimeout();
|
settimeout();
|
||||||
return r;
|
return r;
|
||||||
|
|
Loading…
Reference in a new issue