From 0a57b5dbe984a19a708ae598bf471d52bcd1d884 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Tue, 5 Apr 2022 16:33:22 -0400 Subject: [PATCH] enable backspace from kernel line buffer --- terminalemulator.d | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/terminalemulator.d b/terminalemulator.d index 7368337..dcf4abd 100644 --- a/terminalemulator.d +++ b/terminalemulator.d @@ -3628,6 +3628,12 @@ version(Posix) { 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); } else { childrenAlive = 1;