Add support for keypad `=' key in xterm.el
* lisp/term/xterm.el (xterm-function-map): Add support for keypad = key (bug#16645).
This commit is contained in:
parent
afddd5529d
commit
f12df3b5a0
1 changed files with 3 additions and 0 deletions
|
|
@ -394,6 +394,9 @@ Return the pasted text as a string."
|
|||
(define-key map "\eOx" [kp-8])
|
||||
(define-key map "\eOy" [kp-9])
|
||||
|
||||
;; Some keypads have an equal key (for instance, most Apple keypads).
|
||||
(define-key map "\eOX" [kp-equal])
|
||||
|
||||
(define-key map "\eO2j" [S-kp-multiply])
|
||||
(define-key map "\eO2k" [S-kp-add])
|
||||
(define-key map "\eO2l" [S-kp-separator])
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue