Commit e11021a7 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

input: recognize the deviant keycode for <Ctrl+End> in urxvt

This fixes https://savannah.gnu.org/bugs/?52972

.
Reported-by: default avatarBrand Huntsman <alpha@qzx.com>
No related merge requests found
Showing with 4 additions and 0 deletions
+4 -0
......@@ -665,6 +665,10 @@ int parse_kbinput(WINDOW *win)
shift_held = TRUE;
case KEY_C1: /* End (1) on keypad with NumLock off. */
return KEY_END;
#ifdef KEY_EOL
case KEY_EOL: /* Ctrl+End on rxvt-unicode. */
return CONTROL_END;
#endif
#ifndef NANO_TINY
#ifdef KEY_SPREVIOUS
case KEY_SPREVIOUS:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment