enable backspace from kernel line buffer

This commit is contained in:
Adam D. Ruppe 2022-04-05 16:33:22 -04:00
parent d4ac2707c6
commit 0a57b5dbe9
1 changed files with 6 additions and 0 deletions

View File

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