2002-10-01 17:06:54 +00:00
|
|
|
;; -*- no-byte-compile: t -*-
|
1993-06-17 07:31:16 +00:00
|
|
|
;; For our purposes we can treat the vt200 and vt100 almost alike.
|
|
|
|
;; Most differences are handled by the termcap entry.
|
2005-07-27 18:02:08 +00:00
|
|
|
(defun terminal-init-vt240 ()
|
2005-09-04 03:48:17 +00:00
|
|
|
"Terminal initialization function for vt240."
|
2006-05-20 17:02:47 +00:00
|
|
|
(tty-run-terminal-initialization (selected-frame) "vt100")
|
2005-07-27 18:02:08 +00:00
|
|
|
;; Make F11 an escape key.
|
2007-10-22 15:22:14 +00:00
|
|
|
(define-key input-decode-map "\e[23~" [f11]) ;Probably redundant.
|
|
|
|
(define-key local-function-key-map [f11] [?\e]))
|
2001-07-15 19:53:53 +00:00
|
|
|
|
2007-10-22 15:22:14 +00:00
|
|
|
;; arch-tag: d9f88e9c-02dc-49ff-871c-a415f08e4eb7
|
2001-07-15 19:53:53 +00:00
|
|
|
;;; vt240.el ends here
|