input: recognize the deviant keycode for <Ctrl+End> in urxvt
This fixes https://savannah.gnu.org/bugs/?52972. Reported-by: Brand Huntsman <alpha@qzx.com>
Этот коммит содержится в:
родитель
83c264939b
Коммит
e11021a7a5
@ -665,6 +665,10 @@ int parse_kbinput(WINDOW *win)
|
|||||||
shift_held = TRUE;
|
shift_held = TRUE;
|
||||||
case KEY_C1: /* End (1) on keypad with NumLock off. */
|
case KEY_C1: /* End (1) on keypad with NumLock off. */
|
||||||
return KEY_END;
|
return KEY_END;
|
||||||
|
#ifdef KEY_EOL
|
||||||
|
case KEY_EOL: /* Ctrl+End on rxvt-unicode. */
|
||||||
|
return CONTROL_END;
|
||||||
|
#endif
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
#ifdef KEY_SPREVIOUS
|
#ifdef KEY_SPREVIOUS
|
||||||
case KEY_SPREVIOUS:
|
case KEY_SPREVIOUS:
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user