mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-01-04 02:50:20 +01:00
terminal: Handle Alt-Backspace
This commit is contained in:
parent
6c6fb993f7
commit
b7f94bff3d
1 changed files with 2 additions and 0 deletions
|
|
@ -2148,6 +2148,8 @@ key_handler(struct window *window, struct input *input, uint32_t time,
|
|||
break;
|
||||
|
||||
case XKB_KEY_BackSpace:
|
||||
if (modifiers & MOD_ALT_MASK)
|
||||
ch[len++] = 0x1b;
|
||||
ch[len++] = 0x7f;
|
||||
break;
|
||||
case XKB_KEY_Tab:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue