]> code.delx.au - gnu-emacs/blobdiff - lisp/term/iris-ansi.el
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
[gnu-emacs] / lisp / term / iris-ansi.el
index e62434d2865d058d2aa6c32b80c6d9b012f5c36a..42f0912ed2f1feaadb179e0434b7731b7882f707 100644 (file)
 
 ;;; Code:
 
-(defun iris-ansi-initialize-terminal ()
-  "Terminal initialization function for iris-ansi."
-  (define-key function-key-map "\e[120q" [S-escape])
-  (define-key function-key-map "\e[121q" [C-escape])
+(defvar iris-function-map nil
+  "Function key definitions for SGI xwsh and winterm apps.")
+
+;; Make reloads faster.
+(unless iris-function-map
+  (setq iris-function-map (make-sparse-keymap))
+
+  (define-key iris-function-map "\e[120q" [S-escape])
+  (define-key iris-function-map "\e[121q" [C-escape])
 
-  (define-key function-key-map "\e[001q" [f1])
-  (define-key function-key-map "\e[013q" [S-f1])
-  (define-key function-key-map "\e[025q" [C-f1])
+  (define-key iris-function-map "\e[001q" [f1])
+  (define-key iris-function-map "\e[013q" [S-f1])
+  (define-key iris-function-map "\e[025q" [C-f1])
 
 
-  (define-key function-key-map "\e[002q" [f2])
-  (define-key function-key-map "\e[014q" [S-f2])
-  (define-key function-key-map "\e[026q" [C-f2])
-  (define-key function-key-map "\e[038q" [M-f2])
+  (define-key iris-function-map "\e[002q" [f2])
+  (define-key iris-function-map "\e[014q" [S-f2])
+  (define-key iris-function-map "\e[026q" [C-f2])
+  (define-key iris-function-map "\e[038q" [M-f2])
 
-  (define-key function-key-map "\e[003q" [f3])
-  (define-key function-key-map "\e[015q" [S-f3])
-  (define-key function-key-map "\e[027q" [C-f3])
+  (define-key iris-function-map "\e[003q" [f3])
+  (define-key iris-function-map "\e[015q" [S-f3])
+  (define-key iris-function-map "\e[027q" [C-f3])
 
 
-  (define-key function-key-map "\e[004q" [f4])
-  (define-key function-key-map "\e[016q" [S-f4])
-  (define-key function-key-map "\e[028q" [C-f4])
+  (define-key iris-function-map "\e[004q" [f4])
+  (define-key iris-function-map "\e[016q" [S-f4])
+  (define-key iris-function-map "\e[028q" [C-f4])
 
 
-  (define-key function-key-map "\e[005q" [f5])
-  (define-key function-key-map "\e[017q" [S-f5])
-  (define-key function-key-map "\e[029q" [C-f5])
+  (define-key iris-function-map "\e[005q" [f5])
+  (define-key iris-function-map "\e[017q" [S-f5])
+  (define-key iris-function-map "\e[029q" [C-f5])
 
 
-  (define-key function-key-map "\e[006q" [f6])
-  (define-key function-key-map "\e[018q" [S-f6])
-  (define-key function-key-map "\e[030q" [C-f6])
+  (define-key iris-function-map "\e[006q" [f6])
+  (define-key iris-function-map "\e[018q" [S-f6])
+  (define-key iris-function-map "\e[030q" [C-f6])
 
 
-  (define-key function-key-map "\e[007q" [f7])
-  (define-key function-key-map "\e[019q" [S-f7])
-  (define-key function-key-map "\e[031q" [C-f7])
+  (define-key iris-function-map "\e[007q" [f7])
+  (define-key iris-function-map "\e[019q" [S-f7])
+  (define-key iris-function-map "\e[031q" [C-f7])
 
 
-  (define-key function-key-map "\e[008q" [f8])
-  (define-key function-key-map "\e[020q" [S-f8])
-  (define-key function-key-map "\e[032q" [C-f8])
+  (define-key iris-function-map "\e[008q" [f8])
+  (define-key iris-function-map "\e[020q" [S-f8])
+  (define-key iris-function-map "\e[032q" [C-f8])
 
 
-  (define-key function-key-map "\e[009q" [f9])
-  (define-key function-key-map "\e[021q" [S-f9])
-  (define-key function-key-map "\e[033q" [C-f9])
+  (define-key iris-function-map "\e[009q" [f9])
+  (define-key iris-function-map "\e[021q" [S-f9])
+  (define-key iris-function-map "\e[033q" [C-f9])
 
 
-  (define-key function-key-map "\e[010q" [f10])
-  (define-key function-key-map "\e[022q" [S-f10])
-  (define-key function-key-map "\e[034q" [C-f10])
+  (define-key iris-function-map "\e[010q" [f10])
+  (define-key iris-function-map "\e[022q" [S-f10])
+  (define-key iris-function-map "\e[034q" [C-f10])
 
 
-  (define-key function-key-map "\e[011q" [f11])
-  (define-key function-key-map "\e[023q" [S-f11])
-  (define-key function-key-map "\e[035q" [C-f11])
-  (define-key function-key-map "\e[047q" [M-f11])
+  (define-key iris-function-map "\e[011q" [f11])
+  (define-key iris-function-map "\e[023q" [S-f11])
+  (define-key iris-function-map "\e[035q" [C-f11])
+  (define-key iris-function-map "\e[047q" [M-f11])
 
-  (define-key function-key-map "\e[012q" [f12])
-  (define-key function-key-map "\e[024q" [S-f12])
-  (define-key function-key-map "\e[036q" [C-f12])
-  (define-key function-key-map "\e[048q" [M-f12])
+  (define-key iris-function-map "\e[012q" [f12])
+  (define-key iris-function-map "\e[024q" [S-f12])
+  (define-key iris-function-map "\e[036q" [C-f12])
+  (define-key iris-function-map "\e[048q" [M-f12])
 
 
-  (define-key function-key-map "\e[057q" [?\C-`])
-  (define-key function-key-map "\e[115q" [?\M-`])
+  (define-key iris-function-map "\e[057q" [C-`])
+  (define-key iris-function-map "\e[115q" [M-`])
 
-  (define-key function-key-map "\e[049q" [?\C-1])
-  (define-key function-key-map "\e[058q" [?\M-1])
+  (define-key iris-function-map "\e[049q" [?\C-1])
+  (define-key iris-function-map "\e[058q" [?\M-1])
 
 
-  (define-key function-key-map "\e[059q" [?\M-2])
+  (define-key iris-function-map "\e[059q" [?\M-2])
 
-  (define-key function-key-map "\e[050q" [?\C-3])
-  (define-key function-key-map "\e[060q" [?\M-3])
+  (define-key iris-function-map "\e[050q" [?\C-3])
+  (define-key iris-function-map "\e[060q" [?\M-3])
 
-  (define-key function-key-map "\e[051q" [?\C-4])
-  (define-key function-key-map "\e[061q" [?\M-4])
+  (define-key iris-function-map "\e[051q" [?\C-4])
+  (define-key iris-function-map "\e[061q" [?\M-4])
 
-  (define-key function-key-map "\e[052q" [?\C-5])
-  (define-key function-key-map "\e[062q" [?\M-5])
+  (define-key iris-function-map "\e[052q" [?\C-5])
+  (define-key iris-function-map "\e[062q" [?\M-5])
 
 
-  (define-key function-key-map "\e[063q" [?\M-6])
+  (define-key iris-function-map "\e[063q" [?\M-6])
 
-  (define-key function-key-map "\e[053q" [?\C-7])
-  (define-key function-key-map "\e[064q" [?\M-7])
+  (define-key iris-function-map "\e[053q" [?\C-7])
+  (define-key iris-function-map "\e[064q" [?\M-7])
 
-  (define-key function-key-map "\e[054q" [?\C-8])
-  (define-key function-key-map "\e[065q" [?\M-8])
+  (define-key iris-function-map "\e[054q" [?\C-8])
+  (define-key iris-function-map "\e[065q" [?\M-8])
 
-  (define-key function-key-map "\e[055q" [?\C-9])
-  (define-key function-key-map "\e[066q" [?\M-9])
+  (define-key iris-function-map "\e[055q" [?\C-9])
+  (define-key iris-function-map "\e[066q" [?\M-9])
 
-  (define-key function-key-map "\e[056q" [?\C-0])
-  (define-key function-key-map "\e[067q" [?\M-0])
+  (define-key iris-function-map "\e[056q" [?\C-0])
+  (define-key iris-function-map "\e[067q" [?\M-0])
 
-  (define-key function-key-map "\e[068q" [?\M--])
+  (define-key iris-function-map "\e[068q" [?\M--])
 
-  (define-key function-key-map "\e[069q" [?\C-=])
-  (define-key function-key-map "\e[070q" [?\M-=])
+  (define-key iris-function-map "\e[069q" [?\C-=])
+  (define-key iris-function-map "\e[070q" [?\M-=])
 
   ;; I don't know what to do with those.
-  ;;(define-key function-key-map "^H" [<del>])
-  ;;(define-key function-key-map "^H" [S-<del>])
-  ;;(define-key function-key-map "\177" [C-<del>])
-  ;;(define-key function-key-map "\e[071q" [M-<del>])
+  ;;(define-key iris-function-map "^H" [<del>])
+  ;;(define-key iris-function-map "^H" [S-<del>])
+  ;;(define-key iris-function-map "\177" [C-<del>])
+  ;;(define-key iris-function-map "\e[071q" [M-<del>])
 
-  (define-key function-key-map "\e[Z" [?\S-\t])
-  (define-key function-key-map "\e[072q" [?\C-\t])
+  (define-key iris-function-map "\e[Z" [?\S-\t])
+  (define-key iris-function-map "\e[072q" [?\C-\t])
   ;; This only works if you remove the M-TAB keybing from the system.4Dwmrc
   ;; our your ~/.4Dwmrc, if you use the 4Dwm window manager.
-  (define-key function-key-map "\e[073q" [?\M-\t])
+  (define-key iris-function-map "\e[073q" [?\M-\t])
 
-  (define-key function-key-map "\e[074q" [?\M-q])
+  (define-key iris-function-map "\e[074q" [?\M-q])
 
-  (define-key function-key-map "\e[075q" [?\M-w])
+  (define-key iris-function-map "\e[075q" [?\M-w])
 
-  (define-key function-key-map "\e[076q" [?\M-e])
+  (define-key iris-function-map "\e[076q" [?\M-e])
 
-  (define-key function-key-map "\e[077q" [?\M-r])
+  (define-key iris-function-map "\e[077q" [?\M-r])
 
-  (define-key function-key-map "\e[078q" [?\M-t])
+  (define-key iris-function-map "\e[078q" [?\M-t])
 
-  (define-key function-key-map "\e[079q" [?\M-y])
+  (define-key iris-function-map "\e[079q" [?\M-y])
 
-  (define-key function-key-map "\e[080q" [?\M-u])
+  (define-key iris-function-map "\e[080q" [?\M-u])
 
-  (define-key function-key-map "\e[081q" [?\M-i])
+  (define-key iris-function-map "\e[081q" [?\M-i])
 
-  (define-key function-key-map "\e[082q" [?\M-o])
+  (define-key iris-function-map "\e[082q" [?\M-o])
 
-  (define-key function-key-map "\e[083q" [?\M-p])
+  (define-key iris-function-map "\e[083q" [?\M-p])
 
-  (define-key function-key-map "\e[084q" [?\M-\[])
+  (define-key iris-function-map "\e[084q" [?\M-\[])
 
-  (define-key function-key-map "\e[085q" [?\M-\]])
+  (define-key iris-function-map "\e[085q" [?\M-\]])
 
-  (define-key function-key-map "\e[086q" [?\M-\\])
+  (define-key iris-function-map "\e[086q" [?\M-\\])
 
-  (define-key function-key-map "\e[087q" [?\M-a])
+  (define-key iris-function-map "\e[087q" [?\M-a])
 
-  (define-key function-key-map "\e[088q" [?\M-s])
+  (define-key iris-function-map "\e[088q" [?\M-s])
 
-  (define-key function-key-map "\e[089q" [?\M-d])
+  (define-key iris-function-map "\e[089q" [?\M-d])
 
-  (define-key function-key-map "\e[090q" [?\M-f])
+  (define-key iris-function-map "\e[090q" [?\M-f])
 
-  (define-key function-key-map "\e[091q" [?\M-g])
+  (define-key iris-function-map "\e[091q" [?\M-g])
 
-  (define-key function-key-map "\e[092q" [?\M-h])
+  (define-key iris-function-map "\e[092q" [?\M-h])
 
-  (define-key function-key-map "\e[093q" [?\M-j])
+  (define-key iris-function-map "\e[093q" [?\M-j])
 
-  (define-key function-key-map "\e[094q" [?\M-k])
+  (define-key iris-function-map "\e[094q" [?\M-k])
 
-  (define-key function-key-map "\e[095q" [?\M-l])
+  (define-key iris-function-map "\e[095q" [?\M-l])
 
-  (define-key function-key-map "\e[096q" [?\C-\;])
-  (define-key function-key-map "\e[097q" [?\M-:]) ;; we are cheating
-                                                 ;; here, this is
-                                                 ;; realy M-;, but
-                                                 ;; M-: generates the
-                                                 ;; same string and
-                                                 ;; is more usefull.
+  (define-key iris-function-map "\e[096q" [?\C-\;])
+  (define-key iris-function-map "\e[097q" [?\M-:]) ;; we are cheating
+                                                 ;; here, this is realy
+                                                 ;; M-;, but M-:
+                                                 ;; generates the same
+                                                 ;; string and is more
+                                                 ;; usefull.
 
-  (define-key function-key-map "\e[098q" [?\C-'])
-  (define-key function-key-map "\e[099q" [?\M-'])
+  (define-key iris-function-map "\e[098q" [?\C-'])
+  (define-key iris-function-map "\e[099q" [?\M-'])
 
-  (define-key function-key-map "\e[100q" [?\M-\n])
+  (define-key iris-function-map "\e[100q" [?\M-\n])
 
-  (define-key function-key-map "\e[101q" [?\M-z])
+  (define-key iris-function-map "\e[101q" [?\M-z])
 
-  (define-key function-key-map "\e[102q" [?\M-x])
+  (define-key iris-function-map "\e[102q" [?\M-x])
 
-  (define-key function-key-map "\e[103q" [?\M-c])
+  (define-key iris-function-map "\e[103q" [?\M-c])
 
-  (define-key function-key-map "\e[104q" [?\M-v])
+  (define-key iris-function-map "\e[104q" [?\M-v])
 
-  (define-key function-key-map "\e[105q" [?\M-b])
+  (define-key iris-function-map "\e[105q" [?\M-b])
 
-  (define-key function-key-map "\e[106q" [M-n])
+  (define-key iris-function-map "\e[106q" [M-n])
 
-  (define-key function-key-map "\e[107q" [M-m])
+  (define-key iris-function-map "\e[107q" [M-m])
 
-  (define-key function-key-map "\e[108q" [?\C-,])
-  (define-key function-key-map "\e[109q" [?\M-,])
+  (define-key iris-function-map "\e[108q" [?\C-,])
+  (define-key iris-function-map "\e[109q" [?\M-,])
 
-  (define-key function-key-map "\e[110q" [?\C-.])
-  (define-key function-key-map "\e[111q" [?\M-.])
+  (define-key iris-function-map "\e[110q" [?\C-.])
+  (define-key iris-function-map "\e[111q" [?\M-.])
 
-  (define-key function-key-map "\e[112q" [?\C-/])
-  (define-key function-key-map "\e[113q" [?\M-/])
+  (define-key iris-function-map "\e[112q" [?\C-/])
+  (define-key iris-function-map "\e[113q" [?\M-/])
 
-  (define-key function-key-map "\e[139q" [insert])
-  (define-key function-key-map "\e[139q" [S-insert])
-  (define-key function-key-map "\e[140q" [C-insert])
-  (define-key function-key-map "\e[141q" [M-insert])
+  (define-key iris-function-map "\e[139q" [insert])
+  (define-key iris-function-map "\e[139q" [S-insert])
+  (define-key iris-function-map "\e[140q" [C-insert])
+  (define-key iris-function-map "\e[141q" [M-insert])
 
-  (define-key function-key-map "\e[H" [home])
-  (define-key function-key-map "\e[143q" [S-home])
-  (define-key function-key-map "\e[144q" [C-home])
+  (define-key iris-function-map "\e[H" [home])
+  (define-key iris-function-map "\e[143q" [S-home])
+  (define-key iris-function-map "\e[144q" [C-home])
 
 
-  (define-key function-key-map "\e[150q" [prior])
-  (define-key function-key-map "\e[151q" [S-prior]) ;; those don't
-                                                   ;; seem to
-                                                   ;; generate
+  (define-key iris-function-map "\e[150q" [prior])
+  (define-key iris-function-map "\e[151q" [S-prior]) ;; those don't seem
+                                                   ;; to generate
                                                    ;; anything
-  (define-key function-key-map "\e[152q" [C-prior])
+  (define-key iris-function-map "\e[152q" [C-prior])
 
 
-  ;; (define-key function-key-map "^?" [delete])
-  (define-key function-key-map "\e[P" [S-delete])
-  (define-key function-key-map "\e[142q" [C-delete])
-  (define-key function-key-map "\e[M" [M-delete])
+  ;; (define-key iris-function-map "^?" [delete]) ?? something else seems to take care of this.
+  (define-key iris-function-map "\e[P" [S-delete])
+  (define-key iris-function-map "\e[142q" [C-delete])
+  (define-key iris-function-map "\e[M" [M-delete])
 
-  (define-key function-key-map "\e[146q" [end])
-  (define-key function-key-map "\e[147q" [S-end]) ;; those don't seem
-                                                 ;; to generate
-                                                 ;; anything
-  (define-key function-key-map "\e[148q" [C-end])
+  (define-key iris-function-map "\e[146q" [end])
+  (define-key iris-function-map "\e[147q" [S-end]) ;; those don't seem to
+                                                 ;; generate anything
+  (define-key iris-function-map "\e[148q" [C-end])
 
-  (define-key function-key-map "\e[154q" [next])
-  (define-key function-key-map "\e[155q" [S-next])
-  (define-key function-key-map "\e[156q" [C-next])
+  (define-key iris-function-map "\e[154q" [next])
+  (define-key iris-function-map "\e[155q" [S-next])
+  (define-key iris-function-map "\e[156q" [C-next])
 
 
-  (define-key function-key-map "\e[161q" [S-up])
-  (define-key function-key-map "\e[162q" [C-up])
-  (define-key function-key-map "\e[163q" [M-up])
+  (define-key iris-function-map "\e[161q" [S-up])
+  (define-key iris-function-map "\e[162q" [C-up])
+  (define-key iris-function-map "\e[163q" [M-up])
 
-  (define-key function-key-map "\e[158q" [S-left])
-  (define-key function-key-map "\e[159q" [C-left])
-  (define-key function-key-map "\e[160q" [M-left])
+  (define-key iris-function-map "\e[158q" [S-left])
+  (define-key iris-function-map "\e[159q" [C-left])
+  (define-key iris-function-map "\e[160q" [M-left])
 
-  (define-key function-key-map "\e[164q" [S-down])
-  (define-key function-key-map "\e[165q" [C-down])
-  (define-key function-key-map "\e[166q" [M-down])
+  (define-key iris-function-map "\e[164q" [S-down])
+  (define-key iris-function-map "\e[165q" [C-down])
+  (define-key iris-function-map "\e[166q" [M-down])
 
-  (define-key function-key-map "\e[167q" [S-right])
-  (define-key function-key-map "\e[168q" [C-right])
-  (define-key function-key-map "\e[169q" [M-right])
+  (define-key iris-function-map "\e[167q" [S-right])
+  (define-key iris-function-map "\e[168q" [C-right])
+  (define-key iris-function-map "\e[169q" [M-right])
 
   ;; Keypad functions, most of those are untested.
-  (define-key function-key-map "\e[179q" [?\C-/])
-  (define-key function-key-map "\e[180q" [?\M-/])
+  (define-key iris-function-map "\e[179q" [?\C-/])
+  (define-key iris-function-map "\e[180q" [?\M-/])
 
-  (define-key function-key-map "\e[187q" [?\C-*])
-  (define-key function-key-map "\e[188q" [?\M-*])
+  (define-key iris-function-map "\e[187q" [?\C-*])
+  (define-key iris-function-map "\e[188q" [?\M-*])
 
-  (define-key function-key-map "\e[198q" [?\C--])
-  (define-key function-key-map "\e[199q" [?\M--])
+  (define-key iris-function-map "\e[198q" [?\C--])
+  (define-key iris-function-map "\e[199q" [?\M--])
 
   ;; Something else takes care of home, up, prior, down, left, right, next
-  ;;(define-key function-key-map "\e[H" [home])
-  (define-key function-key-map "\e[172q" [C-home])
+  ;(define-key iris-function-map "\e[H" [home])
+  (define-key iris-function-map "\e[172q" [C-home])
 
-  ;;(define-key function-key-map "\e[A" [up])
-  (define-key function-key-map "\e[182q" [C-up])
+  ;(define-key iris-function-map "\e[A" [up])
+  (define-key iris-function-map "\e[182q" [C-up])
 
 
-  ;;(define-key function-key-map "\e[150q" [prior])
-  (define-key function-key-map "\e[190q" [C-prior])
+  ;(define-key iris-function-map "\e[150q" [prior])
+  (define-key iris-function-map "\e[190q" [C-prior])
 
 
-  (define-key function-key-map "\e[200q" [?\C-+])
-  (define-key function-key-map "\e[201q" [?\M-+])
+  (define-key iris-function-map "\e[200q" [?\C-+])
+  (define-key iris-function-map "\e[201q" [?\M-+])
 
-  ;;(define-key function-key-map "\e[D" [left])
-  (define-key function-key-map "\e[174q" [C-left])
+  ;(define-key iris-function-map "\e[D" [left])
+  (define-key iris-function-map "\e[174q" [C-left])
 
 
-  (define-key function-key-map "\e[000q" [begin])
-  (define-key function-key-map "\e[184q" [C-begin])
+  (define-key iris-function-map "\e[000q" [begin])
+  (define-key iris-function-map "\e[184q" [C-begin])
 
 
-  ;;(define-key function-key-map "\e[C" [right])
-  (define-key function-key-map "\e[192q" [C-right])
+  ;(define-key iris-function-map "\e[C" [right])
+  (define-key iris-function-map "\e[192q" [C-right])
 
-  ;;(define-key function-key-map "\e[146q" [end])
-  (define-key function-key-map "\e[176q" [C-end])
+  ;(define-key iris-function-map "\e[146q" [end])
+  (define-key iris-function-map "\e[176q" [C-end])
 
-  ;;(define-key function-key-map "\e[B" [down])
-  (define-key function-key-map "\e[186q" [C-down])
+  ;(define-key iris-function-map "\e[B" [down])
+  (define-key iris-function-map "\e[186q" [C-down])
 
-  ;;(define-key function-key-map "\e[154q" [next])
-  (define-key function-key-map "\e[194q" [C-next])
+  ;(define-key iris-function-map "\e[154q" [next])
+  (define-key iris-function-map "\e[194q" [C-next])
 
 
-  (define-key function-key-map "\e[100q" [M-enter])
+  (define-key iris-function-map "\e[100q" [M-enter])
 
-  (define-key function-key-map "\e[139q" [insert])
-  (define-key function-key-map "\e[178q" [C-inset])
+  (define-key iris-function-map "\e[139q" [insert])
+  (define-key iris-function-map "\e[178q" [C-inset])
 
-  (define-key function-key-map "\e[P" [delete])
-  (define-key function-key-map "\e[196q" [C-delete])
-  (define-key function-key-map "\e[197q" [M-delete]))
+  (define-key iris-function-map "\e[P" [delete])
+  (define-key iris-function-map "\e[196q" [C-delete])
+  (define-key iris-function-map "\e[197q" [M-delete]))
+
+(defun terminal-init-iris-ansi ()
+  "Terminal initialization function for iris-ansi."
+  ;; Use inheritance to let the main keymap override these defaults.
+  ;; This way we don't override terminfo-derived settings or settings
+  ;; made in the .emacs file.
+  (let ((m (copy-keymap iris-function-map)))
+    (set-keymap-parent m (keymap-parent (terminal-local-value 'local-function-key-map nil)))
+    (set-keymap-parent (terminal-local-value 'local-function-key-map nil) m)))
 
 ;;; arch-tag: b1d0e73a-bb7d-47be-9fb2-6fb126469a1b
 ;;; iris-ansi.el ends here