mirror of https://github.com/adamdruppe/arsd.git
bug fixes
This commit is contained in:
parent
7116fc3453
commit
30716148f0
|
@ -373,7 +373,7 @@ private FileEventDispatcher fileEventDispatcher;
|
||||||
/// when the state changes. Failure to read it all will leave whatever is left
|
/// 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.
|
/// in the buffer sitting there unnoticed until even more stuff comes in.
|
||||||
public void addFileEventListeners(T...)(T t) {// if(__traits(compiles, fileEventDispatcher.addFile(t))) {
|
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
|
/// Removes the file from event handling
|
||||||
|
|
16
terminal.d
16
terminal.d
|
@ -2752,6 +2752,7 @@ class LineGetter {
|
||||||
updateCursorPosition();
|
updateCursorPosition();
|
||||||
terminal.showCursor();
|
terminal.showCursor();
|
||||||
|
|
||||||
|
lastDrawLength = terminal.width; // setting this so it clears the line
|
||||||
redraw();
|
redraw();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2769,7 +2770,20 @@ class LineGetter {
|
||||||
|
|
||||||
// we have to turn off cooked mode to get this answer, otherwise it will all
|
// 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.)
|
// 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.writeStringRaw("\033[6n");
|
||||||
terminal.flush();
|
terminal.flush();
|
||||||
|
|
Loading…
Reference in New Issue