mirror of https://github.com/adamdruppe/arsd.git
enable backspace from kernel line buffer
This commit is contained in:
parent
d4ac2707c6
commit
0a57b5dbe9
|
@ -3628,6 +3628,12 @@ version(Posix) {
|
||||||
|
|
||||||
argv[args.length] = null;
|
argv[args.length] = null;
|
||||||
|
|
||||||
|
termios info;
|
||||||
|
ubyte[128] hack; // jic that druntime definition is still wrong
|
||||||
|
tcgetattr(master, &info);
|
||||||
|
info.c_cc[VERASE] = '\b';
|
||||||
|
tcsetattr(master, TCSANOW, &info);
|
||||||
|
|
||||||
core.sys.posix.unistd.execv(argv[0], argv);
|
core.sys.posix.unistd.execv(argv[0], argv);
|
||||||
} else {
|
} else {
|
||||||
childrenAlive = 1;
|
childrenAlive = 1;
|
||||||
|
|
Loading…
Reference in New Issue