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]);
|
||||
}
|
||||
|
||||
// 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
|
||||
void closeEventPipes() {
|
||||
unix.close(pipes[0]);
|
||||
|
|
|
@ -2693,6 +2693,7 @@ class LineGetter {
|
|||
}
|
||||
|
||||
updateCursorPosition();
|
||||
terminal.showCursor();
|
||||
|
||||
redraw();
|
||||
}
|
||||
|
@ -2916,6 +2917,8 @@ class LineGetter {
|
|||
auto history = historyFilter(f);
|
||||
if(history !is null)
|
||||
this.history ~= history;
|
||||
|
||||
// FIXME: we should hide the cursor if it was hidden in the call to startGettingLine
|
||||
return f;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue