mirror of https://github.com/adamdruppe/arsd.git
new stuff
This commit is contained in:
parent
8f09236fc9
commit
9a1992894b
|
@ -671,6 +671,9 @@ private int[2] pipes;
|
||||||
makeNonBlocking(pipes[1]);
|
makeNonBlocking(pipes[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// FIXME: maybe I should reset all the handles too when new thigns are opened
|
||||||
|
// so like listeners = null, etc.
|
||||||
|
|
||||||
// you shouldn't have to call this
|
// you shouldn't have to call this
|
||||||
void closeEventPipes() {
|
void closeEventPipes() {
|
||||||
unix.close(pipes[0]);
|
unix.close(pipes[0]);
|
||||||
|
|
|
@ -2693,6 +2693,7 @@ class LineGetter {
|
||||||
}
|
}
|
||||||
|
|
||||||
updateCursorPosition();
|
updateCursorPosition();
|
||||||
|
terminal.showCursor();
|
||||||
|
|
||||||
redraw();
|
redraw();
|
||||||
}
|
}
|
||||||
|
@ -2916,6 +2917,8 @@ class LineGetter {
|
||||||
auto history = historyFilter(f);
|
auto history = historyFilter(f);
|
||||||
if(history !is null)
|
if(history !is null)
|
||||||
this.history ~= history;
|
this.history ~= history;
|
||||||
|
|
||||||
|
// FIXME: we should hide the cursor if it was hidden in the call to startGettingLine
|
||||||
return f;
|
return f;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue