diff --git a/eventloop.d b/eventloop.d index b8b7050..dc6d15f 100644 --- a/eventloop.d +++ b/eventloop.d @@ -373,7 +373,7 @@ private FileEventDispatcher fileEventDispatcher; /// when the state changes. Failure to read it all will leave whatever is left /// in the buffer sitting there unnoticed until even more stuff comes in. public void addFileEventListeners(T...)(T t) {// if(__traits(compiles, fileEventDispatcher.addFile(t))) { - fileEventDispatcher.addFile!(T)(t); + fileEventDispatcher.addFile(t); } /// Removes the file from event handling diff --git a/terminal.d b/terminal.d index 761233c..777d5f1 100644 --- a/terminal.d +++ b/terminal.d @@ -2752,6 +2752,7 @@ class LineGetter { updateCursorPosition(); terminal.showCursor(); + lastDrawLength = terminal.width; // setting this so it clears the line redraw(); } @@ -2769,7 +2770,20 @@ class LineGetter { // we have to turn off cooked mode to get this answer, otherwise it will all // be messed up. (I hate unix terminals, the Windows way is so much easer.) - RealTimeConsoleInput input = RealTimeConsoleInput(terminal, ConsoleInputFlags.raw); + + // We also can't use RealTimeConsoleInput here because it also does event loop stuff + // which would be broken by the child destructor :( (maybe that should be a FIXME) + + ubyte[128] hack2; + termios old; + ubyte[128] hack; + tcgetattr(terminal.fdIn, &old); + auto n = old; + n.c_lflag &= ~(ICANON | ECHO); + tcsetattr(terminal.fdIn, TCSANOW, &n); + scope(exit) + tcsetattr(terminal.fdIn, TCSANOW, &old); + terminal.writeStringRaw("\033[6n"); terminal.flush();