1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-05 20:43:08 +00:00

Meta + shift + Fn combos are recognized by xterm>=216.

* lisp/term/xterm.el (xterm-alternatives-map): Meta + shift +
Fn combos are recognized by xterm>=216 (bug#22837).
This commit is contained in:
Tino Calancha 2016-02-29 17:07:59 +11:00 committed by Lars Ingebrigtsen
parent fb0959e713
commit 16efc8d53f

View File

@ -590,6 +590,19 @@ string bytes that can be copied is 3/4 of this value."
(define-key map [f59] [M-f11])
(define-key map [f60] [M-f12])
(define-key map [f61] [M-S-f1])
(define-key map [f62] [M-S-f2])
(define-key map [f63] [M-S-f3])
(define-key map [f64] [M-S-f4])
(define-key map [f65] [M-S-f5])
(define-key map [f66] [M-S-f6])
(define-key map [f67] [M-S-f7])
(define-key map [f68] [M-S-f8])
(define-key map [f69] [M-S-f9])
(define-key map [f70] [M-S-f10])
(define-key map [f71] [M-S-f11])
(define-key map [f72] [M-S-f12])
map)
"Keymap of possible alternative meanings for some keys.")