Mercurial > emacs
annotate lisp/emulation/edt-vt100.el @ 13108:04466bd88580
(Vsuggest_key_bindings): New variable.
(syms_of_keyboard): Set up Lisp variable.
(Fexecute_extended_command): When enabled, show an equivalent key binding.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 03 Oct 1995 09:17:37 +0000 |
parents | f5ecbf76f4f9 |
children | 84acc3adcd63 |
rev | line source |
---|---|
10690 | 1 ;;; File: edt-vt100.el --- Enhanced EDT Keypad Mode Emulation |
2 ;;; for VT Series Terminals | |
3 ;;; | |
4 ;;; For GNU Emacs 19 | |
5 ;;; | |
6 ;; | |
11234 | 7 ;; Copyright (C) 1986, 1992, 1993, 1995 Free Software Foundation, Inc. |
10690 | 8 |
9 ;; Author: Kevin Gallagher <kgallagh@spd.dsccc.com> | |
10 ;; Maintainer: Kevin Gallagher <kgallagh@spd.dsccc.com> | |
11 ;; Keywords: emulations | |
12 | |
13 ;; This file is part of GNU Emacs. | |
14 | |
15 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
16 ;; it under the terms of the GNU General Public License as published by | |
17 ;; the Free Software Foundation; either version 2, or (at your option) | |
18 ;; any later version. | |
19 | |
20 ;; GNU Emacs is distributed in the hope that it will be useful, | |
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
23 ;; GNU General Public License for more details. | |
24 | |
25 ;; You should have received a copy of the GNU General Public License | |
26 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
27 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
28 | |
29 ;;; Usage: | |
30 | |
11441 | 31 ;; See edt-user.doc in the Emacs etc directory. |
10690 | 32 |
33 ;; ==================================================================== | |
34 | |
35 ;; Get keyboard function key mapping to EDT keys. | |
36 (load "edt-lk201" nil t) | |
37 | |
13059
f5ecbf76f4f9
(edt-set-term-width-80, edt-set-term-width-132):
Karl Heuer <kwzh@gnu.org>
parents:
11441
diff
changeset
|
38 ;; The following functions are called by the EDT screen width commands defined |
f5ecbf76f4f9
(edt-set-term-width-80, edt-set-term-width-132):
Karl Heuer <kwzh@gnu.org>
parents:
11441
diff
changeset
|
39 ;; in edt.el. |
10690 | 40 |
13059
f5ecbf76f4f9
(edt-set-term-width-80, edt-set-term-width-132):
Karl Heuer <kwzh@gnu.org>
parents:
11441
diff
changeset
|
41 (defun edt-set-term-width-80 () |
f5ecbf76f4f9
(edt-set-term-width-80, edt-set-term-width-132):
Karl Heuer <kwzh@gnu.org>
parents:
11441
diff
changeset
|
42 "Set terminal width to 80 columns." |
f5ecbf76f4f9
(edt-set-term-width-80, edt-set-term-width-132):
Karl Heuer <kwzh@gnu.org>
parents:
11441
diff
changeset
|
43 (vt100-wide-mode -1)) |
f5ecbf76f4f9
(edt-set-term-width-80, edt-set-term-width-132):
Karl Heuer <kwzh@gnu.org>
parents:
11441
diff
changeset
|
44 |
f5ecbf76f4f9
(edt-set-term-width-80, edt-set-term-width-132):
Karl Heuer <kwzh@gnu.org>
parents:
11441
diff
changeset
|
45 (defun edt-set-term-width-132 () |
f5ecbf76f4f9
(edt-set-term-width-80, edt-set-term-width-132):
Karl Heuer <kwzh@gnu.org>
parents:
11441
diff
changeset
|
46 "Set terminal width to 132 columns." |
f5ecbf76f4f9
(edt-set-term-width-80, edt-set-term-width-132):
Karl Heuer <kwzh@gnu.org>
parents:
11441
diff
changeset
|
47 (vt100-wide-mode 1)) |