1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-13 02:12:18 -07:00

Fix "End" key in PuTTY and older GNU screen

* lisp/term/xterm.el (xterm-alternatives-map): Map <select> to
<end> (bug#80473).
This commit is contained in:
Sean Whitton 2026-02-24 10:48:50 +00:00
parent 1197ccf993
commit 75a0a073d7

View file

@ -736,6 +736,11 @@ Return the pasted text as a string."
(define-key map [f71] [M-S-f11])
(define-key map [f72] [M-S-f12])
;; Some emulations of Xterm, including PuTTY and older versions of
;; GNU screen in its default configuration, send VT220 <select> when
;; the user presses the "End" key (bug#80473).
(define-key map [select] [end])
map)
"Keymap of possible alternative meanings for some keys.")