Mercurial > emacs
annotate lisp/emulation/tpu-mapper.el @ 94144:40901fec25aa
Add arch tagline
author | Miles Bader <miles@gnu.org> |
---|---|
date | Fri, 18 Apr 2008 02:46:47 +0000 |
parents | a7f6615bcf7f |
children | 606f2d163a64 eb7b2376cae5 |
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 | 2 |
74466 | 3 ;; Copyright (C) 1993, 1994, 1995, 2001, 2002, 2003, 2004, |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
4421 | 5 |
6 ;; Author: Rob Riepel <riepel@networking.stanford.edu> | |
7 ;; Maintainer: Rob Riepel <riepel@networking.stanford.edu> | |
5140 | 8 ;; Keywords: emulations |
4421 | 9 |
4450 | 10 ;; This file is part of GNU Emacs. |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
78218
ac0efac52065
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75346
diff
changeset
|
14 ;; the Free Software Foundation; either version 3, or (at your option) |
4450 | 15 ;; any later version. |
4421 | 16 |
4450 | 17 ;; GNU Emacs is distributed in the hope that it will be useful, |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
14169 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
4421 | 26 |
27 ;;; Commentary: | |
28 | |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
29 ;; 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
|
30 ;; defines the TPU-edt keypad for Emacs running on X-Windows. |
4421 | 31 |
32 ;;; Code: | |
33 | |
34 ;;; | |
35 ;;; Key variables | |
36 ;;; | |
7980
0e9eddc5d598
Change size of selected screen. Reposition after
Richard M. Stallman <rms@gnu.org>
parents:
5140
diff
changeset
|
37 (defvar tpu-kp4 nil) |
0e9eddc5d598
Change size of selected screen. Reposition after
Richard M. Stallman <rms@gnu.org>
parents:
5140
diff
changeset
|
38 (defvar tpu-kp5 nil) |
4421 | 39 (defvar tpu-key nil) |
40 (defvar tpu-enter nil) | |
41 (defvar tpu-return nil) | |
42 (defvar tpu-key-seq nil) | |
43 (defvar tpu-enter-seq nil) | |
44 (defvar tpu-return-seq nil) | |
45 | |
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 ;;; Key mapping function |
4421 | 48 ;;; |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
49 (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
|
50 (interactive) |
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
51 (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
|
52 (progn |
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
53 (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
|
54 (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
|
55 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
|
56 (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
|
57 (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
|
58 (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
|
59 (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
|
60 (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
|
61 (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
|
62 (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
|
63 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
|
64 (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
|
65 (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
|
66 (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
|
67 (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
|
68 (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
|
69 (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
|
70 tpu-key) |
4421 | 71 |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
72 ;;;###autoload |
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
73 (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
|
74 "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
|
75 |
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
76 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
|
77 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
|
78 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
|
79 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
|
80 suit your tastes (or to cope with those silly Sun and PC keypads). |
4421 | 81 |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
82 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
|
83 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
|
84 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
|
85 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
|
86 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
|
87 |
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
88 (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
|
89 (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
|
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 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
|
92 |
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
93 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
|
94 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
|
95 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
|
96 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
|
97 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
|
98 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
|
99 (interactive) |
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 ;; 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
|
102 |
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
103 (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
|
104 (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
|
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 ;; 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
|
107 |
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
108 (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
|
109 (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
|
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 ;; 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
|
112 |
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 "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
|
114 (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
|
115 (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
|
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 ;; 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
|
118 |
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
119 (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
|
120 (insert "\ |
4421 | 121 ;; Key definitions for TPU-edt |
122 ;; | |
123 ") | |
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 ;; Display directions |
4421 | 126 |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
127 (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
|
128 (insert " |
4421 | 129 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
|
130 for use with the x-windows version of Emacs and TPU-edt. |
4421 | 131 |
132 Start by pressing the RETURN key, and continue by pressing the keys | |
133 specified in the mini-buffer. You can re-arrange the TPU-edt keypad | |
134 by pressing any key you want at any prompt. If you want to entirely | |
135 omit a key, just press RETURN at the prompt. | |
136 | |
137 Here's a picture of the standard TPU/edt keypad for reference: | |
138 | |
139 _______________________ _______________________________ | |
140 | HELP | Do | | | | | | | |
141 |KeyDefs| | | | | | | | |
142 |_______|_______________| |_______|_______|_______|_______| | |
143 _______________________ _______________________________ | |
144 | Find |Insert |Remove | | Gold | HELP |FndNxt | Del L | | |
145 | | |Sto Tex| | key |E-Help | Find |Undel L| | |
146 |_______|_______|_______| |_______|_______|_______|_______| | |
147 |Select |Pre Scr|Nex Scr| | Page | Sect |Append | Del W | | |
148 | Reset |Pre Win|Nex Win| | Do | Fill |Replace|Undel W| | |
149 |_______|_______|_______| |_______|_______|_______|_______| | |
150 |Move up| |Forward|Reverse|Remove | Del C | | |
151 | Top | |Bottom | Top |Insert |Undel C| | |
152 _______|_______|_______ |_______|_______|_______|_______| | |
153 |Mov Lef|Mov Dow|Mov Rig| | Word | EOL | Char | | | |
154 |StaOfLi|Bottom |EndOfLi| |ChngCas|Del EOL|SpecIns| Enter | | |
155 |_______|_______|_______| |_______|_______|_______| | | |
156 | Line |Select | Subs | | |
157 | Open Line | Reset | | | |
158 |_______________|_______|_______| | |
159 | |
160 | |
161 ") | |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
162 (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
|
163 (goto-char (point-min)) |
4421 | 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 ;; Save <CR> for future reference |
4421 | 166 |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
167 (cond |
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
168 ((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
|
169 (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
|
170 (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
|
171 (t |
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
172 (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
|
173 (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
|
174 (setq tpu-return (concat "[" (format "%s" tpu-return-seq) "]")))) |
4421 | 175 |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
176 ;; 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
|
177 |
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
178 (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
|
179 (insert " |
4421 | 180 ;; Arrows |
181 ;; | |
182 ") | |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
183 (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
|
184 (insert " |
4421 | 185 ;; GOLD Arrows |
186 ;; | |
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 (set-buffer "Directions") |
4421 | 189 |
87568
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 "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
|
191 (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
|
192 (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
|
193 (tpu-map-key "Left-arrow" "" "'tpu-backward-char" "'beginning-of-line") |
4421 | 194 |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
195 (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
|
196 (insert " |
4421 | 197 ;; PF keys |
198 ;; | |
199 ") | |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
200 (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
|
201 (insert " |
4421 | 202 ;; GOLD PF keys |
203 ;; | |
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 (set-buffer "Directions") |
4421 | 206 |
87568
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 "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
|
208 (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
|
209 (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
|
210 (tpu-map-key "PF4" " - The Del/Undelete Line key" "'tpu-delete-current-line" "'tpu-undelete-lines") |
4421 | 211 |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
212 (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
|
213 (insert " |
4421 | 214 ;; KP0-9 KP- KP, KP. and KPenter |
215 ;; | |
216 ") | |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
217 (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
|
218 (insert " |
4421 | 219 ;; GOLD KP0-9 KP- KP, and KPenter |
220 ;; | |
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 (set-buffer "Directions") |
4421 | 223 |
87568
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-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
|
225 (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
|
226 (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
|
227 (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
|
228 (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
|
229 (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
|
230 (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
|
231 (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
|
232 (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
|
233 (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
|
234 (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
|
235 (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
|
236 (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
|
237 (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
|
238 ;; 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
|
239 (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
|
240 (setq tpu-enter-seq tpu-key-seq) |
4421 | 241 |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
242 (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
|
243 (insert " |
4421 | 244 ;; Editing keypad (find, insert, remove) |
245 ;; (select, prev, next) | |
246 ;; | |
247 ") | |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
248 (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
|
249 (insert " |
4421 | 250 ;; GOLD Editing keypad (find, insert, remove) |
251 ;; (select, prev, next) | |
252 ;; | |
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 (set-buffer "Directions") |
4421 | 255 |
87568
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 "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
|
257 (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
|
258 (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
|
259 (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
|
260 (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
|
261 (tpu-map-key "Next Scr" " - The Next Scr key on the editing keypad" "'tpu-scroll-window-up" "'tpu-next-window") |
4421 | 262 |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
263 (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
|
264 (insert " |
4421 | 265 ;; F10-14 Help Do F17 |
266 ;; | |
267 ") | |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
268 (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
|
269 (insert " |
4421 | 270 ;; GOLD F10-14 Help Do F17 |
271 ;; | |
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 (set-buffer "Directions") |
4421 | 274 |
87568
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 "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
|
276 (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
|
277 (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
|
278 (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
|
279 (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
|
280 (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
|
281 (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
|
282 (tpu-map-key "F17" "" "'tpu-goto-breadcrumb" "'tpu-drop-breadcrumb") |
4421 | 283 |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
284 (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
|
285 (cond |
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
286 ((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
|
287 (insert " |
4421 | 288 ;; Minibuffer map additions to make KP_enter = RET |
289 ;; | |
290 ") | |
291 | |
87568
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-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 ;; 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
|
294 ;; (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
|
295 ;; (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
|
296 (insert (format "(define-key minibuffer-local-must-match-map %s 'minibuffer-complete-and-exit)\n" tpu-enter)))) |
4421 | 297 |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
298 (cond |
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
299 ((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
|
300 (insert " |
7980
0e9eddc5d598
Change size of selected screen. Reposition after
Richard M. Stallman <rms@gnu.org>
parents:
5140
diff
changeset
|
301 ;; 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
|
302 ;; |
0e9eddc5d598
Change size of selected screen. Reposition after
Richard M. Stallman <rms@gnu.org>
parents:
5140
diff
changeset
|
303 ") |
0e9eddc5d598
Change size of selected screen. Reposition after
Richard M. Stallman <rms@gnu.org>
parents:
5140
diff
changeset
|
304 |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
305 (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
|
306 (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
|
307 |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
308 (insert " |
4421 | 309 ;; Define the tpu-help-enter/return symbols |
310 ;; | |
311 ") | |
312 | |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
313 (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
|
314 (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
|
315 (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
|
316 (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
|
317 (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
|
318 (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
|
319 (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
|
320 (t |
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
321 (insert (format "(setq tpu-help-enter \"%s\")\n" tpu-enter)))) |
4421 | 322 |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
323 (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
|
324 (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
|
325 |
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
326 ;; Save the key mapping program |
4421 | 327 |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
328 (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
|
329 (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
|
330 (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
|
331 (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
|
332 (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
|
333 (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
|
334 |
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
335 ;; Load the newly defined keys and clean up |
4421 | 336 |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
337 (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
|
338 (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
|
339 (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
|
340 (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
|
341 (kill-buffer "Gold-Keys") |
11595
74168f918db7
Eval key definitions and clean up upon completion.
Richard M. Stallman <rms@gnu.org>
parents:
11547
diff
changeset
|
342 |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
343 ;; 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
|
344 |
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
345 (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
|
346 (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
|
347 (insert " |
11595
74168f918db7
Eval key definitions and clean up upon completion.
Richard M. Stallman <rms@gnu.org>
parents:
11547
diff
changeset
|
348 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
|
349 |
74168f918db7
Eval key definitions and clean up upon completion.
Richard M. Stallman <rms@gnu.org>
parents:
11547
diff
changeset
|
350 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
|
351 ") |
87568
a7f6615bcf7f
(tpu-mapper): New command. Contains all the code previously at top-level.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85951
diff
changeset
|
352 (goto-char (point-min))) |
4421 | 353 |
81315
19cac94ab3b0
(tpu-emacs-map-key): Use new keymap names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75346
diff
changeset
|
354 ;; arch-tag: bab5872f-cd3a-4c1c-aedb-047b67646f6c |
4421 | 355 ;;; tpu-mapper.el ends here |