mirror of
https://github.com/janet-lang/janet
synced 2025-03-29 19:46:56 +00:00
Merge pull request #298 from leahneukirchen/m-del
Make alt-backspace behave like ctrl-w.
This commit is contained in:
commit
3f3b756b61
@ -765,6 +765,9 @@ static int line() {
|
||||
case '.': /* Alt-. */
|
||||
historymove(-JANET_HISTORY_MAX);
|
||||
break;
|
||||
case 127: /* Alt-backspace */
|
||||
kbackspacew();
|
||||
break;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user