new stuff

This commit is contained in:
Adam D. Ruppe 2014-12-18 09:18:56 -05:00
parent 8f09236fc9
commit 9a1992894b
2 changed files with 6 additions and 0 deletions

View File

@ -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]);

View File

@ -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;
} }
} }