comparison lisp/term/vt201.el @ 64651:af1c58687bdd

* term/apollo.el (terminal-init-apollo): New function containing all former top level forms in the file. * term/bobcat.el (terminal-init-bobcat): * term/cygwin.el (terminal-init-cygwin): * term/iris-ansi.el (terminal-init-iris-ansi): * term/linux.el (terminal-init-linux): * term/news.el (terminal-init-news): * term/rxvt.el (terminal-init-rxvt): * term/sun.el (terminal-init-sun): * term/tvi970.el (terminal-init-tvi970): * term/vt100.el (terminal-init-vt100): * term/vt102.el (terminal-init-vt102): * term/vt125.el (terminal-init-vt125): * term/vt200.el (terminal-init-vt200): * term/vt201.el (terminal-init-vt201): * term/vt220.el (terminal-init-vt220): * term/vt240.el (terminal-init-vt240): * term/vt300.el (terminal-init-vt300): * term/vt320.el (terminal-init-vt320): * term/vt400.el (terminal-init-vt400): * term/vt420.el (terminal-init-vt420): * term/wyse50.el (terminal-init-wyse50): * term/xterm.el (terminal-init-xterm): Likewise. * term/README: Describe the terminal-init-* functionality. * startup.el (command-line): After loading the terminal initialization file call the corresponding terminal initialization function.
author Dan Nicolaescu <dann@ics.uci.edu>
date Wed, 27 Jul 2005 18:02:08 +0000
parents 695cf19ef79e
children 532e0a9335a9 890cc78a5a24
comparison
equal deleted inserted replaced
64650:82d9ac62ed1d 64651:af1c58687bdd
1 ;; -*- no-byte-compile: t -*- 1 ;; -*- no-byte-compile: t -*-
2 ;; For our purposes we can treat the vt200 and vt100 almost alike. 2 ;; For our purposes we can treat the vt200 and vt100 almost alike.
3 ;; Most differences are handled by the termcap entry. 3 ;; Most differences are handled by the termcap entry.
4 (load "term/vt100" nil t) 4 (defun terminal-init-vt201 ()
5 5 "Terminal initialization function for vt201."
6 ;; Make F11 an escape key. 6 (load "term/vt100" nil t)
7 (define-key function-key-map "\e[23~" [?\e]) 7 ;; Make F11 an escape key.
8 (define-key function-key-map "\e[23~" [?\e]))
8 9
9 ;;; arch-tag: a6abb38f-60ea-449e-a9e9-3fb8572c52ae 10 ;;; arch-tag: a6abb38f-60ea-449e-a9e9-3fb8572c52ae
10 ;;; vt201.el ends here 11 ;;; vt201.el ends here