From: Alan Cox Date: Sun, 10 May 2015 12:31:15 +0000 (+0100) Subject: tty: switch default binding to ^H for deletion X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=ce0ed75e6d8f66dbb038f5efc9a2243dc60fea8f;p=FUZIX.git tty: switch default binding to ^H for deletion This fits in with the way we map keyboards and a lot of terminals --- diff --git a/Kernel/start.c b/Kernel/start.c index c57e130c..7bdeaa29 100644 --- a/Kernel/start.c +++ b/Kernel/start.c @@ -21,7 +21,7 @@ static const struct termios ttydflt = { OPOST | ONLCR, CS8 | TTY_INIT_BAUD | CREAD | HUPCL, ISIG | ICANON | ECHO | ECHOE | ECHOK | IEXTEN, - {CTRL('D'), 0, 127, CTRL('C'), + {CTRL('D'), 0, CTRL('H'), CTRL('C'), CTRL('U'), CTRL('\\'), CTRL('Q'), CTRL('S'), CTRL('Z'), CTRL('Y'), CTRL('V'), CTRL('O') }