1
0
mirror of https://github.com/janet-lang/janet synced 2025-09-01 10:28:04 +00:00

Merge pull request #298 from leahneukirchen/m-del

Make alt-backspace behave like ctrl-w.
This commit is contained in:
Calvin Rose
2020-03-07 10:14:14 -06:00
committed by GitHub

View File

@@ -765,6 +765,9 @@ static int line() {
case '.': /* Alt-. */
historymove(-JANET_HISTORY_MAX);
break;
case 127: /* Alt-backspace */
kbackspacew();
break;
}
}
break;