Mercurial > emacs
changeset 85109:ee1411f40132
(rxvt-alternatives-map): New map.
(terminal-init-rxvt): Use it.
Bind rxvt-function-map in input-decode-map.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Tue, 09 Oct 2007 05:16:20 +0000 |
parents | 589b4d30fe83 |
children | 7960438eca87 |
files | lisp/ChangeLog lisp/term/rxvt.el |
diffstat | 2 files changed, 55 insertions(+), 43 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Tue Oct 09 05:15:00 2007 +0000 +++ b/lisp/ChangeLog Tue Oct 09 05:16:20 2007 +0000 @@ -1,5 +1,9 @@ 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca> + * term/rxvt.el (rxvt-alternatives-map): New map. + (terminal-init-rxvt): Use it. + Bind rxvt-function-map in input-decode-map. + * term/xterm.el (xterm-alternatives-map): New map. (terminal-init-xterm): Use it. Bind xterm-function-map in input-decode-map.
--- a/lisp/term/rxvt.el Tue Oct 09 05:15:00 2007 +0000 +++ b/lisp/term/rxvt.el Tue Oct 09 05:16:20 2007 +0000 @@ -29,7 +29,7 @@ (defvar rxvt-function-map (let ((map (make-sparse-keymap))) - ;; Set up function-key-map entries that termcap and terminfo don't know. + ;; Set up input-decode-map entries that termcap and terminfo don't know. (define-key map "\e[A" [up]) (define-key map "\e[B" [down]) (define-key map "\e[C" [right]) @@ -114,56 +114,64 @@ map) "Function key overrides for rxvt.") +(defvar rxvt-alternatives-map + (let ((map (make-sparse-keymap))) + ;; The terminal intialization C code file might have initialized + ;; function keys F11->F42 from the termcap/terminfo information. On + ;; a PC-style keyboard these keys correspond to + ;; MODIFIER-FUNCTION_KEY, where modifier is S-, C-, C-S-. The + ;; code here subsitutes the corresponding defintions in + ;; function-key-map. This substitution is needed because if a key + ;; definition if found in function-key-map, there are no further + ;; lookups in other keymaps. + (define-key map [f11] [S-f1]) + (define-key map [f12] [S-f2]) + (define-key map [f13] [S-f3]) + (define-key map [f14] [S-f4]) + (define-key map [f15] [S-f5]) + (define-key map [f16] [S-f6]) + (define-key map [f17] [S-f7]) + (define-key map [f18] [S-f8]) + (define-key map [f19] [S-f9]) + (define-key map [f20] [S-f10]) + + (define-key map [f23] [C-f1]) + (define-key map [f24] [C-f2]) + (define-key map [f25] [C-f3]) + (define-key map [f26] [C-f4]) + (define-key map [f27] [C-f5]) + (define-key map [f28] [C-f6]) + (define-key map [f29] [C-f7]) + (define-key map [f30] [C-f8]) + (define-key map [f31] [C-f9]) + (define-key map [f32] [C-f10]) + + (define-key map [f33] [C-S-f1]) + (define-key map [f34] [C-S-f2]) + (define-key map [f35] [C-S-f3]) + (define-key map [f36] [C-S-f4]) + (define-key map [f37] [C-S-f5]) + (define-key map [f38] [C-S-f6]) + (define-key map [f39] [C-S-f7]) + (define-key map [f40] [C-S-f8]) + (define-key map [f41] [C-S-f9]) + (define-key map [f42] [C-S-f10]) + map) + "Keymap of possible alternative meanings for some keys.") + (defun terminal-init-rxvt () "Terminal initialization function for rxvt." - ;; The terminal intialization C code file might have initialized - ;; function keys F11->F42 from the termcap/terminfo information. On - ;; a PC-style keyboard these keys correspond to - ;; MODIFIER-FUNCTION_KEY, where modifier is S-, C-, C-S-. The - ;; code here subsitutes the corresponding defintions in - ;; function-key-map. This substitution is needed because if a key - ;; definition if found in function-key-map, there are no further - ;; lookups in other keymaps. - (substitute-key-definition [f11] [S-f1] local-function-key-map) - (substitute-key-definition [f12] [S-f2] local-function-key-map) - (substitute-key-definition [f13] [S-f3] local-function-key-map) - (substitute-key-definition [f14] [S-f4] local-function-key-map) - (substitute-key-definition [f15] [S-f5] local-function-key-map) - (substitute-key-definition [f16] [S-f6] local-function-key-map) - (substitute-key-definition [f17] [S-f7] local-function-key-map) - (substitute-key-definition [f18] [S-f8] local-function-key-map) - (substitute-key-definition [f19] [S-f9] local-function-key-map) - (substitute-key-definition [f20] [S-f10] local-function-key-map) - - (substitute-key-definition [f23] [C-f1] local-function-key-map) - (substitute-key-definition [f24] [C-f2] local-function-key-map) - (substitute-key-definition [f25] [C-f3] local-function-key-map) - (substitute-key-definition [f26] [C-f4] local-function-key-map) - (substitute-key-definition [f27] [C-f5] local-function-key-map) - (substitute-key-definition [f28] [C-f6] local-function-key-map) - (substitute-key-definition [f29] [C-f7] local-function-key-map) - (substitute-key-definition [f30] [C-f8] local-function-key-map) - (substitute-key-definition [f31] [C-f9] local-function-key-map) - (substitute-key-definition [f32] [C-f10] local-function-key-map) - - (substitute-key-definition [f33] [C-S-f1] local-function-key-map) - (substitute-key-definition [f34] [C-S-f2] local-function-key-map) - (substitute-key-definition [f35] [C-S-f3] local-function-key-map) - (substitute-key-definition [f36] [C-S-f4] local-function-key-map) - (substitute-key-definition [f37] [C-S-f5] local-function-key-map) - (substitute-key-definition [f38] [C-S-f6] local-function-key-map) - (substitute-key-definition [f39] [C-S-f7] local-function-key-map) - (substitute-key-definition [f40] [C-S-f8] local-function-key-map) - (substitute-key-definition [f41] [C-S-f9] local-function-key-map) - (substitute-key-definition [f42] [C-S-f10] local-function-key-map) + (let ((map (copy-keymap rxvt-alternatives-map))) + (set-keymap-parent map (keymap-parent local-function-key-map)) + (set-keymap-parent local-function-key-map map)) ;; Use inheritance to let the main keymap override those defaults. ;; This way we don't override terminfo-derived settings or settings ;; made in the .emacs file. (let ((m (copy-keymap rxvt-function-map))) - (set-keymap-parent m (keymap-parent local-function-key-map)) - (set-keymap-parent local-function-key-map m)) + (set-keymap-parent m (keymap-parent input-decode-map)) + (set-keymap-parent input-decode-map m)) ;; Initialize colors and background mode. (rxvt-register-default-colors)