1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-30 19:53:09 +00:00

(terminal-init-xterm): Fix bindings for C-tab,

S-tab and C-S-tab.
This commit is contained in:
Dan Nicolaescu 2006-07-27 18:31:23 +00:00
parent dfed8466d3
commit cecee05315
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2006-07-27 Dan Nicolaescu <dann@ics.uci.edu>
* term/xterm.el (terminal-init-xterm): Fix bindings for C-tab,
S-tab and C-S-tab.
2006-07-28 Nick Roberts <nickrob@snap.net.nz>
* progmodes/which-func.el (which-function): Fix documentation/

View File

@ -230,17 +230,17 @@
;; These keys are available in xterm starting from version 214
;; if the modifyOtherKeys resource is set to 1.
(define-key map "\e[27;5;9~" [?\C-\t])
(define-key map "\e[27;5;9~" [C-tab])
(define-key map "\e[27;5;13~" [C-return])
(define-key map "\e[27;5;44~" [?\C-,])
(define-key map "\e[27;5;46~" [?\C-.])
(define-key map "\e[27;5;47~" [?\C-/])
(define-key map "\e[27;5;92~" [?\C-\\])
(define-key map "\e[27;2;9~" [?\S-\t])
(define-key map "\e[27;2;9~" [S-tab])
(define-key map "\e[27;2;13~" [S-return])
(define-key map "\e[27;6;9~" [?\C-\S-\t])
(define-key map "\e[27;6;9~" [(C-S-tab)])
(define-key map "\e[27;13;46~" [?\C-\M-.])