annotate lisp/emulation/tpu-mapper.el @ 106815:1d1d5d9bd884

Add 2010 to copyright years.
author Glenn Morris <rgm@gnu.org>
date Wed, 13 Jan 2010 00:35:10 -0800
parents a9dc0e7c3f2b
children 280c8ae2476d 376148b31b5e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
38436
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 14228
diff changeset
1 ;;; tpu-mapper.el --- create a TPU-edt X-windows keymap file
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2
74466
1d4b1a32fd66 Update copyright years.
Glenn Morris <rgm@gnu.org>
parents: 68648
diff changeset
3 ;; Copyright (C) 1993, 1994, 1995, 2001, 2002, 2003, 2004,
106815
1d1d5d9bd884 Add 2010 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6 ;; Author: Rob Riepel <riepel@networking.stanford.edu>
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
7 ;; Maintainer: Rob Riepel <riepel@networking.stanford.edu>
5140
9cde7d7fea1f Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 4548
diff changeset
8 ;; Keywords: emulations
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9
4450
325bc5407213 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 4421
diff changeset
10 ;; This file is part of GNU Emacs.
325bc5407213 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 4421
diff changeset
11
94658
eb7b2376cae5 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 87568
diff changeset
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
4450
325bc5407213 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 4421
diff changeset
13 ;; it under the terms of the GNU General Public License as published by
94658
eb7b2376cae5 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 87568
diff changeset
14 ;; the Free Software Foundation, either version 3 of the License, or
eb7b2376cae5 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 87568
diff changeset
15 ;; (at your option) any later version.
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16
4450
325bc5407213 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 4421
diff changeset
17 ;; GNU Emacs is distributed in the hope that it will be useful,
325bc5407213 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 4421
diff changeset
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
325bc5407213 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 4421
diff changeset
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
325bc5407213 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 4421
diff changeset
20 ;; GNU General Public License for more details.
325bc5407213 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 4421
diff changeset
21
325bc5407213 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 4421
diff changeset
22 ;; You should have received a copy of the GNU General Public License
94658
eb7b2376cae5 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 87568
diff changeset
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
24
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
25 ;;; Commentary:
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
26
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
27 ;; This Emacs Lisp program can be used to create an Emacs Lisp file that
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
28 ;; defines the TPU-edt keypad for Emacs running on X-Windows.
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
29
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
30 ;;; Code:
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
31
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32 ;;;
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
33 ;;; Key variables
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
34 ;;;
7980
0e9eddc5d598 Change size of selected screen. Reposition after
Richard M. Stallman <rms@gnu.org>
parents: 5140
diff changeset
35 (defvar tpu-kp4 nil)
0e9eddc5d598 Change size of selected screen. Reposition after
Richard M. Stallman <rms@gnu.org>
parents: 5140
diff changeset
36 (defvar tpu-kp5 nil)
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37 (defvar tpu-key nil)
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38 (defvar tpu-enter nil)
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
39 (defvar tpu-return nil)
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40 (defvar tpu-key-seq nil)
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41 (defvar tpu-enter-seq nil)
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
42 (defvar tpu-return-seq nil)
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
43
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
44 ;;;
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
45 ;;; Key mapping function
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
46 ;;;
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
47 (defun tpu-map-key (ident descrip func gold-func)
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
48 (interactive)
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
49 (if (featurep 'xemacs)
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
50 (progn
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
51 (setq tpu-key-seq (read-key-sequence
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
52 (format "Press %s%s: " ident descrip))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
53 tpu-key (format "[%s]" (event-key (aref tpu-key-seq 0))))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
54 (unless (equal tpu-key tpu-return)
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
55 (set-buffer "Keys")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
56 (insert (format"(global-set-key %s %s)\n" tpu-key func))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
57 (set-buffer "Gold-Keys")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
58 (insert (format "(define-key GOLD-map %s %s)\n" tpu-key gold-func))))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
59 (message "Press %s%s: " ident descrip)
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
60 (setq tpu-key-seq (read-event)
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
61 tpu-key (format "[%s]" tpu-key-seq))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
62 (unless (equal tpu-key tpu-return)
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
63 (set-buffer "Keys")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
64 (insert (format"(define-key tpu-global-map %s %s)\n" tpu-key func))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
65 (set-buffer "Gold-Keys")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
66 (insert (format "(define-key tpu-gold-map %s %s)\n" tpu-key gold-func))))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
67 (set-buffer "Directions")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
68 tpu-key)
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
69
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
70 ;;;###autoload
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
71 (defun tpu-mapper ()
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
72 "Create an Emacs lisp file defining the TPU-edt keypad for X-windows.
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
73
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
74 This command displays an instruction screen showing the TPU-edt keypad
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
75 and asks you to press the TPU-edt editing keys. It uses the keys you
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
76 press to create an Emacs Lisp file that will define a TPU-edt keypad
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
77 for your X server. You can even re-arrange the standard EDT keypad to
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
78 suit your tastes (or to cope with those silly Sun and PC keypads).
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
79
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
80 Finally, you will be prompted for the name of the file to store the key
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
81 definitions. If you chose the default, TPU-edt will find it and load it
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
82 automatically. If you specify a different file name, you will need to
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
83 set the variable ``tpu-xkeys-file'' before starting TPU-edt. Here's how
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
84 you might go about doing that in your .emacs file.
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
85
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
86 (setq tpu-xkeys-file (expand-file-name \"~/.my-emacs-x-keys\"))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
87 (tpu-edt)
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
88
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
89 Known Problems:
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
90
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
91 Sometimes, tpu-mapper will ignore a key you press, and just continue to
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
92 prompt for the same key. This can happen when your window manager sucks
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
93 up the key and doesn't pass it on to Emacs, or it could be an Emacs bug.
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
94 Either way, there's nothing that tpu-mapper can do about it. You must
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
95 press RETURN, to skip the current key and continue. Later, you and/or
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
96 your local X guru can try to figure out why the key is being ignored."
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
97 (interactive)
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
98
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
99 ;; Make sure we're running X-windows
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
100
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
101 (if (not window-system)
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
102 (error "tpu-mapper requires running Emacs with an X display"))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
103
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
104 ;; Make sure the window is big enough to display the instructions
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
105
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
106 (if (featurep 'xemacs) (set-screen-size (selected-screen) 80 36)
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
107 (set-frame-size (selected-frame) 80 36))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
108
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
109 ;; Create buffers - Directions, Keys, Gold-Keys
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
110
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
111 (if (not (get-buffer "Directions")) (generate-new-buffer "Directions"))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
112 (if (not (get-buffer "Keys")) (generate-new-buffer "Keys"))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
113 (if (not (get-buffer "Gold-Keys")) (generate-new-buffer "Gold-Keys"))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
114
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
115 ;; Put headers in the Keys buffer
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
116
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
117 (set-buffer "Keys")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
118 (insert "\
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
119 ;; Key definitions for TPU-edt
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
120 ;;
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
121 ")
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
122
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
123 ;; Display directions
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
124
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
125 (switch-to-buffer "Directions")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
126 (insert "
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
127 This program prompts you to press keys to create a custom keymap file
11547
a39d8ae4ed2e At end, use default file name .tpu-keys.
Richard M. Stallman <rms@gnu.org>
parents: 7980
diff changeset
128 for use with the x-windows version of Emacs and TPU-edt.
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
129
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
130 Start by pressing the RETURN key, and continue by pressing the keys
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
131 specified in the mini-buffer. You can re-arrange the TPU-edt keypad
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
132 by pressing any key you want at any prompt. If you want to entirely
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
133 omit a key, just press RETURN at the prompt.
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
134
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
135 Here's a picture of the standard TPU/edt keypad for reference:
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
136
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
137 _______________________ _______________________________
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
138 | HELP | Do | | | | | |
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
139 |KeyDefs| | | | | | |
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
140 |_______|_______________| |_______|_______|_______|_______|
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
141 _______________________ _______________________________
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
142 | Find |Insert |Remove | | Gold | HELP |FndNxt | Del L |
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
143 | | |Sto Tex| | key |E-Help | Find |Undel L|
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
144 |_______|_______|_______| |_______|_______|_______|_______|
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
145 |Select |Pre Scr|Nex Scr| | Page | Sect |Append | Del W |
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
146 | Reset |Pre Win|Nex Win| | Do | Fill |Replace|Undel W|
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
147 |_______|_______|_______| |_______|_______|_______|_______|
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
148 |Move up| |Forward|Reverse|Remove | Del C |
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
149 | Top | |Bottom | Top |Insert |Undel C|
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
150 _______|_______|_______ |_______|_______|_______|_______|
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
151 |Mov Lef|Mov Dow|Mov Rig| | Word | EOL | Char | |
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
152 |StaOfLi|Bottom |EndOfLi| |ChngCas|Del EOL|SpecIns| Enter |
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
153 |_______|_______|_______| |_______|_______|_______| |
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
154 | Line |Select | Subs |
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
155 | Open Line | Reset | |
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
156 |_______________|_______|_______|
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
157
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
158
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
159 ")
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
160 (delete-other-windows)
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
161 (goto-char (point-min))
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
162
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
163 ;; Save <CR> for future reference
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
164
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
165 (cond
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
166 ((featurep 'xemacs)
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
167 (setq tpu-return-seq (read-key-sequence "Hit carriage-return <CR> to continue "))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
168 (setq tpu-return (concat "[" (format "%s" (event-key (aref tpu-return-seq 0))) "]")))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
169 (t
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
170 (message "Hit carriage-return <CR> to continue ")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
171 (setq tpu-return-seq (read-event))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
172 (setq tpu-return (concat "[" (format "%s" tpu-return-seq) "]"))))
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
173
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
174 ;; Build the keymap file
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
175
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
176 (set-buffer "Keys")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
177 (insert "
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
178 ;; Arrows
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
179 ;;
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
180 ")
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
181 (set-buffer "Gold-Keys")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
182 (insert "
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
183 ;; GOLD Arrows
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
184 ;;
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
185 ")
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
186 (set-buffer "Directions")
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
187
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
188 (tpu-map-key "Up-Arrow" "" "'tpu-previous-line" "'tpu-move-to-beginning")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
189 (tpu-map-key "Down-arrow" "" "'tpu-next-line" "'tpu-move-to-end")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
190 (tpu-map-key "Right-arrow" "" "'tpu-forward-char" "'end-of-line")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
191 (tpu-map-key "Left-arrow" "" "'tpu-backward-char" "'beginning-of-line")
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
192
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
193 (set-buffer "Keys")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
194 (insert "
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
195 ;; PF keys
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
196 ;;
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
197 ")
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
198 (set-buffer "Gold-Keys")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
199 (insert "
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
200 ;; GOLD PF keys
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
201 ;;
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
202 ")
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
203 (set-buffer "Directions")
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
204
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
205 (tpu-map-key "PF1" " - The GOLD key" "GOLD-map" "'keyboard-quit")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
206 (tpu-map-key "PF2" " - The Keypad Help key" "'tpu-help" "'help-for-help")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
207 (tpu-map-key "PF3" " - The Find/Find-Next key" "'tpu-search-again" "'tpu-search")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
208 (tpu-map-key "PF4" " - The Del/Undelete Line key" "'tpu-delete-current-line" "'tpu-undelete-lines")
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
209
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
210 (set-buffer "Keys")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
211 (insert "
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
212 ;; KP0-9 KP- KP, KP. and KPenter
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
213 ;;
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
214 ")
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
215 (set-buffer "Gold-Keys")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
216 (insert "
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
217 ;; GOLD KP0-9 KP- KP, and KPenter
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
218 ;;
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
219 ")
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
220 (set-buffer "Directions")
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
221
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
222 (tpu-map-key "KP-0" " - The Line/Open-Line key" "'tpu-line" "'open-line")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
223 (tpu-map-key "KP-1" " - The Word/Change-Case key" "'tpu-word" "'tpu-change-case")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
224 (tpu-map-key "KP-2" " - The EOL/Delete-EOL key" "'tpu-end-of-line" "'tpu-delete-to-eol")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
225 (tpu-map-key "KP-3" " - The Character/Special-Insert key" "'tpu-char" "'tpu-special-insert")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
226 (setq tpu-kp4 (tpu-map-key "KP-4" " - The Forward/Bottom key" "'tpu-advance-direction" "'tpu-move-to-end"))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
227 (setq tpu-kp5 (tpu-map-key "KP-5" " - The Reverse/Top key" "'tpu-backup-direction" "'tpu-move-to-beginning"))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
228 (tpu-map-key "KP-6" " - The Remove/Insert key" "'tpu-cut" "'tpu-paste")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
229 (tpu-map-key "KP-7" " - The Page/Do key" "'tpu-page" "'execute-extended-command")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
230 (tpu-map-key "KP-8" " - The Section/Fill key" "'tpu-scroll-window" "'tpu-fill")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
231 (tpu-map-key "KP-9" " - The Append/Replace key" "'tpu-append-region" "'tpu-replace")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
232 (tpu-map-key "KP--" " - The Delete/Undelete Word key" "'tpu-delete-current-word" "'tpu-undelete-words")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
233 (tpu-map-key "KP-," " - The Delete/Undelete Character key" "'tpu-delete-current-char" "'tpu-undelete-char")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
234 (tpu-map-key "KP-." " - The Select/Reset key" "'tpu-select" "'tpu-unselect")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
235 (tpu-map-key "KP-Enter" " - The Enter key on the numeric keypad" "'newline" "'tpu-substitute")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
236 ;; Save the enter key
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
237 (setq tpu-enter tpu-key)
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
238 (setq tpu-enter-seq tpu-key-seq)
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
239
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
240 (set-buffer "Keys")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
241 (insert "
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
242 ;; Editing keypad (find, insert, remove)
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
243 ;; (select, prev, next)
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
244 ;;
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
245 ")
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
246 (set-buffer "Gold-Keys")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
247 (insert "
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
248 ;; GOLD Editing keypad (find, insert, remove)
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
249 ;; (select, prev, next)
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
250 ;;
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
251 ")
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
252 (set-buffer "Directions")
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
253
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
254 (tpu-map-key "Find" " - The Find key on the editing keypad" "'tpu-search" "'nil")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
255 (tpu-map-key "Insert" " - The Insert key on the editing keypad" "'tpu-paste" "'nil")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
256 (tpu-map-key "Remove" " - The Remove key on the editing keypad" "'tpu-cut" "'tpu-store-text")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
257 (tpu-map-key "Select" " - The Select key on the editing keypad" "'tpu-select" "'tpu-unselect")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
258 (tpu-map-key "Prev Scr" " - The Prev Scr key on the editing keypad" "'tpu-scroll-window-down" "'tpu-previous-window")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
259 (tpu-map-key "Next Scr" " - The Next Scr key on the editing keypad" "'tpu-scroll-window-up" "'tpu-next-window")
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
260
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
261 (set-buffer "Keys")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
262 (insert "
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
263 ;; F10-14 Help Do F17
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
264 ;;
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
265 ")
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
266 (set-buffer "Gold-Keys")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
267 (insert "
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
268 ;; GOLD F10-14 Help Do F17
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
269 ;;
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
270 ")
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
271 (set-buffer "Directions")
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
272
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
273 (tpu-map-key "F10" " - Invokes the Exit function on VT200+ terminals" "'tpu-exit" "'nil")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
274 (tpu-map-key "F11" " - Inserts an Escape character into the text" "'tpu-insert-escape" "'nil")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
275 (tpu-map-key "Backspace" " - Not Delete nor ^H! Sometimes on the F12 key" "'tpu-next-beginning-of-line" "'nil")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
276 (tpu-map-key "F13" " - Invokes the delete previous word function" "'tpu-delete-previous-word" "'nil")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
277 (tpu-map-key "F14" " - Toggles insert/overstrike modes" "'tpu-toggle-overwrite-mode" "'nil")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
278 (tpu-map-key "Help" " - Brings up the help screen, same as PF2" "'tpu-help" "'describe-bindings")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
279 (tpu-map-key "Do" " - Invokes the COMMAND function" "'execute-extended-command" "'nil")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
280 (tpu-map-key "F17" "" "'tpu-goto-breadcrumb" "'tpu-drop-breadcrumb")
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
281
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
282 (set-buffer "Gold-Keys")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
283 (cond
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
284 ((not (equal tpu-enter tpu-return))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
285 (insert "
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
286 ;; Minibuffer map additions to make KP_enter = RET
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
287 ;;
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
288 ")
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
289
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
290 (insert (format "(define-key minibuffer-local-map %s 'exit-minibuffer)\n" tpu-enter))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
291 ;; These are not necessary because they are inherited.
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
292 ;; (insert (format "(define-key minibuffer-local-ns-map %s 'exit-minibuffer)\n" tpu-enter))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
293 ;; (insert (format "(define-key minibuffer-local-completion-map %s 'exit-minibuffer)\n" tpu-enter))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
294 (insert (format "(define-key minibuffer-local-must-match-map %s 'minibuffer-complete-and-exit)\n" tpu-enter))))
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
295
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
296 (cond
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
297 ((not (or (equal tpu-kp4 tpu-return) (equal tpu-kp5 tpu-return)))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
298 (insert "
7980
0e9eddc5d598 Change size of selected screen. Reposition after
Richard M. Stallman <rms@gnu.org>
parents: 5140
diff changeset
299 ;; Minibuffer map additions to allow KP-4/5 termination of search strings.
0e9eddc5d598 Change size of selected screen. Reposition after
Richard M. Stallman <rms@gnu.org>
parents: 5140
diff changeset
300 ;;
0e9eddc5d598 Change size of selected screen. Reposition after
Richard M. Stallman <rms@gnu.org>
parents: 5140
diff changeset
301 ")
0e9eddc5d598 Change size of selected screen. Reposition after
Richard M. Stallman <rms@gnu.org>
parents: 5140
diff changeset
302
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
303 (insert (format "(define-key minibuffer-local-map %s 'tpu-search-forward-exit)\n" tpu-kp4))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
304 (insert (format "(define-key minibuffer-local-map %s 'tpu-search-backward-exit)\n" tpu-kp5))))
7980
0e9eddc5d598 Change size of selected screen. Reposition after
Richard M. Stallman <rms@gnu.org>
parents: 5140
diff changeset
305
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
306 (insert "
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
307 ;; Define the tpu-help-enter/return symbols
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
308 ;;
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
309 ")
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
310
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
311 (cond ((featurep 'xemacs)
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
312 (insert (format "(setq tpu-help-enter \"%s\")\n" tpu-enter-seq))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
313 (insert (format "(setq tpu-help-return \"%s\")\n" tpu-return-seq))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
314 (insert "(setq tpu-help-N \"[#<keypress-event N>]\")\n")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
315 (insert "(setq tpu-help-n \"[#<keypress-event n>]\")\n")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
316 (insert "(setq tpu-help-P \"[#<keypress-event P>]\")\n")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
317 (insert "(setq tpu-help-p \"[#<keypress-event p>]\")\n"))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
318 (t
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
319 (insert (format "(setq tpu-help-enter \"%s\")\n" tpu-enter))))
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
320
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
321 (append-to-buffer "Keys" 1 (point))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
322 (set-buffer "Keys")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
323
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
324 ;; Save the key mapping program
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
325
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
326 (let ((file
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
327 (convert-standard-filename
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
328 (if (featurep 'xemacs) "~/.tpu-lucid-keys" "~/.tpu-keys"))))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
329 (set-visited-file-name
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
330 (read-file-name (format "Save key mapping to file (default %s): " file) "" file)))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
331 (save-buffer)
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
332
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
333 ;; Load the newly defined keys and clean up
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
334
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
335 (require 'tpu-edt)
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
336 (eval-buffer)
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
337 (kill-buffer (current-buffer))
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
338 (kill-buffer "*scratch*")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
339 (kill-buffer "Gold-Keys")
11595
74168f918db7 Eval key definitions and clean up upon completion.
Richard M. Stallman <rms@gnu.org>
parents: 11547
diff changeset
340
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
341 ;; Let them know it worked.
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
342
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
343 (switch-to-buffer "Directions")
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
344 (erase-buffer)
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
345 (insert "
11595
74168f918db7 Eval key definitions and clean up upon completion.
Richard M. Stallman <rms@gnu.org>
parents: 11547
diff changeset
346 A custom TPU-edt keymap file has been created.
74168f918db7 Eval key definitions and clean up upon completion.
Richard M. Stallman <rms@gnu.org>
parents: 11547
diff changeset
347
74168f918db7 Eval key definitions and clean up upon completion.
Richard M. Stallman <rms@gnu.org>
parents: 11547
diff changeset
348 Press GOLD-k to remove this buffer and continue editing.
74168f918db7 Eval key definitions and clean up upon completion.
Richard M. Stallman <rms@gnu.org>
parents: 11547
diff changeset
349 ")
87568
a7f6615bcf7f (tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85951
diff changeset
350 (goto-char (point-min)))
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
351
81315
19cac94ab3b0 (tpu-emacs-map-key): Use new keymap names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75346
diff changeset
352 ;; arch-tag: bab5872f-cd3a-4c1c-aedb-047b67646f6c
4421
95bb7e28d761 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
353 ;;; tpu-mapper.el ends here