72
|
1 ;;; tpu-edt.el --- Emacs emulating TPU emulating EDT
|
|
2
|
|
3 ;; Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.
|
0
|
4
|
|
5 ;; Author: Rob Riepel <riepel@networking.stanford.edu>
|
|
6 ;; Maintainer: Rob Riepel <riepel@networking.stanford.edu>
|
72
|
7 ;; Version: 4.2
|
0
|
8 ;; Keywords: emulations
|
|
9
|
134
|
10 ;; Modified for XEmacs by R. Kevin Oberman <oberman@es.net>
|
|
11
|
72
|
12 ;; This file is part of XEmacs.
|
0
|
13
|
72
|
14 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
15 ;; under the terms of the GNU General Public License as published by
|
0
|
16 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
17 ;; any later version.
|
|
18
|
72
|
19 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
20 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
22 ;; General Public License for more details.
|
0
|
23
|
|
24 ;; You should have received a copy of the GNU General Public License
|
72
|
25 ;; along with XEmacs; see the file COPYING. If not, write to the Free
|
|
26 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
27 ;; 02111-1307, USA.
|
|
28
|
|
29 ;;; Synched up with: FSF 19.34
|
|
30
|
|
31 ;; TPU-edt is based on tpu.el by Jeff Kowalski and Bob Covey.
|
|
32
|
|
33 ;;; Commentary:
|
|
34
|
|
35 ;; %% TPU-edt -- Emacs emulating TPU emulating EDT
|
|
36
|
|
37 ;; %% Contents
|
|
38
|
|
39 ;; % Introduction
|
|
40 ;; % Differences Between TPU-edt and DEC TPU/edt
|
|
41 ;; % Starting TPU-edt
|
|
42 ;; % Customizing TPU-edt using the Emacs Initialization File
|
|
43 ;; % Regular Expressions in TPU-edt
|
|
44
|
|
45
|
|
46 ;; %% Introduction
|
|
47
|
|
48 ;; TPU-edt emulates the popular DEC VMS editor EDT (actually, it emulates
|
|
49 ;; DEC TPU's EDT emulation, hence the name TPU-edt). TPU-edt features the
|
|
50 ;; following TPU/edt functionality:
|
|
51
|
|
52 ;; . EDT keypad
|
|
53 ;; . On-line help
|
|
54 ;; . Repeat counts
|
|
55 ;; . Scroll margins
|
|
56 ;; . Learn sequences
|
|
57 ;; . Free cursor mode
|
|
58 ;; . Rectangular cut and paste
|
|
59 ;; . Multiple windows and buffers
|
|
60 ;; . TPU line-mode REPLACE command
|
|
61 ;; . Wild card search and substitution
|
|
62 ;; . Configurable through an initialization file
|
|
63 ;; . History recall of search strings, file names, and commands
|
|
64
|
|
65 ;; Please note that TPU-edt does NOT emulate TPU. It emulates TPU's EDT
|
|
66 ;; emulation. Very few TPU line-mode commands are supported.
|
|
67
|
|
68 ;; TPU-edt, like it's VMS cousin, works on VT-series terminals with DEC
|
|
69 ;; style keyboards. VT terminal emulators, including xterm with the
|
|
70 ;; appropriate key translations, work just fine too.
|
|
71
|
|
72 ;; TPU-edt works with X-windows. This is accomplished through a TPU-edt X
|
|
73 ;; key map. The TPU-edt module tpu-mapper creates this map and stores it
|
|
74 ;; in a file. Tpu-mapper will be run automatically the first time you
|
|
75 ;; invoke the X-windows version of emacs, or you can run it by hand. See
|
|
76 ;; the commentary in tpu-mapper.el for details.
|
|
77
|
|
78
|
|
79 ;; %% Differences Between TPU-edt and DEC TPU/edt
|
|
80
|
|
81 ;; In some cases, Emacs doesn't support text highlighting, so selected
|
|
82 ;; regions are not shown in inverse video. Emacs uses the concept of "the
|
|
83 ;; mark". The mark is set at one end of a selected region; the cursor is
|
|
84 ;; at the other. The letter "M" appears in the mode line when the mark is
|
|
85 ;; set. The native emacs command ^X^X (Control-X twice) exchanges the
|
|
86 ;; cursor with the mark; this provides a handy way to find the location of
|
|
87 ;; the mark.
|
|
88
|
|
89 ;; In TPU the cursor can be either bound or free. Bound means the cursor
|
|
90 ;; cannot wander outside the text of the file being edited. Free means
|
|
91 ;; the arrow keys can move the cursor past the ends of lines. Free is the
|
|
92 ;; default mode in TPU; bound is the only mode in EDT. Bound is the only
|
|
93 ;; mode in the base version of TPU-edt; optional extensions add an
|
|
94 ;; approximation of free mode, see the commentary in tpu-extras.el for
|
|
95 ;; details.
|
|
96
|
|
97 ;; Like TPU, emacs uses multiple buffers. Some buffers are used to hold
|
|
98 ;; files you are editing; other "internal" buffers are used for emacs' own
|
|
99 ;; purposes (like showing you help). Here are some commands for dealing
|
|
100 ;; with buffers.
|
|
101
|
|
102 ;; Gold-B moves to next buffer, including internal buffers
|
|
103 ;; Gold-N moves to next buffer containing a file
|
|
104 ;; Gold-M brings up a buffer menu (like TPU "show buffers")
|
|
105
|
|
106 ;; Emacs is very fond of throwing up new windows. Dealing with all these
|
|
107 ;; windows can be a little confusing at first, so here are a few commands
|
|
108 ;; to that may help:
|
|
109
|
|
110 ;; Gold-Next_Scr moves to the next window on the screen
|
|
111 ;; Gold-Prev_Scr moves to the previous window on the screen
|
|
112 ;; Gold-TAB also moves to the next window on the screen
|
|
113
|
|
114 ;; Control-x 1 deletes all but the current window
|
|
115 ;; Control-x 0 deletes the current window
|
|
116
|
|
117 ;; Note that the buffers associated with deleted windows still exist!
|
|
118
|
|
119 ;; Like TPU, TPU-edt has a "command" function, invoked with Gold-KP7 or
|
|
120 ;; Do. Most of the commands available are emacs commands. Some TPU
|
|
121 ;; commands are available, they are: replace, exit, quit, include, and
|
|
122 ;; Get (unfortunately, "get" is an internal emacs function, so we are
|
|
123 ;; stuck with "Get" - to make life easier, Get is available as Gold-g).
|
|
124
|
|
125 ;; TPU-edt supports the recall of commands, file names, and search
|
|
126 ;; strings. The history of strings recalled differs slightly from
|
|
127 ;; TPU/edt, but it is still very convenient.
|
|
128
|
|
129 ;; Help is available! The traditional help keys (Help and PF2) display
|
|
130 ;; a small help file showing the default keypad layout, control key
|
|
131 ;; functions, and Gold key functions. Pressing any key inside of help
|
|
132 ;; splits the screen and prints a description of the function of the
|
|
133 ;; pressed key. Gold-PF2 invokes the native emacs help, with it's
|
|
134 ;; zillions of options.
|
|
135
|
|
136 ;; Thanks to emacs, TPU-edt has some extensions that may make your life
|
|
137 ;; easier, or at least more interesting. For example, Gold-r toggles
|
|
138 ;; TPU-edt rectangular mode. In rectangular mode, Remove and Insert work
|
|
139 ;; on rectangles. Likewise, Gold-* toggles TPU-edt regular expression
|
|
140 ;; mode. In regular expression mode Find, Find Next, and the line-mode
|
|
141 ;; replace command work with regular expressions. [A regular expression
|
|
142 ;; is a pattern that denotes a set of strings; like VMS wildcards.]
|
|
143
|
|
144 ;; Emacs also gives TPU-edt the undo and occur functions. Undo does
|
|
145 ;; what it says; it undoes the last change. Multiple undos in a row
|
|
146 ;; undo multiple changes. For your convenience, undo is available on
|
|
147 ;; Gold-u. Occur shows all the lines containing a specific string in
|
|
148 ;; another window. Moving to that window, and typing ^C^C (Control-C
|
|
149 ;; twice) on a particular line moves you back to the original window
|
|
150 ;; at that line. Occur is on Gold-o.
|
|
151
|
|
152 ;; Finally, as you edit, remember that all the power of emacs is at
|
|
153 ;; your disposal. It really is a fantastic tool. You may even want to
|
|
154 ;; take some time and read the emacs tutorial; perhaps not to learn the
|
|
155 ;; native emacs key bindings, but to get a feel for all the things
|
|
156 ;; emacs can do for you. The emacs tutorial is available from the
|
|
157 ;; emacs help function: "Gold-PF2 t"
|
|
158
|
|
159
|
|
160 ;; %% Starting TPU-edt
|
|
161
|
|
162 ;; All you have to do to start TPU-edt, is turn it on. This can be
|
|
163 ;; done from the command line when running emacs.
|
|
164
|
|
165 ;; prompt> emacs -f tpu-edt
|
|
166
|
|
167 ;; If you've already started emacs, turn on TPU-edt using the tpu-edt
|
|
168 ;; command. First press `M-x' (that's usually `ESC' followed by `x')
|
|
169 ;; and type `tpu-edt' followed by a carriage return.
|
|
170
|
|
171 ;; If you like TPU-edt and want to use it all the time, you can start
|
|
172 ;; TPU-edt using the emacs initialization file, .emacs. Simply create
|
|
173 ;; a .emacs file in your home directory containing the line:
|
|
174
|
|
175 ;; (tpu-edt)
|
|
176
|
|
177 ;; That's all you need to do to start TPU-edt.
|
|
178
|
|
179
|
|
180 ;; %% Customizing TPU-edt using the Emacs Initialization File
|
|
181
|
|
182 ;; The following is a sample emacs initialization file. It shows how to
|
|
183 ;; invoke TPU-edt, and how to customize it.
|
|
184
|
|
185 ;; ; .emacs - a sample emacs initialization file
|
|
186
|
|
187 ;; ; Turn on TPU-edt
|
|
188 ;; (tpu-edt)
|
|
189
|
|
190 ;; ; Set scroll margins 10% (top) and 15% (bottom).
|
|
191 ;; (tpu-set-scroll-margins "10%" "15%")
|
|
192
|
|
193 ;; ; Load the vtxxx terminal control functions.
|
|
194 ;; (load "vt-control" t)
|
|
195
|
|
196 ;; ; TPU-edt treats words like EDT; here's how to add word separators.
|
|
197 ;; ; Note that backslash (\) and double quote (") are quoted with '\'.
|
|
198 ;; (tpu-add-word-separators "]\\[-_,.\"=+()'/*#:!&;$")
|
|
199
|
|
200 ;; ; Emacs is happy to save files without a final newline; other Unix
|
|
201 ;; ; programs hate that! Here we make sure that files end with newlines.
|
|
202 ;; (setq require-final-newline t)
|
|
203
|
|
204 ;; ; Emacs uses Control-s and Control-q. Problems can occur when using
|
|
205 ;; ; emacs on terminals that use these codes for flow control (Xon/Xoff
|
|
206 ;; ; flow control). These lines disable emacs' use of these characters.
|
|
207 ;; (global-unset-key "\C-s")
|
|
208 ;; (global-unset-key "\C-q")
|
|
209
|
|
210 ;; ; The emacs universal-argument function is very useful.
|
|
211 ;; ; This line maps universal-argument to Gold-PF1.
|
|
212 ;; (define-key GOLD-SS3-map "P" 'universal-argument) ; Gold-PF1
|
|
213
|
|
214 ;; ; Make KP7 move by paragraphs, instead of pages.
|
|
215 ;; (define-key SS3-map "w" 'tpu-paragraph) ; KP7
|
|
216
|
|
217 ;; ; Repeat the preceding mappings for X-windows.
|
|
218 ;; (cond
|
|
219 ;; (window-system
|
134
|
220 ;; (global-set-key [kp_7] 'tpu-paragraph) ; KP7
|
|
221 ;; (define-key GOLD-map [kp_f1] 'universal-argument))) ; GOLD-PF1
|
72
|
222
|
|
223 ;; ; Display the TPU-edt version.
|
|
224 ;; (tpu-version)
|
|
225
|
|
226
|
|
227 ;; %% Regular Expressions in TPU-edt
|
|
228
|
|
229 ;; Gold-* toggles TPU-edt regular expression mode. In regular expression
|
|
230 ;; mode, find, find next, replace, and substitute accept emacs regular
|
|
231 ;; expressions. A complete list of emacs regular expressions can be found
|
|
232 ;; using the emacs "info" command (it's somewhat like the VMS help
|
|
233 ;; command). Try the following sequence of commands:
|
|
234
|
|
235 ;; DO info <enter info mode>
|
|
236 ;; m emacs <select the "emacs" topic>
|
|
237 ;; m regexs <select the "regular expression" topic>
|
|
238
|
|
239 ;; Type "q" to quit out of info mode.
|
|
240
|
|
241 ;; There is a problem in regular expression mode when searching for empty
|
|
242 ;; strings, like beginning-of-line (^) and end-of-line ($). When searching
|
|
243 ;; for these strings, find-next may find the current string, instead of the
|
|
244 ;; next one. This can cause global replace and substitute commands to loop
|
|
245 ;; forever in the same location. For this reason, commands like
|
|
246
|
|
247 ;; replace "^" "> " <add "> " to beginning of line>
|
|
248 ;; replace "$" "00711" <add "00711" to end of line>
|
|
249
|
|
250 ;; may not work properly.
|
|
251
|
|
252 ;; Commands like those above are very useful for adding text to the
|
|
253 ;; beginning or end of lines. They might work on a line-by-line basis, but
|
|
254 ;; go into an infinite loop if the "all" response is specified. If the
|
|
255 ;; goal is to add a string to the beginning or end of a particular set of
|
|
256 ;; lines TPU-edt provides functions to do this.
|
|
257
|
|
258 ;; Gold-^ Add a string at BOL in region or buffer
|
|
259 ;; Gold-$ Add a string at EOL in region or buffer
|
|
260
|
|
261 ;; There is also a TPU-edt interface to the native emacs string replacement
|
|
262 ;; commands. Gold-/ invokes this command. It accepts regular expressions
|
|
263 ;; if TPU-edt is in regular expression mode. Given a repeat count, it will
|
|
264 ;; perform the replacement without prompting for confirmation.
|
|
265
|
|
266 ;; This command replaces empty strings correctly, however, it has its
|
|
267 ;; drawbacks. As a native emacs command, it has a different interface
|
|
268 ;; than the emulated TPU commands. Also, it works only in the forward
|
|
269 ;; direction, regardless of the current TPU-edt direction.
|
|
270
|
|
271 ;; NOTE: There was a very old tpu-edt in XEmacs 19.14 so I deleted it and
|
|
272 ;; replaced it with the one in Emacs 19.34. -sb
|
0
|
273
|
|
274 ;;; Code:
|
|
275
|
|
276
|
|
277 ;;;
|
72
|
278 ;;; Version Information
|
0
|
279 ;;;
|
72
|
280 (defconst tpu-version "4.2" "TPU-edt version number.")
|
0
|
281
|
|
282
|
|
283 ;;;
|
|
284 ;;; User Configurable Variables
|
|
285 ;;;
|
|
286 (defconst tpu-have-ispell t
|
|
287 "*If non-nil (default), TPU-edt uses ispell for spell checking.")
|
|
288
|
|
289 (defconst tpu-kill-buffers-silently nil
|
|
290 "*If non-nil, TPU-edt kills modified buffers without asking.")
|
|
291
|
|
292 (defvar tpu-percent-scroll 75
|
|
293 "*Percentage of the screen to scroll for next/previous screen commands.")
|
|
294
|
|
295 (defvar tpu-pan-columns 16
|
|
296 "*Number of columns the tpu-pan functions scroll left or right.")
|
|
297
|
|
298
|
|
299 ;;;
|
|
300 ;;; Emacs version identifiers - currently referenced by
|
|
301 ;;;
|
|
302 ;;; o tpu-mark o tpu-set-mark
|
|
303 ;;; o tpu-string-prompt o tpu-regexp-prompt
|
|
304 ;;; o tpu-edt-on o tpu-load-xkeys
|
|
305 ;;; o tpu-update-mode-line o mode line section
|
|
306 ;;;
|
|
307 (defconst tpu-emacs19-p (not (string-lessp emacs-version "19"))
|
72
|
308 "Non-nil if we are running Lucid Emacs or version 19.")
|
0
|
309
|
72
|
310 (defconst tpu-lucid-emacs19-p
|
|
311 (and tpu-emacs19-p (string-match "Lucid" emacs-version))
|
|
312 "Non-nil if we are running Lucid Emacs version 19.")
|
0
|
313
|
|
314
|
|
315 ;;;
|
|
316 ;;; Global Keymaps
|
|
317 ;;;
|
|
318 (defvar CSI-map (make-sparse-keymap)
|
|
319 "Maps the CSI function keys on the VT100 keyboard.
|
|
320 CSI is DEC's name for the sequence <ESC>[.")
|
|
321
|
|
322 (defvar SS3-map (make-sparse-keymap)
|
|
323 "Maps the SS3 function keys on the VT100 keyboard.
|
|
324 SS3 is DEC's name for the sequence <ESC>O.")
|
|
325
|
|
326 (defvar GOLD-map (make-keymap)
|
72
|
327 "Maps the function keys on the VT100 keyboard preceded by PF1.
|
0
|
328 GOLD is the ASCII 7-bit escape sequence <ESC>OP.")
|
|
329
|
|
330 (defvar GOLD-CSI-map (make-sparse-keymap)
|
72
|
331 "Maps the function keys on the VT100 keyboard preceded by GOLD-CSI.")
|
0
|
332
|
|
333 (defvar GOLD-SS3-map (make-sparse-keymap)
|
72
|
334 "Maps the function keys on the VT100 keyboard preceded by GOLD-SS3.")
|
0
|
335
|
|
336 (defvar tpu-global-map nil "TPU-edt global keymap.")
|
|
337 (defvar tpu-original-global-map (copy-keymap global-map)
|
|
338 "Original global keymap.")
|
|
339
|
72
|
340 (and tpu-lucid-emacs19-p
|
0
|
341 (defvar minibuffer-local-ns-map (make-sparse-keymap)
|
72
|
342 "Hack to give Lucid Emacs the same maps as ordinary Emacs."))
|
0
|
343
|
|
344
|
|
345 ;;;
|
|
346 ;;; Global Variables
|
|
347 ;;;
|
|
348 (defvar tpu-edt-mode nil
|
|
349 "If non-nil, TPU-edt mode is active.")
|
|
350
|
|
351 (defvar tpu-last-replaced-text ""
|
|
352 "Last text deleted by a TPU-edt replace command.")
|
|
353 (defvar tpu-last-deleted-region ""
|
|
354 "Last text deleted by a TPU-edt remove command.")
|
|
355 (defvar tpu-last-deleted-lines ""
|
|
356 "Last text deleted by a TPU-edt line-delete command.")
|
|
357 (defvar tpu-last-deleted-words ""
|
|
358 "Last text deleted by a TPU-edt word-delete command.")
|
|
359 (defvar tpu-last-deleted-char ""
|
|
360 "Last character deleted by a TPU-edt character-delete command.")
|
|
361
|
|
362 (defvar tpu-searching-forward t
|
|
363 "If non-nil, TPU-edt is searching in the forward direction.")
|
|
364 (defvar tpu-search-last-string ""
|
|
365 "Last text searched for by the TPU-edt search commands.")
|
|
366
|
|
367 (defvar tpu-regexp-p nil
|
|
368 "If non-nil, TPU-edt uses regexp search and replace routines.")
|
|
369 (defvar tpu-rectangular-p nil
|
|
370 "If non-nil, TPU-edt removes and inserts rectangles.")
|
|
371 (defvar tpu-advance t
|
|
372 "True when TPU-edt is operating in the forward direction.")
|
|
373 (defvar tpu-reverse nil
|
|
374 "True when TPU-edt is operating in the backward direction.")
|
72
|
375 (defvar tpu-control-keys nil
|
0
|
376 "If non-nil, control keys are set to perform TPU functions.")
|
|
377 (defvar tpu-xkeys-file nil
|
|
378 "File containing TPU-edt X key map.")
|
|
379
|
|
380 (defvar tpu-rectangle-string nil
|
|
381 "Mode line string to identify rectangular mode.")
|
|
382 (defvar tpu-direction-string nil
|
|
383 "Mode line string to identify current direction.")
|
|
384
|
|
385 (defvar tpu-add-at-bol-hist nil
|
|
386 "History variable for tpu-edt-add-at-bol function.")
|
|
387 (defvar tpu-add-at-eol-hist nil
|
|
388 "History variable for tpu-edt-add-at-eol function.")
|
|
389 (defvar tpu-regexp-prompt-hist nil
|
|
390 "History variable for search and replace functions.")
|
|
391
|
|
392
|
|
393 ;;;
|
|
394 ;;; Buffer Local Variables
|
|
395 ;;;
|
|
396 (defvar tpu-newline-and-indent-p nil
|
|
397 "If non-nil, Return produces a newline and indents.")
|
|
398 (make-variable-buffer-local 'tpu-newline-and-indent-p)
|
|
399
|
|
400 (defvar tpu-newline-and-indent-string nil
|
|
401 "Mode line string to identify AutoIndent mode.")
|
|
402 (make-variable-buffer-local 'tpu-newline-and-indent-string)
|
|
403
|
|
404 (defvar tpu-saved-delete-func nil
|
|
405 "Saved value of the delete key.")
|
|
406 (make-variable-buffer-local 'tpu-saved-delete-func)
|
|
407
|
|
408 (defvar tpu-buffer-local-map nil
|
|
409 "TPU-edt buffer local key map.")
|
|
410 (make-variable-buffer-local 'tpu-buffer-local-map)
|
|
411
|
|
412
|
|
413 ;;;
|
|
414 ;;; Mode Line - Modify the mode line to show the following
|
|
415 ;;;
|
|
416 ;;; o If the mark is set.
|
|
417 ;;; o Direction of motion.
|
|
418 ;;; o Active rectangle mode.
|
|
419 ;;;
|
|
420 (defvar tpu-original-mode-line mode-line-format)
|
|
421 (defvar tpu-original-mm-alist minor-mode-alist)
|
|
422
|
|
423 (defvar tpu-mark-flag " ")
|
|
424 (make-variable-buffer-local 'tpu-mark-flag)
|
|
425
|
|
426 (defun tpu-set-mode-line (for-tpu)
|
|
427 "Set the mode for TPU-edt, or reset it to default Emacs."
|
|
428 (cond ((not for-tpu)
|
|
429 (setq mode-line-format tpu-original-mode-line)
|
|
430 (setq minor-mode-alist tpu-original-mm-alist))
|
|
431 (t
|
|
432 (setq-default mode-line-format
|
|
433 (list (purecopy "")
|
|
434 'mode-line-modified
|
|
435 'mode-line-buffer-identification
|
|
436 (purecopy " ")
|
|
437 'global-mode-string
|
|
438 (purecopy " ")
|
|
439 'tpu-mark-flag
|
|
440 (purecopy " %[(")
|
72
|
441 'mode-name 'mode-line-process 'minor-mode-alist
|
|
442 (purecopy "%n")
|
|
443 (purecopy ")%]--")
|
|
444 (purecopy '(line-number-mode "L%l--"))
|
|
445 (purecopy '(column-number-mode "C%c--"))
|
0
|
446 (purecopy '(-3 . "%p"))
|
|
447 (purecopy "-%-")))
|
|
448 (or (assq 'tpu-newline-and-indent-p minor-mode-alist)
|
|
449 (setq minor-mode-alist
|
|
450 (cons '(tpu-newline-and-indent-p
|
|
451 tpu-newline-and-indent-string)
|
|
452 minor-mode-alist)))
|
|
453 (or (assq 'tpu-rectangular-p minor-mode-alist)
|
|
454 (setq minor-mode-alist
|
|
455 (cons '(tpu-rectangular-p tpu-rectangle-string)
|
|
456 minor-mode-alist)))
|
|
457 (or (assq 'tpu-direction-string minor-mode-alist)
|
|
458 (setq minor-mode-alist
|
|
459 (cons '(tpu-direction-string tpu-direction-string)
|
|
460 minor-mode-alist))))))
|
|
461
|
|
462 (defun tpu-update-mode-line nil
|
|
463 "Make sure mode-line in the current buffer reflects all changes."
|
|
464 (setq tpu-mark-flag (if (tpu-mark) "M" " "))
|
|
465 (cond (tpu-emacs19-p (force-mode-line-update))
|
|
466 (t (set-buffer-modified-p (buffer-modified-p)) (sit-for 0))))
|
|
467
|
72
|
468 (cond (tpu-lucid-emacs19-p
|
|
469 (add-hook 'zmacs-deactivate-region-hook 'tpu-update-mode-line)
|
|
470 (add-hook 'zmacs-activate-region-hook 'tpu-update-mode-line))
|
|
471 (tpu-emacs19-p
|
70
|
472 (add-hook 'activate-mark-hook 'tpu-update-mode-line)
|
72
|
473 (add-hook 'deactivate-mark-hook 'tpu-update-mode-line)))
|
0
|
474
|
|
475
|
|
476 ;;;
|
|
477 ;;; Match Markers -
|
|
478 ;;;
|
|
479 ;;; Set in: Search
|
|
480 ;;;
|
|
481 ;;; Used in: Replace, Substitute, Store-Text, Cut/Remove,
|
|
482 ;;; Append, and Change-Case
|
|
483 ;;;
|
|
484 (defvar tpu-match-beginning-mark (make-marker))
|
|
485 (defvar tpu-match-end-mark (make-marker))
|
|
486
|
|
487 (defun tpu-set-match nil
|
|
488 "Set markers at match beginning and end."
|
|
489 ;; Add one to beginning mark so it stays with the first character of
|
|
490 ;; the string even if characters are added just before the string.
|
|
491 (setq tpu-match-beginning-mark (copy-marker (1+ (match-beginning 0))))
|
|
492 (setq tpu-match-end-mark (copy-marker (match-end 0))))
|
|
493
|
|
494 (defun tpu-unset-match nil
|
|
495 "Unset match beginning and end markers."
|
|
496 (set-marker tpu-match-beginning-mark nil)
|
|
497 (set-marker tpu-match-end-mark nil))
|
|
498
|
|
499 (defun tpu-match-beginning nil
|
|
500 "Returns the location of the last match beginning."
|
|
501 (1- (marker-position tpu-match-beginning-mark)))
|
|
502
|
|
503 (defun tpu-match-end nil
|
|
504 "Returns the location of the last match end."
|
|
505 (marker-position tpu-match-end-mark))
|
|
506
|
|
507 (defun tpu-check-match nil
|
|
508 "Returns t if point is between tpu-match markers.
|
|
509 Otherwise sets the tpu-match markers to nil and returns nil."
|
|
510 ;; make sure 1- marker is in this buffer
|
|
511 ;; 2- point is at or after beginning marker
|
|
512 ;; 3- point is before ending marker, or in the case of
|
|
513 ;; zero length regions (like bol, or eol) that the
|
|
514 ;; beginning, end, and point are equal.
|
|
515 (cond ((and
|
|
516 (equal (marker-buffer tpu-match-beginning-mark) (current-buffer))
|
|
517 (>= (point) (1- (marker-position tpu-match-beginning-mark)))
|
|
518 (or
|
|
519 (< (point) (marker-position tpu-match-end-mark))
|
|
520 (and (= (1- (marker-position tpu-match-beginning-mark))
|
|
521 (marker-position tpu-match-end-mark))
|
|
522 (= (marker-position tpu-match-end-mark) (point))))) t)
|
|
523 (t
|
|
524 (tpu-unset-match) nil)))
|
|
525
|
|
526 (defun tpu-show-match-markers nil
|
|
527 "Show the values of the match markers."
|
72
|
528 (interactive)
|
134
|
529 (setq zmacs-region-stays t)
|
0
|
530 (if (markerp tpu-match-beginning-mark)
|
|
531 (let ((beg (marker-position tpu-match-beginning-mark)))
|
|
532 (message "(%s, %s) in %s -- current %s in %s"
|
|
533 (if beg (1- beg) nil)
|
|
534 (marker-position tpu-match-end-mark)
|
|
535 (marker-buffer tpu-match-end-mark)
|
|
536 (point) (current-buffer)))))
|
|
537
|
|
538
|
|
539 ;;;
|
|
540 ;;; Utilities
|
|
541 ;;;
|
|
542 (defun tpu-caar (thingy) (car (car thingy)))
|
|
543 (defun tpu-cadr (thingy) (car (cdr thingy)))
|
|
544
|
|
545 (defun tpu-mark nil
|
|
546 "TPU-edt version of the mark function.
|
|
547 Return the appropriate value of the mark for the current
|
72
|
548 version of Emacs."
|
|
549 (cond (tpu-lucid-emacs19-p (mark (not zmacs-regions)))
|
|
550 (tpu-emacs19-p (and mark-active (mark (not transient-mark-mode))))
|
0
|
551 (t (mark))))
|
|
552
|
|
553 (defun tpu-set-mark (pos)
|
72
|
554 "TPU-edt verion of the `set-mark' function.
|
|
555 Sets the mark at POS and activates the region according to the
|
|
556 current version of Emacs."
|
0
|
557 (set-mark pos)
|
72
|
558 (and tpu-lucid-emacs19-p pos (zmacs-activate-region)))
|
0
|
559
|
|
560 (defun tpu-string-prompt (prompt history-symbol)
|
|
561 "Read a string with PROMPT."
|
|
562 (if tpu-emacs19-p
|
|
563 (read-from-minibuffer prompt nil nil nil history-symbol)
|
|
564 (read-string prompt)))
|
|
565
|
|
566 (defvar tpu-last-answer nil "Most recent response to tpu-y-or-n-p.")
|
|
567
|
|
568 (defun tpu-y-or-n-p (prompt &optional not-yes)
|
|
569 "Prompt for a y or n answer with positive default.
|
|
570 Optional second argument NOT-YES changes default to negative.
|
72
|
571 Like Emacs `y-or-n-p', but also accepts space as y and DEL as n."
|
4
|
572 (message "%s[%s]" prompt (if not-yes "n" "y"))
|
0
|
573 (let ((doit t))
|
|
574 (while doit
|
|
575 (setq doit nil)
|
|
576 (let ((ans (read-char)))
|
|
577 (cond ((or (= ans ?y) (= ans ?Y) (= ans ?\ ))
|
|
578 (setq tpu-last-answer t))
|
|
579 ((or (= ans ?n) (= ans ?N) (= ans ?\C-?))
|
|
580 (setq tpu-last-answer nil))
|
|
581 ((= ans ?\r) (setq tpu-last-answer (not not-yes)))
|
|
582 (t
|
|
583 (setq doit t) (beep)
|
4
|
584 (message "Please answer y or n. %s[%s]"
|
|
585 prompt (if not-yes "n" "y")))))))
|
0
|
586 tpu-last-answer)
|
|
587
|
|
588 (defun tpu-local-set-key (key func)
|
|
589 "Replace a key in the TPU-edt local key map.
|
|
590 Create the key map if necessary."
|
|
591 (cond ((not (keymapp tpu-buffer-local-map))
|
|
592 (setq tpu-buffer-local-map (if (current-local-map)
|
|
593 (copy-keymap (current-local-map))
|
|
594 (make-sparse-keymap)))
|
|
595 (use-local-map tpu-buffer-local-map)))
|
|
596 (local-set-key key func))
|
|
597
|
|
598 (defun tpu-current-line nil
|
|
599 "Return the vertical position of point in the selected window.
|
|
600 Top line is 0. Counts each text line only once, even if it wraps."
|
|
601 (+ (count-lines (window-start) (point)) (if (= (current-column) 0) 1 0) -1))
|
|
602
|
|
603
|
|
604 ;;;
|
|
605 ;;; Breadcrumbs
|
|
606 ;;;
|
|
607 (defvar tpu-breadcrumb-plist nil
|
|
608 "The set of user-defined markers (breadcrumbs), as a plist.")
|
|
609
|
|
610 (defun tpu-drop-breadcrumb (num)
|
|
611 "Drops a breadcrumb that can be returned to later with goto-breadcrumb."
|
72
|
612 (interactive "p")
|
134
|
613 (setq zmacs-region-stays t)
|
0
|
614 (put tpu-breadcrumb-plist num (list (current-buffer) (point)))
|
|
615 (message "Mark %d set." num))
|
|
616
|
|
617 (defun tpu-goto-breadcrumb (num)
|
|
618 "Returns to a breadcrumb set with drop-breadcrumb."
|
72
|
619 (interactive "p")
|
134
|
620 (setq zmacs-region-stays t)
|
0
|
621 (cond ((get tpu-breadcrumb-plist num)
|
|
622 (switch-to-buffer (car (get tpu-breadcrumb-plist num)))
|
|
623 (goto-char (tpu-cadr (get tpu-breadcrumb-plist num)))
|
|
624 (message "mark %d found." num))
|
|
625 (t
|
|
626 (message "mark %d not found." num))))
|
|
627
|
|
628
|
|
629 ;;;
|
|
630 ;;; Miscellaneous
|
|
631 ;;;
|
|
632 (defun tpu-change-case (num)
|
|
633 "Change the case of the character under the cursor or region.
|
|
634 Accepts a prefix argument of the number of characters to invert."
|
72
|
635 (interactive "p")
|
0
|
636 (cond ((tpu-mark)
|
|
637 (let ((beg (region-beginning)) (end (region-end)))
|
|
638 (while (> end beg)
|
|
639 (funcall (if (= (downcase (char-after beg)) (char-after beg))
|
|
640 'upcase-region 'downcase-region)
|
|
641 beg (1+ beg))
|
|
642 (setq beg (1+ beg)))
|
|
643 (tpu-unselect t)))
|
|
644 ((tpu-check-match)
|
|
645 (let ((beg (tpu-match-beginning)) (end (tpu-match-end)))
|
|
646 (while (> end beg)
|
|
647 (funcall (if (= (downcase (char-after beg)) (char-after beg))
|
|
648 'upcase-region 'downcase-region)
|
|
649 beg (1+ beg))
|
|
650 (setq beg (1+ beg)))
|
|
651 (tpu-unset-match)))
|
|
652 (t
|
|
653 (while (> num 0)
|
|
654 (funcall (if (= (downcase (following-char)) (following-char))
|
|
655 'upcase-region 'downcase-region)
|
|
656 (point) (1+ (point)))
|
|
657 (forward-char (if tpu-reverse -1 1))
|
|
658 (setq num (1- num))))))
|
|
659
|
|
660 (defun tpu-fill (num)
|
|
661 "Fill paragraph or marked region.
|
|
662 With argument, fill and justify."
|
72
|
663 (interactive "P")
|
0
|
664 (cond ((tpu-mark)
|
|
665 (fill-region (point) (tpu-mark) num)
|
|
666 (tpu-unselect t))
|
|
667 (t
|
|
668 (fill-paragraph num))))
|
|
669
|
|
670 (defun tpu-version nil
|
|
671 "Print the TPU-edt version number."
|
72
|
672 (interactive)
|
134
|
673 (setq zmacs-region-stays t)
|
0
|
674 (message
|
|
675 "TPU-edt version %s by Rob Riepel (riepel@networking.stanford.edu)"
|
|
676 tpu-version))
|
|
677
|
|
678 (defun tpu-reset-screen-size (height width)
|
|
679 "Sets the screen size."
|
72
|
680 (interactive "nnew screen height: \nnnew screen width: ")
|
134
|
681 (setq zmacs-region-stays t)
|
72
|
682 (set-screen-height height)
|
|
683 (set-screen-width width))
|
0
|
684
|
|
685 (defun tpu-toggle-newline-and-indent nil
|
|
686 "Toggle between 'newline and indent' and 'simple newline'."
|
72
|
687 (interactive)
|
134
|
688 (setq zmacs-region-stays t)
|
0
|
689 (cond (tpu-newline-and-indent-p
|
|
690 (setq tpu-newline-and-indent-string "")
|
|
691 (setq tpu-newline-and-indent-p nil)
|
|
692 (tpu-local-set-key "\C-m" 'newline))
|
|
693 (t
|
|
694 (setq tpu-newline-and-indent-string " AutoIndent")
|
|
695 (setq tpu-newline-and-indent-p t)
|
|
696 (tpu-local-set-key "\C-m" 'newline-and-indent)))
|
|
697 (tpu-update-mode-line)
|
|
698 (and (interactive-p)
|
|
699 (message "Carriage return inserts a newline%s"
|
|
700 (if tpu-newline-and-indent-p " and indents." "."))))
|
|
701
|
|
702 (defun tpu-spell-check nil
|
|
703 "Checks the spelling of the region, or of the entire buffer if no
|
|
704 region is selected."
|
72
|
705 (interactive)
|
0
|
706 (cond (tpu-have-ispell
|
|
707 (if (tpu-mark) (ispell-region (tpu-mark) (point)) (ispell-buffer)))
|
|
708 (t
|
|
709 (if (tpu-mark) (spell-region (tpu-mark) (point)) (spell-buffer))))
|
|
710 (if (tpu-mark) (tpu-unselect t)))
|
|
711
|
|
712 (defun tpu-toggle-overwrite-mode nil
|
|
713 "Switches in and out of overwrite mode"
|
72
|
714 (interactive)
|
134
|
715 (setq zmacs-region-stays t)
|
0
|
716 (cond (overwrite-mode
|
|
717 (tpu-local-set-key "\177" tpu-saved-delete-func)
|
|
718 (overwrite-mode 0))
|
|
719 (t
|
|
720 (setq tpu-saved-delete-func (local-key-binding "\177"))
|
|
721 (tpu-local-set-key "\177" 'picture-backward-clear-column)
|
|
722 (overwrite-mode 1))))
|
|
723
|
|
724 (defun tpu-special-insert (num)
|
|
725 "Insert a character or control code according to
|
|
726 its ASCII decimal value."
|
72
|
727 (interactive "P")
|
134
|
728 (setq zmacs-region-stays t)
|
0
|
729 (if overwrite-mode (delete-char 1))
|
|
730 (insert (if num num 0)))
|
|
731
|
|
732 (defun tpu-quoted-insert (num)
|
|
733 "Read next input character and insert it.
|
|
734 This is useful for inserting control characters."
|
72
|
735 (interactive "*p")
|
134
|
736 (setq zmacs-region-stays t)
|
0
|
737 (let ((char (read-char)) )
|
|
738 (if overwrite-mode (delete-char num))
|
|
739 (insert-char char num)))
|
|
740
|
|
741
|
|
742 ;;;
|
|
743 ;;; TPU line-mode commands
|
|
744 ;;;
|
|
745 (defun tpu-include (file)
|
|
746 "TPU-like include file"
|
72
|
747 (interactive "fInclude file: ")
|
134
|
748 (setq zmacs-region-stays t)
|
0
|
749 (save-excursion
|
|
750 (insert-file file)
|
|
751 (message "")))
|
|
752
|
|
753 (defun tpu-get (file)
|
|
754 "TPU-like get file"
|
72
|
755 (interactive "FFile to get: ")
|
134
|
756 (setq zmacs-region-stays t)
|
0
|
757 (find-file file))
|
|
758
|
|
759 (defun tpu-what-line nil
|
|
760 "Tells what line the point is on,
|
|
761 and the total number of lines in the buffer."
|
72
|
762 (interactive)
|
134
|
763 (setq zmacs-region-stays t)
|
0
|
764 (if (eobp)
|
|
765 (message "You are at the End of Buffer. The last line is %d."
|
|
766 (count-lines 1 (point-max)))
|
|
767 (message "Line %d of %d"
|
|
768 (count-lines 1 (1+ (point)))
|
|
769 (count-lines 1 (point-max)))))
|
|
770
|
|
771 (defun tpu-exit nil
|
|
772 "Exit the way TPU does, save current buffer and ask about others."
|
72
|
773 (interactive)
|
0
|
774 (if (not (eq (recursion-depth) 0))
|
|
775 (exit-recursive-edit)
|
|
776 (progn (save-buffer) (save-buffers-kill-emacs))))
|
|
777
|
|
778 (defun tpu-quit nil
|
|
779 "Quit the way TPU does, ask to make sure changes should be abandoned."
|
72
|
780 (interactive)
|
0
|
781 (let ((list (buffer-list))
|
|
782 (working t))
|
|
783 (while (and list working)
|
|
784 (let ((buffer (car list)))
|
|
785 (if (and (buffer-file-name buffer) (buffer-modified-p buffer))
|
|
786 (if (tpu-y-or-n-p
|
|
787 "Modifications will not be saved, continue quitting? ")
|
|
788 (kill-emacs t) (setq working nil)))
|
|
789 (setq list (cdr list))))
|
|
790 (if working (kill-emacs t))))
|
|
791
|
|
792
|
|
793 ;;;
|
|
794 ;;; Command and Function Aliases
|
|
795 ;;;
|
|
796 ;;;###autoload
|
|
797 (fset 'tpu-edt-mode 'tpu-edt-on)
|
|
798 (fset 'TPU-EDT-MODE 'tpu-edt-on)
|
|
799
|
|
800 ;;;###autoload
|
|
801 (fset 'tpu-edt 'tpu-edt-on)
|
|
802 (fset 'TPU-EDT 'tpu-edt-on)
|
|
803
|
|
804 (fset 'exit 'tpu-exit)
|
|
805 (fset 'EXIT 'tpu-exit)
|
|
806
|
|
807 (fset 'Get 'tpu-get)
|
|
808 (fset 'GET 'tpu-get)
|
|
809
|
|
810 (fset 'include 'tpu-include)
|
|
811 (fset 'INCLUDE 'tpu-include)
|
|
812
|
|
813 (fset 'quit 'tpu-quit)
|
|
814 (fset 'QUIT 'tpu-quit)
|
|
815
|
|
816 (fset 'spell 'tpu-spell-check)
|
|
817 (fset 'SPELL 'tpu-spell-check)
|
|
818
|
|
819 (fset 'what\ line 'tpu-what-line)
|
|
820 (fset 'WHAT\ LINE 'tpu-what-line)
|
|
821
|
|
822 (fset 'replace 'tpu-lm-replace)
|
|
823 (fset 'REPLACE 'tpu-lm-replace)
|
|
824
|
|
825 (fset 'help 'tpu-help)
|
|
826 (fset 'HELP 'tpu-help)
|
|
827
|
|
828 (fset 'set\ cursor\ free 'tpu-set-cursor-free)
|
|
829 (fset 'SET\ CURSOR\ FREE 'tpu-set-cursor-free)
|
|
830
|
|
831 (fset 'set\ cursor\ bound 'tpu-set-cursor-bound)
|
|
832 (fset 'SET\ CURSOR\ BOUND 'tpu-set-cursor-bound)
|
|
833
|
|
834 (fset 'set\ scroll\ margins 'tpu-set-scroll-margins)
|
|
835 (fset 'SET\ SCROLL\ MARGINS 'tpu-set-scroll-margins)
|
|
836
|
|
837
|
|
838 ;; Around emacs version 18.57, function line-move was renamed to
|
|
839 ;; next-line-internal. If we're running under an older emacs,
|
|
840 ;; make next-line-internal equivalent to line-move.
|
|
841
|
|
842 (if (not (fboundp 'next-line-internal)) (fset 'next-line-internal 'line-move))
|
|
843
|
|
844
|
|
845 ;;;
|
|
846 ;;; Help
|
|
847 ;;;
|
|
848 (defconst tpu-help-keypad-map "\f
|
|
849 _______________________ _______________________________
|
|
850 | HELP | Do | | | | | |
|
|
851 |KeyDefs| | | | | | |
|
|
852 |_______|_______________| |_______|_______|_______|_______|
|
|
853 _______________________ _______________________________
|
|
854 | Find |Insert |Remove | | Gold | HELP |FndNxt | Del L |
|
|
855 | | |Sto Tex| | key |E-Help | Find |Undel L|
|
|
856 |_______|_______|_______| |_______|_______|_______|_______|
|
|
857 |Select |Pre Scr|Nex Scr| | Page | Sect |Append | Del W |
|
|
858 | Reset |Pre Win|Nex Win| | Do | Fill |Replace|Undel W|
|
|
859 |_______|_______|_______| |_______|_______|_______|_______|
|
|
860 |Move up| |Forward|Reverse|Remove | Del C |
|
|
861 | Top | |Bottom | Top |Insert |Undel C|
|
|
862 _______|_______|_______ |_______|_______|_______|_______|
|
|
863 |Mov Lef|Mov Dow|Mov Rig| | Word | EOL | Char | |
|
|
864 |StaOfLi|Bottom |EndOfLi| |ChngCas|Del EOL|SpecIns| Enter |
|
|
865 |_______|_______|_______| |_______|_______|_______| |
|
|
866 | Line |Select | Subs |
|
|
867 | Open Line | Reset | |
|
|
868 |_______________|_______|_______|
|
|
869 ")
|
|
870
|
|
871 (defconst tpu-help-text "
|
|
872 \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\f
|
|
873
|
|
874 Control Characters
|
|
875
|
|
876 ^A toggle insert and overwrite
|
|
877 ^B recall
|
|
878 ^E end of line
|
|
879
|
|
880 ^G Cancel current operation
|
|
881 ^H beginning of line
|
|
882 ^J delete previous word
|
|
883
|
|
884 ^K learn
|
|
885 ^L insert page break
|
|
886 ^R remember (during learn), re-center
|
|
887
|
|
888 ^U delete to beginning of line
|
|
889 ^V quote
|
|
890 ^W refresh
|
|
891
|
|
892 ^Z exit
|
|
893 ^X^X exchange point and mark - useful for checking region boundaries
|
|
894
|
|
895 \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\f
|
|
896 Gold-<key> Functions
|
|
897
|
|
898 B Next Buffer - display the next buffer (all buffers)
|
|
899 C Recall - edit and possibly repeat previous commands
|
|
900 E Exit - save current buffer and ask about others
|
72
|
901 G Get - load a file into a new edit buffer
|
70
|
902
|
0
|
903 I Include - include a file in this buffer
|
|
904 K Kill Buffer - abandon edits and delete buffer
|
|
905 M Buffer Menu - display a list of all buffers
|
|
906 N Next File Buffer - display next buffer containing a file
|
72
|
907
|
70
|
908 O Occur - show following lines containing REGEXP
|
0
|
909 Q Quit - exit without saving anything
|
|
910 R Toggle rectangular mode for remove and insert
|
|
911 S Search and substitute - line mode REPLACE command
|
|
912
|
72
|
913 ^T Toggle control key bindings between TPU and emacs
|
0
|
914 U Undo - undo the last edit
|
|
915 W Write - save current buffer
|
|
916 X Exit - save all modified buffers and exit
|
|
917
|
|
918 \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\f
|
|
919
|
72
|
920 More extensive documentation on TPU-edt can be found in the `Commentary'
|
|
921 section of tpu-edt.el. This section can be accessed through the standard
|
|
922 Emacs help facility using the `p' option. Once you exit TPU-edt Help, one
|
|
923 of the following key sequences is sure to get you there.
|
|
924
|
|
925 ^h p if you're not yet using TPU-edt
|
|
926 Gold-PF2 p if you're using TPU-edt
|
|
927
|
|
928 Alternatively, fire up Emacs help from the command prompt, with
|
|
929
|
|
930 M-x help-for-help <CR> p <CR>
|
|
931
|
|
932 Where `M-x' might be any of `Gold-KP7', 'Do', or 'ESC-x'.
|
|
933
|
|
934 When you successfully invoke this part of the Emacs help facility, you
|
|
935 will see a buffer named `*Finder*' listing a number of topics. Look for
|
|
936 tpu-edt under `emulations'.
|
|
937
|
|
938 \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\f
|
|
939
|
0
|
940 *** No more help, use P to view previous screen")
|
|
941
|
|
942 (defvar tpu-help-enter (format "%s" "\eOM")) ; tpu-help enter key symbol
|
|
943 (defvar tpu-help-return (format "%s" "\r")) ; tpu-help enter key symbol
|
|
944 (defvar tpu-help-N "N") ; tpu-help "N" symbol
|
|
945 (defvar tpu-help-n "n") ; tpu-help "n" symbol
|
|
946 (defvar tpu-help-P "P") ; tpu-help "P" symbol
|
|
947 (defvar tpu-help-p "p") ; tpu-help "p" symbol
|
|
948
|
|
949 (defun tpu-help nil
|
|
950 "Display TPU-edt help."
|
72
|
951 (interactive)
|
134
|
952 (setq zmacs-region-stays t)
|
0
|
953 ;; Save current window configuration
|
|
954 (save-window-excursion
|
|
955 ;; Create and fill help buffer if necessary
|
|
956 (if (not (get-buffer "*TPU-edt Help*"))
|
|
957 (progn (generate-new-buffer "*TPU-edt Help*")
|
|
958 (switch-to-buffer "*TPU-edt Help*")
|
|
959 (insert tpu-help-keypad-map)
|
|
960 (insert tpu-help-text)
|
|
961 (setq buffer-read-only t)))
|
|
962
|
|
963 ;; Display the help buffer
|
|
964 (switch-to-buffer "*TPU-edt Help*")
|
|
965 (delete-other-windows)
|
|
966 (tpu-move-to-beginning)
|
|
967 (forward-line 1)
|
|
968 (tpu-line-to-top-of-window)
|
|
969
|
|
970 ;; Prompt for keys to describe, based on screen state (split/not split)
|
|
971 (let ((key nil) (fkey nil) (split nil))
|
|
972 (while (not (equal tpu-help-return fkey))
|
|
973 (if split
|
|
974 (setq key
|
|
975 (read-key-sequence
|
72
|
976 "Press the key you want help on (RET=exit, ENTER=redisplay, N=next, P=prev): "))
|
0
|
977 (setq key
|
|
978 (read-key-sequence
|
72
|
979 "Press the key you want help on (RET to exit, N next screen, P prev screen): ")))
|
0
|
980
|
|
981 ;; Process the read key
|
|
982 ;;
|
|
983 ;; ENTER - Display just the help window
|
|
984 ;; N or n - Next help or describe-key screen
|
|
985 ;; P or p - Previous help or describe-key screen
|
|
986 ;; RETURN - Exit from TPU-help
|
|
987 ;; default - describe the key
|
|
988 ;;
|
|
989 (setq fkey (format "%s" key))
|
|
990 (cond ((equal tpu-help-enter fkey)
|
|
991 (setq split nil)
|
|
992 (delete-other-windows))
|
|
993 ((or (equal tpu-help-N fkey) (equal tpu-help-n fkey))
|
|
994 (cond (split
|
|
995 (condition-case nil
|
|
996 (scroll-other-window 8)
|
|
997 (error nil)))
|
|
998 (t
|
|
999 (forward-page)
|
|
1000 (forward-line 1)
|
|
1001 (tpu-line-to-top-of-window))))
|
|
1002 ((or (equal tpu-help-P fkey) (equal tpu-help-p fkey))
|
|
1003 (cond (split
|
|
1004 (condition-case nil
|
|
1005 (scroll-other-window -8)
|
|
1006 (error nil)))
|
|
1007 (t
|
72
|
1008 (backward-page)
|
0
|
1009 (forward-line 1)
|
|
1010 (tpu-line-to-top-of-window))))
|
|
1011 ((not (equal tpu-help-return fkey))
|
|
1012 (setq split t)
|
|
1013 (describe-key key)
|
|
1014 ;; If the key is undefined, leave the
|
|
1015 ;; message in the mini-buffer for 3 seconds
|
|
1016 (if (not (key-binding key)) (sit-for 3))))))))
|
|
1017
|
|
1018
|
|
1019 ;;;
|
|
1020 ;;; Auto-insert
|
|
1021 ;;;
|
|
1022 (defun tpu-insert-escape nil
|
|
1023 "Inserts an escape character, and so becomes the escape-key alias."
|
72
|
1024 (interactive)
|
134
|
1025 (setq zmacs-region-stays t)
|
0
|
1026 (insert "\e"))
|
|
1027
|
|
1028 (defun tpu-insert-formfeed nil
|
|
1029 "Inserts a formfeed character."
|
72
|
1030 (interactive)
|
134
|
1031 (setq zmacs-region-stays t)
|
0
|
1032 (insert "\C-L"))
|
|
1033
|
|
1034
|
|
1035 ;;;
|
|
1036 ;;; Define key
|
|
1037 ;;;
|
|
1038 (defvar tpu-saved-control-r nil "Saved value of Control-r.")
|
|
1039
|
|
1040 (defun tpu-end-define-macro-key (key)
|
|
1041 "Ends the current macro definition"
|
72
|
1042 (interactive "kPress the key you want to use to do what was just learned: ")
|
134
|
1043 (setq zmacs-region-stays t)
|
0
|
1044 (end-kbd-macro nil)
|
|
1045 (global-set-key key last-kbd-macro)
|
|
1046 (global-set-key "\C-r" tpu-saved-control-r))
|
|
1047
|
|
1048 (defun tpu-define-macro-key nil
|
|
1049 "Bind a set of keystrokes to a single key, or key combination."
|
72
|
1050 (interactive)
|
134
|
1051 (setq zmacs-region-stays t)
|
0
|
1052 (setq tpu-saved-control-r (global-key-binding "\C-r"))
|
|
1053 (global-set-key "\C-r" 'tpu-end-define-macro-key)
|
|
1054 (start-kbd-macro nil))
|
|
1055
|
|
1056
|
|
1057 ;;;
|
|
1058 ;;; Buffers and Windows
|
|
1059 ;;;
|
|
1060 (defun tpu-kill-buffer nil
|
|
1061 "Kills the current buffer. If tpu-kill-buffers-silently is non-nil,
|
|
1062 kills modified buffers without asking."
|
|
1063 (interactive)
|
|
1064 (if tpu-kill-buffers-silently (set-buffer-modified-p nil))
|
|
1065 (kill-buffer (current-buffer)))
|
|
1066
|
|
1067 (defun tpu-save-all-buffers-kill-emacs nil
|
|
1068 "Save all buffers and exit emacs."
|
|
1069 (interactive)
|
72
|
1070 (let ((delete-old-versions t))
|
|
1071 (save-buffers-kill-emacs t)))
|
0
|
1072
|
|
1073 (defun tpu-write-current-buffers nil
|
|
1074 "Save all modified buffers without exiting."
|
72
|
1075 (interactive)
|
134
|
1076 (setq zmacs-region-stays t)
|
0
|
1077 (save-some-buffers t))
|
|
1078
|
|
1079 (defun tpu-next-buffer nil
|
|
1080 "Go to next buffer in ring."
|
|
1081 (interactive)
|
|
1082 (switch-to-buffer (car (reverse (buffer-list)))))
|
|
1083
|
|
1084 (defun tpu-next-file-buffer nil
|
72
|
1085 "Go to next buffer in ring that is visiting a file or directory."
|
0
|
1086 (interactive)
|
72
|
1087 (let ((list (tpu-make-file-buffer-list (buffer-list))))
|
|
1088 (setq list (delq (current-buffer) list))
|
|
1089 (if (not list) (error "No other buffers."))
|
|
1090 (switch-to-buffer (car (reverse list)))))
|
|
1091
|
|
1092 (defun tpu-make-file-buffer-list (buffer-list)
|
|
1093 "Returns names from BUFFER-LIST excluding those beginning with a space or star."
|
|
1094 (delq nil (mapcar '(lambda (b)
|
|
1095 (if (or (= (aref (buffer-name b) 0) ? )
|
|
1096 (= (aref (buffer-name b) 0) ?*)) nil b))
|
|
1097 buffer-list)))
|
0
|
1098
|
|
1099 (defun tpu-next-window nil
|
|
1100 "Move to the next window."
|
|
1101 (interactive)
|
134
|
1102 (setq zmacs-region-stays t)
|
0
|
1103 (if (one-window-p) (message "There is only one window on screen.")
|
|
1104 (other-window 1)))
|
|
1105
|
|
1106 (defun tpu-previous-window nil
|
|
1107 "Move to the previous window."
|
|
1108 (interactive)
|
134
|
1109 (setq zmacs-region-stays t)
|
0
|
1110 (if (one-window-p) (message "There is only one window on screen.")
|
|
1111 (select-window (previous-window))))
|
|
1112
|
|
1113
|
|
1114 ;;;
|
|
1115 ;;; Search
|
|
1116 ;;;
|
|
1117 (defun tpu-toggle-regexp nil
|
|
1118 "Switches in and out of regular expression search and replace mode."
|
72
|
1119 (interactive)
|
134
|
1120 (setq zmacs-region-stays t)
|
0
|
1121 (setq tpu-regexp-p (not tpu-regexp-p))
|
|
1122 (tpu-set-search)
|
|
1123 (and (interactive-p)
|
|
1124 (message "Regular expression search and substitute %sabled."
|
|
1125 (if tpu-regexp-p "en" "dis"))))
|
|
1126
|
|
1127 (defun tpu-regexp-prompt (prompt)
|
|
1128 "Read a string, adding 'RE' to the prompt if tpu-regexp-p is set."
|
|
1129 (let ((re-prompt (concat (if tpu-regexp-p "RE ") prompt)))
|
|
1130 (if tpu-emacs19-p
|
|
1131 (read-from-minibuffer re-prompt nil nil nil 'tpu-regexp-prompt-hist)
|
|
1132 (read-string re-prompt))))
|
|
1133
|
|
1134 (defun tpu-search nil
|
|
1135 "Search for a string or regular expression.
|
|
1136 The search is performed in the current direction."
|
72
|
1137 (interactive)
|
134
|
1138 (setq zmacs-region-stays t)
|
0
|
1139 (tpu-set-search)
|
|
1140 (tpu-search-internal ""))
|
|
1141
|
|
1142 (defun tpu-search-forward nil
|
|
1143 "Search for a string or regular expression.
|
|
1144 The search is begins in the forward direction."
|
72
|
1145 (interactive)
|
134
|
1146 (setq zmacs-region-stays t)
|
0
|
1147 (setq tpu-searching-forward t)
|
|
1148 (tpu-set-search t)
|
|
1149 (tpu-search-internal ""))
|
|
1150
|
|
1151 (defun tpu-search-reverse nil
|
|
1152 "Search for a string or regular expression.
|
|
1153 The search is begins in the reverse direction."
|
72
|
1154 (interactive)
|
134
|
1155 (setq zmacs-region-stays t)
|
0
|
1156 (setq tpu-searching-forward nil)
|
|
1157 (tpu-set-search t)
|
|
1158 (tpu-search-internal ""))
|
|
1159
|
|
1160 (defun tpu-search-again nil
|
|
1161 "Search for the same string or regular expression as last time.
|
|
1162 The search is performed in the current direction."
|
72
|
1163 (interactive)
|
134
|
1164 (setq zmacs-region-stays t)
|
0
|
1165 (tpu-search-internal tpu-search-last-string))
|
|
1166
|
|
1167 ;; tpu-set-search defines the search functions used by the TPU-edt internal
|
|
1168 ;; search function. It should be called whenever the direction changes, or
|
|
1169 ;; the regular expression mode is turned on or off. It can also be called
|
|
1170 ;; to ensure that the next search will be in the current direction. It is
|
|
1171 ;; called from:
|
|
1172
|
72
|
1173 ;; tpu-advance tpu-backup
|
|
1174 ;; tpu-toggle-regexp tpu-toggle-search-direction (t)
|
|
1175 ;; tpu-search tpu-lm-replace
|
|
1176 ;; tpu-search-forward (t) tpu-search-reverse (t)
|
|
1177 ;; tpu-search-forward-exit (t) tpu-search-backward-exit (t)
|
0
|
1178
|
|
1179 (defun tpu-set-search (&optional arg)
|
|
1180 "Set the search functions and set the search direction to the current
|
|
1181 direction. If an argument is specified, don't set the search direction."
|
|
1182 (if (not arg) (setq tpu-searching-forward (if tpu-advance t nil)))
|
|
1183 (cond (tpu-searching-forward
|
|
1184 (cond (tpu-regexp-p
|
|
1185 (fset 'tpu-emacs-search 're-search-forward)
|
|
1186 (fset 'tpu-emacs-rev-search 're-search-backward))
|
|
1187 (t
|
|
1188 (fset 'tpu-emacs-search 'search-forward)
|
|
1189 (fset 'tpu-emacs-rev-search 'search-backward))))
|
|
1190 (t
|
|
1191 (cond (tpu-regexp-p
|
|
1192 (fset 'tpu-emacs-search 're-search-backward)
|
|
1193 (fset 'tpu-emacs-rev-search 're-search-forward))
|
|
1194 (t
|
|
1195 (fset 'tpu-emacs-search 'search-backward)
|
|
1196 (fset 'tpu-emacs-rev-search 'search-forward))))))
|
|
1197
|
|
1198 (defun tpu-search-internal (pat &optional quiet)
|
|
1199 "Search for a string or regular expression."
|
|
1200 (setq tpu-search-last-string
|
|
1201 (if (not (string= "" pat)) pat (tpu-regexp-prompt "Search: ")))
|
|
1202
|
|
1203 (tpu-unset-match)
|
|
1204 (tpu-adjust-search)
|
|
1205
|
72
|
1206 (let ((case-fold-search
|
|
1207 (and case-fold-search (tpu-check-search-case tpu-search-last-string))))
|
0
|
1208
|
72
|
1209 (cond ((tpu-emacs-search tpu-search-last-string nil t)
|
|
1210 (tpu-set-match) (goto-char (tpu-match-beginning)))
|
0
|
1211
|
72
|
1212 (t
|
|
1213 (tpu-adjust-search t)
|
|
1214 (let ((found nil) (pos nil))
|
|
1215 (save-excursion
|
|
1216 (let ((tpu-searching-forward (not tpu-searching-forward)))
|
|
1217 (tpu-adjust-search)
|
|
1218 (setq found (tpu-emacs-rev-search tpu-search-last-string nil t))
|
|
1219 (setq pos (match-beginning 0))))
|
0
|
1220
|
72
|
1221 (cond
|
|
1222 (found
|
|
1223 (cond ((tpu-y-or-n-p
|
|
1224 (format "Found in %s direction. Go there? "
|
|
1225 (if tpu-searching-forward "reverse" "forward")))
|
|
1226 (goto-char pos) (tpu-set-match)
|
|
1227 (tpu-toggle-search-direction))))
|
|
1228
|
|
1229 (t
|
|
1230 (if (not quiet)
|
|
1231 (message
|
|
1232 "%sSearch failed: \"%s\""
|
|
1233 (if tpu-regexp-p "RE " "") tpu-search-last-string)))))))))
|
0
|
1234
|
|
1235 (fset 'tpu-search-internal-core (symbol-function 'tpu-search-internal))
|
|
1236
|
72
|
1237 (defun tpu-check-search-case (string)
|
|
1238 "Returns t if string contains upper case."
|
|
1239 ;; if using regexp, eliminate upper case forms (\B \W \S.)
|
|
1240 (if tpu-regexp-p
|
|
1241 (let ((pat (copy-sequence string)) (case-fold-search nil) (pos 0))
|
|
1242 (while (setq pos (string-match "\\\\\\\\" pat)) (aset pat (+ 1 pos) ?.))
|
|
1243 (while (setq pos (string-match "\\\\B" pat)) (aset pat (+ 1 pos) ?.))
|
|
1244 (while (setq pos (string-match "\\\\W" pat)) (aset pat (+ 1 pos) ?.))
|
|
1245 (while (setq pos (string-match "\\\\S." pat))
|
|
1246 (aset pat (+ 1 pos) ?.) (aset pat (+ 2 pos) ?.))
|
|
1247 (string-equal pat (downcase pat)))
|
|
1248 (string-equal string (downcase string))))
|
|
1249
|
0
|
1250 (defun tpu-adjust-search (&optional arg)
|
|
1251 "For forward searches, move forward a character before searching,
|
|
1252 and backward a character after a failed search. Arg means end of search."
|
|
1253 (if tpu-searching-forward
|
|
1254 (cond (arg (if (not (bobp)) (forward-char -1)))
|
|
1255 (t (if (not (eobp)) (forward-char 1))))))
|
|
1256
|
|
1257 (defun tpu-toggle-search-direction nil
|
|
1258 "Toggle the TPU-edt search direction.
|
|
1259 Used for reversing a search in progress."
|
72
|
1260 (interactive)
|
134
|
1261 (setq zmacs-region-stays t)
|
0
|
1262 (setq tpu-searching-forward (not tpu-searching-forward))
|
|
1263 (tpu-set-search t)
|
|
1264 (and (interactive-p)
|
|
1265 (message "Searching %sward."
|
|
1266 (if tpu-searching-forward "for" "back"))))
|
|
1267
|
72
|
1268 (defun tpu-search-forward-exit nil
|
|
1269 "Set search direction forward and exit minibuffer."
|
|
1270 (interactive)
|
134
|
1271 (setq zmacs-region-stays t)
|
72
|
1272 (setq tpu-searching-forward t)
|
|
1273 (tpu-set-search t)
|
|
1274 (exit-minibuffer))
|
|
1275
|
|
1276 (defun tpu-search-backward-exit nil
|
|
1277 "Set search direction backward and exit minibuffer."
|
|
1278 (interactive)
|
134
|
1279 (setq zmacs-region-stays t)
|
72
|
1280 (setq tpu-searching-forward nil)
|
|
1281 (tpu-set-search t)
|
|
1282 (exit-minibuffer))
|
|
1283
|
0
|
1284
|
|
1285 ;;;
|
|
1286 ;;; Select / Unselect
|
|
1287 ;;;
|
|
1288 (defun tpu-select (&optional quiet)
|
|
1289 "Sets the mark to define one end of a region."
|
72
|
1290 (interactive "P")
|
0
|
1291 (cond ((tpu-mark)
|
|
1292 (tpu-unselect quiet))
|
|
1293 (t
|
|
1294 (tpu-set-mark (point))
|
|
1295 (tpu-update-mode-line)
|
|
1296 (if (not quiet) (message "Move the text cursor to select text.")))))
|
|
1297
|
|
1298 (defun tpu-unselect (&optional quiet)
|
|
1299 "Removes the mark to unselect the current region."
|
|
1300 (interactive "P")
|
|
1301 (setq mark-ring nil)
|
|
1302 (tpu-set-mark nil)
|
|
1303 (tpu-update-mode-line)
|
|
1304 (if (not quiet) (message "Selection canceled.")))
|
|
1305
|
|
1306
|
|
1307 ;;;
|
|
1308 ;;; Delete / Cut
|
|
1309 ;;;
|
|
1310 (defun tpu-toggle-rectangle nil
|
|
1311 "Toggle rectangular mode for remove and insert."
|
72
|
1312 (interactive)
|
134
|
1313 (setq zmacs-region-stays t)
|
0
|
1314 (setq tpu-rectangular-p (not tpu-rectangular-p))
|
|
1315 (setq tpu-rectangle-string (if tpu-rectangular-p " Rect" ""))
|
|
1316 (tpu-update-mode-line)
|
|
1317 (and (interactive-p)
|
|
1318 (message "Rectangular cut and paste %sabled."
|
|
1319 (if tpu-rectangular-p "en" "dis"))))
|
|
1320
|
|
1321 (defun tpu-arrange-rectangle nil
|
|
1322 "Adjust point and mark to mark upper left and lower right
|
|
1323 corners of a rectangle."
|
|
1324 (let ((mc (current-column))
|
|
1325 (pc (progn (exchange-point-and-mark) (current-column))))
|
|
1326
|
72
|
1327 (cond ((> (point) (tpu-mark)) ; point on lower line
|
0
|
1328 (cond ((> pc mc) ; point @ lower-right
|
|
1329 (exchange-point-and-mark)) ; point -> upper-left
|
|
1330
|
|
1331 (t ; point @ lower-left
|
|
1332 (move-to-column-force mc) ; point -> lower-right
|
|
1333 (exchange-point-and-mark) ; point -> upper-right
|
|
1334 (move-to-column-force pc)))) ; point -> upper-left
|
|
1335
|
|
1336 (t ; point on upper line
|
|
1337 (cond ((> pc mc) ; point @ upper-right
|
|
1338 (move-to-column-force mc) ; point -> upper-left
|
|
1339 (exchange-point-and-mark) ; point -> lower-left
|
|
1340 (move-to-column-force pc) ; point -> lower-right
|
|
1341 (exchange-point-and-mark))))))) ; point -> upper-left
|
|
1342
|
|
1343 (defun tpu-cut-text nil
|
|
1344 "Delete the selected region.
|
|
1345 The text is saved for the tpu-paste command."
|
|
1346 (interactive)
|
|
1347 (cond ((tpu-mark)
|
|
1348 (cond (tpu-rectangular-p
|
|
1349 (tpu-arrange-rectangle)
|
|
1350 (picture-clear-rectangle (point) (tpu-mark) (not overwrite-mode))
|
|
1351 (tpu-unselect t))
|
|
1352 (t
|
|
1353 (setq tpu-last-deleted-region
|
|
1354 (buffer-substring (tpu-mark) (point)))
|
|
1355 (delete-region (tpu-mark) (point))
|
|
1356 (tpu-unselect t))))
|
|
1357 ((tpu-check-match)
|
|
1358 (let ((beg (tpu-match-beginning)) (end (tpu-match-end)))
|
|
1359 (setq tpu-last-deleted-region (buffer-substring beg end))
|
|
1360 (delete-region beg end)
|
|
1361 (tpu-unset-match)))
|
|
1362 (t
|
|
1363 (error "No selection active."))))
|
|
1364
|
|
1365 (defun tpu-store-text nil
|
|
1366 "Copy the selected region to the cut buffer without deleting it.
|
|
1367 The text is saved for the tpu-paste command."
|
|
1368 (interactive)
|
134
|
1369 (setq zmacs-region-stays t)
|
0
|
1370 (cond ((tpu-mark)
|
|
1371 (cond (tpu-rectangular-p
|
|
1372 (save-excursion
|
|
1373 (tpu-arrange-rectangle)
|
|
1374 (setq picture-killed-rectangle
|
|
1375 (extract-rectangle (point) (tpu-mark))))
|
|
1376 (tpu-unselect t))
|
|
1377 (t
|
|
1378 (setq tpu-last-deleted-region
|
|
1379 (buffer-substring (tpu-mark) (point)))
|
|
1380 (tpu-unselect t))))
|
|
1381 ((tpu-check-match)
|
|
1382 (setq tpu-last-deleted-region
|
|
1383 (buffer-substring (tpu-match-beginning) (tpu-match-end)))
|
|
1384 (tpu-unset-match))
|
|
1385 (t
|
|
1386 (error "No selection active."))))
|
|
1387
|
|
1388 (defun tpu-cut (arg)
|
|
1389 "Copy selected region to the cut buffer. In the absence of an
|
|
1390 argument, delete the selected region too."
|
|
1391 (interactive "P")
|
|
1392 (if arg (tpu-store-text) (tpu-cut-text)))
|
|
1393
|
|
1394 (defun tpu-append-region (arg)
|
|
1395 "Append selected region to the tpu-cut buffer. In the absence of an
|
|
1396 argument, delete the selected region too."
|
72
|
1397 (interactive "P")
|
0
|
1398 (cond ((tpu-mark)
|
|
1399 (let ((beg (region-beginning)) (end (region-end)))
|
|
1400 (setq tpu-last-deleted-region
|
|
1401 (concat tpu-last-deleted-region
|
|
1402 (buffer-substring beg end)))
|
|
1403 (if (not arg) (delete-region beg end))
|
|
1404 (tpu-unselect t)))
|
|
1405 ((tpu-check-match)
|
|
1406 (let ((beg (tpu-match-beginning)) (end (tpu-match-end)))
|
|
1407 (setq tpu-last-deleted-region
|
|
1408 (concat tpu-last-deleted-region
|
|
1409 (buffer-substring beg end)))
|
|
1410 (if (not arg) (delete-region beg end))
|
|
1411 (tpu-unset-match)))
|
|
1412 (t
|
|
1413 (error "No selection active."))))
|
|
1414
|
|
1415 (defun tpu-delete-current-line (num)
|
|
1416 "Delete one or specified number of lines after point.
|
|
1417 This includes the newline character at the end of each line.
|
|
1418 They are saved for the TPU-edt undelete-lines command."
|
72
|
1419 (interactive "p")
|
134
|
1420 (setq zmacs-region-stays t)
|
0
|
1421 (let ((beg (point)))
|
|
1422 (forward-line num)
|
|
1423 (if (not (eq (preceding-char) ?\n))
|
|
1424 (insert "\n"))
|
|
1425 (setq tpu-last-deleted-lines
|
|
1426 (buffer-substring beg (point)))
|
|
1427 (delete-region beg (point))))
|
|
1428
|
|
1429 (defun tpu-delete-to-eol (num)
|
|
1430 "Delete text up to end of line.
|
|
1431 With argument, delete up to to Nth line-end past point.
|
|
1432 They are saved for the TPU-edt undelete-lines command."
|
72
|
1433 (interactive "p")
|
134
|
1434 (setq zmacs-region-stays t)
|
0
|
1435 (let ((beg (point)))
|
|
1436 (forward-char 1)
|
|
1437 (end-of-line num)
|
|
1438 (setq tpu-last-deleted-lines
|
|
1439 (buffer-substring beg (point)))
|
|
1440 (delete-region beg (point))))
|
|
1441
|
|
1442 (defun tpu-delete-to-bol (num)
|
|
1443 "Delete text back to beginning of line.
|
|
1444 With argument, delete up to to Nth line-end past point.
|
|
1445 They are saved for the TPU-edt undelete-lines command."
|
72
|
1446 (interactive "p")
|
134
|
1447 (setq zmacs-region-stays t)
|
0
|
1448 (let ((beg (point)))
|
|
1449 (tpu-next-beginning-of-line num)
|
|
1450 (setq tpu-last-deleted-lines
|
|
1451 (buffer-substring (point) beg))
|
|
1452 (delete-region (point) beg)))
|
|
1453
|
|
1454 (defun tpu-delete-current-word (num)
|
|
1455 "Delete one or specified number of words after point.
|
|
1456 They are saved for the TPU-edt undelete-words command."
|
72
|
1457 (interactive "p")
|
134
|
1458 (setq zmacs-region-stays t)
|
0
|
1459 (let ((beg (point)))
|
|
1460 (tpu-forward-to-word num)
|
|
1461 (setq tpu-last-deleted-words
|
|
1462 (buffer-substring beg (point)))
|
|
1463 (delete-region beg (point))))
|
|
1464
|
|
1465 (defun tpu-delete-previous-word (num)
|
|
1466 "Delete one or specified number of words before point.
|
|
1467 They are saved for the TPU-edt undelete-words command."
|
72
|
1468 (interactive "p")
|
134
|
1469 (setq zmacs-region-stays t)
|
0
|
1470 (let ((beg (point)))
|
|
1471 (tpu-backward-to-word num)
|
|
1472 (setq tpu-last-deleted-words
|
|
1473 (buffer-substring (point) beg))
|
|
1474 (delete-region beg (point))))
|
|
1475
|
|
1476 (defun tpu-delete-current-char (num)
|
|
1477 "Delete one or specified number of characters after point. The last
|
|
1478 character deleted is saved for the TPU-edt undelete-char command."
|
72
|
1479 (interactive "p")
|
134
|
1480 (setq zmacs-region-stays t)
|
0
|
1481 (while (and (> num 0) (not (eobp)))
|
|
1482 (setq tpu-last-deleted-char (char-after (point)))
|
|
1483 (cond (overwrite-mode
|
|
1484 (picture-clear-column 1)
|
|
1485 (forward-char 1))
|
|
1486 (t
|
|
1487 (delete-char 1)))
|
|
1488 (setq num (1- num))))
|
|
1489
|
|
1490
|
|
1491 ;;;
|
|
1492 ;;; Undelete / Paste
|
|
1493 ;;;
|
|
1494 (defun tpu-paste (num)
|
|
1495 "Insert the last region or rectangle of killed text.
|
|
1496 With argument reinserts the text that many times."
|
72
|
1497 (interactive "p")
|
134
|
1498 (setq zmacs-region-stays t)
|
0
|
1499 (while (> num 0)
|
|
1500 (cond (tpu-rectangular-p
|
|
1501 (let ((beg (point)))
|
|
1502 (save-excursion
|
|
1503 (picture-yank-rectangle (not overwrite-mode))
|
|
1504 (message ""))
|
|
1505 (goto-char beg)))
|
|
1506 (t
|
|
1507 (insert tpu-last-deleted-region)))
|
|
1508 (setq num (1- num))))
|
|
1509
|
|
1510 (defun tpu-undelete-lines (num)
|
|
1511 "Insert lines deleted by last TPU-edt line-deletion command.
|
|
1512 With argument reinserts lines that many times."
|
72
|
1513 (interactive "p")
|
134
|
1514 (setq zmacs-region-stays t)
|
0
|
1515 (let ((beg (point)))
|
|
1516 (while (> num 0)
|
|
1517 (insert tpu-last-deleted-lines)
|
|
1518 (setq num (1- num)))
|
|
1519 (goto-char beg)))
|
|
1520
|
|
1521 (defun tpu-undelete-words (num)
|
|
1522 "Insert words deleted by last TPU-edt word-deletion command.
|
|
1523 With argument reinserts words that many times."
|
72
|
1524 (interactive "p")
|
134
|
1525 (setq zmacs-region-stays t)
|
0
|
1526 (let ((beg (point)))
|
|
1527 (while (> num 0)
|
|
1528 (insert tpu-last-deleted-words)
|
|
1529 (setq num (1- num)))
|
|
1530 (goto-char beg)))
|
|
1531
|
|
1532 (defun tpu-undelete-char (num)
|
|
1533 "Insert character deleted by last TPU-edt character-deletion command.
|
|
1534 With argument reinserts the character that many times."
|
72
|
1535 (interactive "p")
|
134
|
1536 (setq zmacs-region-stays t)
|
0
|
1537 (while (> num 0)
|
|
1538 (if overwrite-mode (prog1 (forward-char -1) (delete-char 1)))
|
|
1539 (insert tpu-last-deleted-char)
|
|
1540 (forward-char -1)
|
|
1541 (setq num (1- num))))
|
|
1542
|
|
1543
|
|
1544 ;;;
|
|
1545 ;;; Replace and Substitute
|
|
1546 ;;;
|
|
1547 (defun tpu-replace nil
|
|
1548 "Replace the selected region with the contents of the cut buffer."
|
|
1549 (interactive)
|
|
1550 (cond ((tpu-mark)
|
|
1551 (let ((beg (region-beginning)) (end (region-end)))
|
|
1552 (setq tpu-last-replaced-text (buffer-substring beg end))
|
|
1553 (delete-region beg end)
|
|
1554 (insert tpu-last-deleted-region)
|
|
1555 (tpu-unselect t)))
|
|
1556 ((tpu-check-match)
|
|
1557 (let ((beg (tpu-match-beginning)) (end (tpu-match-end)))
|
|
1558 (setq tpu-last-replaced-text (buffer-substring beg end))
|
|
1559 (replace-match tpu-last-deleted-region
|
|
1560 (not case-replace) (not tpu-regexp-p))
|
|
1561 (tpu-unset-match)))
|
|
1562 (t
|
|
1563 (error "No selection active."))))
|
|
1564
|
|
1565 (defun tpu-substitute (num)
|
|
1566 "Replace the selected region with the contents of the cut buffer, and
|
|
1567 repeat most recent search. A numeric argument serves as a repeat count.
|
|
1568 A negative argument means replace all occurrences of the search string."
|
72
|
1569 (interactive "p")
|
0
|
1570 (cond ((or (tpu-mark) (tpu-check-match))
|
|
1571 (while (and (not (= num 0)) (or (tpu-mark) (tpu-check-match)))
|
|
1572 (let ((beg (point)))
|
|
1573 (tpu-replace)
|
|
1574 (if tpu-searching-forward (forward-char -1) (goto-char beg))
|
|
1575 (if (= num 1) (tpu-search-internal tpu-search-last-string)
|
|
1576 (tpu-search-internal-core tpu-search-last-string)))
|
|
1577 (setq num (1- num))))
|
|
1578 (t
|
|
1579 (error "No selection active."))))
|
|
1580
|
|
1581 (defun tpu-lm-replace (from to)
|
|
1582 "Interactively search for OLD-string and substitute NEW-string."
|
|
1583 (interactive (list (tpu-regexp-prompt "Old String: ")
|
|
1584 (tpu-regexp-prompt "New String: ")))
|
|
1585
|
|
1586 (let ((doit t) (strings 0))
|
|
1587
|
|
1588 ;; Can't replace null strings
|
|
1589 (if (string= "" from) (error "No string to replace."))
|
|
1590
|
|
1591 ;; Find the first occurrence
|
|
1592 (tpu-set-search)
|
|
1593 (tpu-search-internal from t)
|
|
1594
|
|
1595 ;; Loop on replace question - yes, no, all, last, or quit.
|
|
1596 (while doit
|
|
1597 (if (not (tpu-check-match)) (setq doit nil)
|
|
1598 (progn (message "Replace? Type Yes, No, All, Last, or Quit: ")
|
|
1599 (let ((ans (read-char)))
|
|
1600
|
|
1601 (cond ((or (= ans ?y) (= ans ?Y) (= ans ?\r) (= ans ?\ ))
|
|
1602 (let ((beg (point)))
|
|
1603 (replace-match to (not case-replace) (not tpu-regexp-p))
|
|
1604 (setq strings (1+ strings))
|
|
1605 (if tpu-searching-forward (forward-char -1) (goto-char beg)))
|
|
1606 (tpu-search-internal from t))
|
|
1607
|
|
1608 ((or (= ans ?n) (= ans ?N) (= ans ?\C-?))
|
|
1609 (tpu-search-internal from t))
|
|
1610
|
|
1611 ((or (= ans ?a) (= ans ?A))
|
|
1612 (save-excursion
|
|
1613 (let ((beg (point)))
|
|
1614 (replace-match to (not case-replace) (not tpu-regexp-p))
|
|
1615 (setq strings (1+ strings))
|
|
1616 (if tpu-searching-forward (forward-char -1) (goto-char beg)))
|
|
1617 (tpu-search-internal-core from t)
|
|
1618 (while (tpu-check-match)
|
|
1619 (let ((beg (point)))
|
|
1620 (replace-match to (not case-replace) (not tpu-regexp-p))
|
|
1621 (setq strings (1+ strings))
|
|
1622 (if tpu-searching-forward (forward-char -1) (goto-char beg)))
|
|
1623 (tpu-search-internal-core from t)))
|
|
1624 (setq doit nil))
|
|
1625
|
|
1626 ((or (= ans ?l) (= ans ?L))
|
|
1627 (let ((beg (point)))
|
|
1628 (replace-match to (not case-replace) (not tpu-regexp-p))
|
|
1629 (setq strings (1+ strings))
|
|
1630 (if tpu-searching-forward (forward-char -1) (goto-char beg)))
|
|
1631 (setq doit nil))
|
|
1632
|
|
1633 ((or (= ans ?q) (= ans ?Q))
|
|
1634 (setq doit nil)))))))
|
|
1635
|
|
1636 (message "Replaced %s occurrence%s." strings
|
|
1637 (if (not (= 1 strings)) "s" ""))))
|
|
1638
|
|
1639 (defun tpu-emacs-replace (&optional dont-ask)
|
|
1640 "A TPU-edt interface to the emacs replace functions. If TPU-edt is
|
|
1641 currently in regular expression mode, the emacs regular expression
|
|
1642 replace functions are used. If an argument is supplied, replacements
|
|
1643 are performed without asking. Only works in forward direction."
|
72
|
1644 (interactive "P")
|
0
|
1645 (cond (dont-ask
|
|
1646 (setq current-prefix-arg nil)
|
|
1647 (call-interactively
|
|
1648 (if tpu-regexp-p 'replace-regexp 'replace-string)))
|
|
1649 (t
|
|
1650 (call-interactively
|
|
1651 (if tpu-regexp-p 'query-replace-regexp 'query-replace)))))
|
|
1652
|
|
1653 (defun tpu-add-at-bol (text)
|
|
1654 "Add text to the beginning of each line in a region,
|
|
1655 or each line in the entire buffer if no region is selected."
|
|
1656 (interactive
|
|
1657 (list (tpu-string-prompt "String to add: " 'tpu-add-at-bol-hist)))
|
134
|
1658 (setq zmacs-region-stays t)
|
0
|
1659 (if (string= "" text) (error "No string specified."))
|
|
1660 (cond ((tpu-mark)
|
|
1661 (save-excursion
|
|
1662 (if (> (point) (tpu-mark)) (exchange-point-and-mark))
|
|
1663 (while (and (< (point) (tpu-mark)) (re-search-forward "^" (tpu-mark) t))
|
|
1664 (if (< (point) (tpu-mark)) (replace-match text))))
|
|
1665 (tpu-unselect t))
|
|
1666 (t
|
|
1667 (save-excursion
|
|
1668 (goto-char (point-min))
|
|
1669 (while (and (re-search-forward "^" nil t) (not (eobp)))
|
|
1670 (replace-match text))))))
|
|
1671
|
|
1672 (defun tpu-add-at-eol (text)
|
|
1673 "Add text to the end of each line in a region,
|
|
1674 or each line of the entire buffer if no region is selected."
|
|
1675 (interactive
|
|
1676 (list (tpu-string-prompt "String to add: " 'tpu-add-at-eol-hist)))
|
134
|
1677 (set zmacs-region-stays t)
|
0
|
1678 (if (string= "" text) (error "No string specified."))
|
|
1679 (cond ((tpu-mark)
|
|
1680 (save-excursion
|
|
1681 (if (> (point) (tpu-mark)) (exchange-point-and-mark))
|
|
1682 (while (< (point) (tpu-mark))
|
|
1683 (end-of-line)
|
|
1684 (if (<= (point) (tpu-mark)) (insert text))
|
|
1685 (forward-line)))
|
|
1686 (tpu-unselect t))
|
|
1687 (t
|
|
1688 (save-excursion
|
|
1689 (goto-char (point-min))
|
|
1690 (while (not (eobp))
|
|
1691 (end-of-line) (insert text) (forward-line))))))
|
|
1692
|
|
1693 (defun tpu-trim-line-ends nil
|
|
1694 "Removes trailing whitespace from every line in the buffer."
|
|
1695 (interactive)
|
134
|
1696 (setq zmacs-region-stays t)
|
0
|
1697 (picture-clean))
|
|
1698
|
|
1699
|
|
1700 ;;;
|
|
1701 ;;; Movement by character
|
|
1702 ;;;
|
|
1703 (defun tpu-char (num)
|
|
1704 "Move to the next character in the current direction.
|
|
1705 A repeat count means move that many characters."
|
72
|
1706 (interactive "p")
|
134
|
1707 (setq zmacs-region-stays t)
|
0
|
1708 (if tpu-advance (tpu-forward-char num) (tpu-backward-char num)))
|
|
1709
|
|
1710 (defun tpu-forward-char (num)
|
|
1711 "Move right ARG characters (left if ARG is negative)."
|
72
|
1712 (interactive "p")
|
134
|
1713 (setq zmacs-region-stays t)
|
0
|
1714 (forward-char num))
|
|
1715
|
|
1716 (defun tpu-backward-char (num)
|
|
1717 "Move left ARG characters (right if ARG is negative)."
|
72
|
1718 (interactive "p")
|
134
|
1719 (setq zmacs-region-stays t)
|
0
|
1720 (backward-char num))
|
|
1721
|
|
1722
|
|
1723 ;;;
|
|
1724 ;;; Movement by word
|
|
1725 ;;;
|
|
1726 (defconst tpu-word-separator-list '()
|
|
1727 "List of additional word separators.")
|
|
1728 (defconst tpu-skip-chars "^ \t"
|
|
1729 "Characters to skip when moving by word.
|
|
1730 Additional word separators are added to this string.")
|
|
1731
|
|
1732 (defun tpu-word (num)
|
|
1733 "Move to the beginning of the next word in the current direction.
|
|
1734 A repeat count means move that many words."
|
72
|
1735 (interactive "p")
|
134
|
1736 (setq zmacs-region-stays t)
|
0
|
1737 (if tpu-advance (tpu-forward-to-word num) (tpu-backward-to-word num)))
|
|
1738
|
|
1739 (defun tpu-forward-to-word (num)
|
|
1740 "Move forward until encountering the beginning of a word.
|
|
1741 With argument, do this that many times."
|
72
|
1742 (interactive "p")
|
134
|
1743 (setq zmacs-region-stays t)
|
0
|
1744 (while (and (> num 0) (not (eobp)))
|
|
1745 (let* ((beg (point))
|
|
1746 (end (prog2 (end-of-line) (point) (goto-char beg))))
|
|
1747 (cond ((eolp)
|
|
1748 (forward-char 1))
|
|
1749 ((memq (char-after (point)) tpu-word-separator-list)
|
|
1750 (forward-char 1)
|
|
1751 (skip-chars-forward " \t" end))
|
|
1752 (t
|
|
1753 (skip-chars-forward tpu-skip-chars end)
|
|
1754 (skip-chars-forward " \t" end))))
|
|
1755 (setq num (1- num))))
|
|
1756
|
|
1757 (defun tpu-backward-to-word (num)
|
|
1758 "Move backward until encountering the beginning of a word.
|
|
1759 With argument, do this that many times."
|
72
|
1760 (interactive "p")
|
134
|
1761 (setq zmacs-region-stays t)
|
0
|
1762 (while (and (> num 0) (not (bobp)))
|
|
1763 (let* ((beg (point))
|
|
1764 (end (prog2 (beginning-of-line) (point) (goto-char beg))))
|
|
1765 (cond ((bolp)
|
|
1766 ( forward-char -1))
|
|
1767 ((memq (char-after (1- (point))) tpu-word-separator-list)
|
|
1768 (forward-char -1))
|
|
1769 (t
|
|
1770 (skip-chars-backward " \t" end)
|
|
1771 (skip-chars-backward tpu-skip-chars end)
|
|
1772 (if (and (not (bolp)) (= ? (char-syntax (char-after (point)))))
|
|
1773 (forward-char -1)))))
|
|
1774 (setq num (1- num))))
|
|
1775
|
|
1776 (defun tpu-add-word-separators (separators)
|
|
1777 "Add new word separators for TPU-edt word commands."
|
72
|
1778 (interactive "sSeparators: ")
|
134
|
1779 (setq zmacs-region-stays t)
|
0
|
1780 (let* ((n 0) (length (length separators)))
|
|
1781 (while (< n length)
|
|
1782 (let ((char (aref separators n))
|
|
1783 (ss (substring separators n (1+ n))))
|
|
1784 (cond ((not (memq char tpu-word-separator-list))
|
|
1785 (setq tpu-word-separator-list
|
|
1786 (append ss tpu-word-separator-list))
|
|
1787 (cond ((= char ?-)
|
|
1788 (setq tpu-skip-chars (concat tpu-skip-chars "\\-")))
|
|
1789 ((= char ?\\)
|
|
1790 (setq tpu-skip-chars (concat tpu-skip-chars "\\\\")))
|
|
1791 ((= char ?^)
|
|
1792 (setq tpu-skip-chars (concat tpu-skip-chars "\\^")))
|
|
1793 (t
|
|
1794 (setq tpu-skip-chars (concat tpu-skip-chars ss))))))
|
|
1795 (setq n (1+ n))))))
|
|
1796
|
|
1797 (defun tpu-reset-word-separators nil
|
|
1798 "Reset word separators to default value."
|
72
|
1799 (interactive)
|
134
|
1800 (setq zmacs-region-stays t)
|
0
|
1801 (setq tpu-word-separator-list nil)
|
|
1802 (setq tpu-skip-chars "^ \t"))
|
|
1803
|
|
1804 (defun tpu-set-word-separators (separators)
|
|
1805 "Set new word separators for TPU-edt word commands."
|
72
|
1806 (interactive "sSeparators: ")
|
134
|
1807 (setq zmacs-region-stays t)
|
0
|
1808 (tpu-reset-word-separators)
|
|
1809 (tpu-add-word-separators separators))
|
|
1810
|
|
1811
|
|
1812 ;;;
|
|
1813 ;;; Movement by line
|
|
1814 ;;;
|
|
1815 (defun tpu-next-line (num)
|
|
1816 "Move to next line.
|
|
1817 Prefix argument serves as a repeat count."
|
72
|
1818 (interactive "p")
|
134
|
1819 (setq zmacs-region-stays t)
|
0
|
1820 (next-line-internal num)
|
|
1821 (setq this-command 'next-line))
|
|
1822
|
|
1823 (defun tpu-previous-line (num)
|
|
1824 "Move to previous line.
|
|
1825 Prefix argument serves as a repeat count."
|
72
|
1826 (interactive "p")
|
134
|
1827 (setq zmacs-region-stays t)
|
0
|
1828 (next-line-internal (- num))
|
|
1829 (setq this-command 'previous-line))
|
|
1830
|
|
1831 (defun tpu-next-beginning-of-line (num)
|
|
1832 "Move to beginning of line; if at beginning, move to beginning of next line.
|
|
1833 Accepts a prefix argument for the number of lines to move."
|
72
|
1834 (interactive "p")
|
134
|
1835 (setq zmacs-region-stays t)
|
0
|
1836 (backward-char 1)
|
|
1837 (forward-line (- 1 num)))
|
|
1838
|
|
1839 (defun tpu-end-of-line (num)
|
|
1840 "Move to the next end of line in the current direction.
|
|
1841 A repeat count means move that many lines."
|
72
|
1842 (interactive "p")
|
134
|
1843 (setq zmacs-region-stays t)
|
0
|
1844 (if tpu-advance (tpu-next-end-of-line num) (tpu-previous-end-of-line num)))
|
|
1845
|
|
1846 (defun tpu-next-end-of-line (num)
|
|
1847 "Move to end of line; if at end, move to end of next line.
|
|
1848 Accepts a prefix argument for the number of lines to move."
|
72
|
1849 (interactive "p")
|
134
|
1850 (setq zmacs-region-stays t)
|
0
|
1851 (forward-char 1)
|
|
1852 (end-of-line num))
|
|
1853
|
|
1854 (defun tpu-previous-end-of-line (num)
|
|
1855 "Move EOL upward.
|
|
1856 Accepts a prefix argument for the number of lines to move."
|
72
|
1857 (interactive "p")
|
134
|
1858 (setq zmacs-region-stays t)
|
0
|
1859 (end-of-line (- 1 num)))
|
|
1860
|
|
1861 (defun tpu-current-end-of-line nil
|
|
1862 "Move point to end of current line."
|
72
|
1863 (interactive)
|
134
|
1864 (setq zmacs-region-stays t)
|
0
|
1865 (let ((beg (point)))
|
|
1866 (end-of-line)
|
|
1867 (if (= beg (point)) (message "You are already at the end of a line."))))
|
|
1868
|
|
1869 (defun tpu-line (num)
|
|
1870 "Move to the beginning of the next line in the current direction.
|
|
1871 A repeat count means move that many lines."
|
72
|
1872 (interactive "p")
|
134
|
1873 (setq zmacs-region-stays t)
|
0
|
1874 (if tpu-advance (tpu-forward-line num) (tpu-backward-line num)))
|
|
1875
|
|
1876 (defun tpu-forward-line (num)
|
|
1877 "Move to beginning of next line.
|
|
1878 Prefix argument serves as a repeat count."
|
72
|
1879 (interactive "p")
|
134
|
1880 (setq zmacs-region-stays t)
|
0
|
1881 (forward-line num))
|
|
1882
|
|
1883 (defun tpu-backward-line (num)
|
|
1884 "Move to beginning of previous line.
|
|
1885 Prefix argument serves as repeat count."
|
72
|
1886 (interactive "p")
|
134
|
1887 (setq zmacs-region-stays t)
|
72
|
1888 (or (bolp) (>= 0 num) (setq num (- num 1)))
|
0
|
1889 (forward-line (- num)))
|
|
1890
|
|
1891
|
|
1892 ;;;
|
|
1893 ;;; Movement by paragraph
|
|
1894 ;;;
|
|
1895 (defun tpu-paragraph (num)
|
|
1896 "Move to the next paragraph in the current direction.
|
|
1897 A repeat count means move that many paragraphs."
|
72
|
1898 (interactive "p")
|
134
|
1899 (setq zmacs-region-stays t)
|
0
|
1900 (if tpu-advance
|
|
1901 (tpu-next-paragraph num) (tpu-previous-paragraph num)))
|
|
1902
|
|
1903 (defun tpu-next-paragraph (num)
|
|
1904 "Move to beginning of the next paragraph.
|
|
1905 Accepts a prefix argument for the number of paragraphs."
|
72
|
1906 (interactive "p")
|
134
|
1907 (setq zmacs-region-stays t)
|
0
|
1908 (beginning-of-line)
|
|
1909 (while (and (not (eobp)) (> num 0))
|
|
1910 (if (re-search-forward "^[ \t]*$" nil t)
|
|
1911 (if (re-search-forward "[^ \t\n]" nil t)
|
|
1912 (goto-char (match-beginning 0))
|
|
1913 (goto-char (point-max))))
|
|
1914 (setq num (1- num)))
|
|
1915 (beginning-of-line))
|
|
1916
|
|
1917
|
|
1918 (defun tpu-previous-paragraph (num)
|
|
1919 "Move to beginning of previous paragraph.
|
|
1920 Accepts a prefix argument for the number of paragraphs."
|
72
|
1921 (interactive "p")
|
134
|
1922 (setq zmacs-region-stays t)
|
0
|
1923 (end-of-line)
|
|
1924 (while (and (not (bobp)) (> num 0))
|
|
1925 (if (not (and (re-search-backward "^[ \t]*$" nil t)
|
|
1926 (re-search-backward "[^ \t\n]" nil t)
|
|
1927 (re-search-backward "^[ \t]*$" nil t)
|
|
1928 (progn (re-search-forward "[^ \t\n]" nil t)
|
|
1929 (goto-char (match-beginning 0)))))
|
|
1930 (goto-char (point-min)))
|
|
1931 (setq num (1- num)))
|
|
1932 (beginning-of-line))
|
|
1933
|
|
1934
|
|
1935 ;;;
|
|
1936 ;;; Movement by page
|
|
1937 ;;;
|
|
1938 (defun tpu-page (num)
|
|
1939 "Move to the next page in the current direction.
|
|
1940 A repeat count means move that many pages."
|
72
|
1941 (interactive "p")
|
134
|
1942 (setq zmacs-region-stays t)
|
0
|
1943 (if tpu-advance (forward-page num) (backward-page num))
|
|
1944 (if (eobp) (recenter -1)))
|
|
1945
|
|
1946
|
|
1947 ;;;
|
|
1948 ;;; Scrolling and movement within the buffer
|
|
1949 ;;;
|
|
1950 (defun tpu-scroll-window (num)
|
|
1951 "Scroll the display to the next section in the current direction.
|
|
1952 A repeat count means scroll that many sections."
|
72
|
1953 (interactive "p")
|
134
|
1954 (setq zmacs-region-stays t)
|
0
|
1955 (if tpu-advance (tpu-scroll-window-up num) (tpu-scroll-window-down num)))
|
|
1956
|
|
1957 (defun tpu-scroll-window-down (num)
|
|
1958 "Scroll the display down to the next section.
|
|
1959 A repeat count means scroll that many sections."
|
72
|
1960 (interactive "p")
|
134
|
1961 (setq zmacs-region-stays t)
|
0
|
1962 (let* ((beg (tpu-current-line))
|
|
1963 (height (1- (window-height)))
|
|
1964 (lines (* num (/ (* height tpu-percent-scroll) 100))))
|
|
1965 (next-line-internal (- lines))
|
|
1966 (if (> lines beg) (recenter 0))))
|
|
1967
|
|
1968 (defun tpu-scroll-window-up (num)
|
|
1969 "Scroll the display up to the next section.
|
|
1970 A repeat count means scroll that many sections."
|
72
|
1971 (interactive "p")
|
134
|
1972 (setq zmacs-region-stays t)
|
0
|
1973 (let* ((beg (tpu-current-line))
|
|
1974 (height (1- (window-height)))
|
|
1975 (lines (* num (/ (* height tpu-percent-scroll) 100))))
|
|
1976 (next-line-internal lines)
|
|
1977 (if (>= (+ lines beg) height) (recenter -1))))
|
|
1978
|
|
1979 (defun tpu-pan-right (num)
|
|
1980 "Pan right tpu-pan-columns (16 by default).
|
|
1981 Accepts a prefix argument for the number of tpu-pan-columns to scroll."
|
72
|
1982 (interactive "p")
|
134
|
1983 (setq zmacs-region-stays t)
|
0
|
1984 (scroll-left (* tpu-pan-columns num)))
|
|
1985
|
|
1986 (defun tpu-pan-left (num)
|
|
1987 "Pan left tpu-pan-columns (16 by default).
|
|
1988 Accepts a prefix argument for the number of tpu-pan-columns to scroll."
|
72
|
1989 (interactive "p")
|
134
|
1990 (setq zmacs-region-stays t)
|
0
|
1991 (scroll-right (* tpu-pan-columns num)))
|
|
1992
|
|
1993 (defun tpu-move-to-beginning nil
|
|
1994 "Move cursor to the beginning of buffer, but don't set the mark."
|
72
|
1995 (interactive)
|
134
|
1996 (setq zmacs-region-stays t)
|
0
|
1997 (goto-char (point-min)))
|
|
1998
|
|
1999 (defun tpu-move-to-end nil
|
|
2000 "Move cursor to the end of buffer, but don't set the mark."
|
72
|
2001 (interactive)
|
134
|
2002 (setq zmacs-region-stays t)
|
0
|
2003 (goto-char (point-max))
|
|
2004 (recenter -1))
|
|
2005
|
|
2006 (defun tpu-goto-percent (perc)
|
|
2007 "Move point to ARG percentage of the buffer."
|
72
|
2008 (interactive "NGoto-percentage: ")
|
134
|
2009 (setq zmacs-region-stays t)
|
0
|
2010 (if (or (> perc 100) (< perc 0))
|
|
2011 (error "Percentage %d out of range 0 < percent < 100" perc)
|
|
2012 (goto-char (/ (* (point-max) perc) 100))))
|
|
2013
|
|
2014 (defun tpu-beginning-of-window nil
|
|
2015 "Move cursor to top of window."
|
72
|
2016 (interactive)
|
134
|
2017 (setq zmacs-region-stays t)
|
0
|
2018 (move-to-window-line 0))
|
|
2019
|
|
2020 (defun tpu-end-of-window nil
|
|
2021 "Move cursor to bottom of window."
|
72
|
2022 (interactive)
|
134
|
2023 (setq zmacs-region-stays t)
|
0
|
2024 (move-to-window-line -1))
|
|
2025
|
|
2026 (defun tpu-line-to-bottom-of-window nil
|
|
2027 "Move the current line to the bottom of the window."
|
72
|
2028 (interactive)
|
134
|
2029 (setq zmacs-region-stays t)
|
0
|
2030 (recenter -1))
|
|
2031
|
|
2032 (defun tpu-line-to-top-of-window nil
|
|
2033 "Move the current line to the top of the window."
|
72
|
2034 (interactive)
|
134
|
2035 (setq zmacs-region-stays t)
|
0
|
2036 (recenter 0))
|
|
2037
|
|
2038
|
|
2039 ;;;
|
|
2040 ;;; Direction
|
|
2041 ;;;
|
|
2042 (defun tpu-advance-direction nil
|
|
2043 "Set TPU Advance mode so keypad commands move forward."
|
72
|
2044 (interactive)
|
134
|
2045 (setq zmacs-region-stays t)
|
0
|
2046 (setq tpu-direction-string " Advance")
|
|
2047 (setq tpu-advance t)
|
|
2048 (setq tpu-reverse nil)
|
|
2049 (tpu-set-search)
|
|
2050 (tpu-update-mode-line))
|
|
2051
|
|
2052 (defun tpu-backup-direction nil
|
|
2053 "Set TPU Backup mode so keypad commands move backward."
|
72
|
2054 (interactive)
|
134
|
2055 (setq zmacs-region-stays t)
|
0
|
2056 (setq tpu-direction-string " Reverse")
|
|
2057 (setq tpu-advance nil)
|
|
2058 (setq tpu-reverse t)
|
|
2059 (tpu-set-search)
|
|
2060 (tpu-update-mode-line))
|
|
2061
|
|
2062
|
|
2063 ;;;
|
|
2064 ;;; Define keymaps
|
|
2065 ;;;
|
|
2066 (define-key global-map "\e[" CSI-map) ; CSI map
|
|
2067 (define-key global-map "\eO" SS3-map) ; SS3 map
|
|
2068 (define-key SS3-map "P" GOLD-map) ; GOLD map
|
|
2069 (define-key GOLD-map "\e[" GOLD-CSI-map) ; GOLD-CSI map
|
|
2070 (define-key GOLD-map "\eO" GOLD-SS3-map) ; GOLD-SS3 map
|
|
2071
|
|
2072
|
|
2073 ;;;
|
|
2074 ;;; CSI-map key definitions
|
|
2075 ;;;
|
|
2076 (define-key CSI-map "A" 'tpu-previous-line) ; up
|
|
2077 (define-key CSI-map "B" 'tpu-next-line) ; down
|
|
2078 (define-key CSI-map "D" 'tpu-backward-char) ; left
|
|
2079 (define-key CSI-map "C" 'tpu-forward-char) ; right
|
|
2080
|
|
2081 (define-key CSI-map "1~" 'tpu-search) ; Find
|
|
2082 (define-key CSI-map "2~" 'tpu-paste) ; Insert Here
|
|
2083 (define-key CSI-map "3~" 'tpu-cut) ; Remove
|
|
2084 (define-key CSI-map "4~" 'tpu-select) ; Select
|
|
2085 (define-key CSI-map "5~" 'tpu-scroll-window-down) ; Prev Screen
|
|
2086 (define-key CSI-map "6~" 'tpu-scroll-window-up) ; Next Screen
|
|
2087
|
|
2088 (define-key CSI-map "11~" 'nil) ; F1
|
|
2089 (define-key CSI-map "12~" 'nil) ; F2
|
|
2090 (define-key CSI-map "13~" 'nil) ; F3
|
|
2091 (define-key CSI-map "14~" 'nil) ; F4
|
|
2092 (define-key CSI-map "15~" 'nil) ; F5
|
|
2093 (define-key CSI-map "17~" 'nil) ; F6
|
|
2094 (define-key CSI-map "18~" 'nil) ; F7
|
|
2095 (define-key CSI-map "19~" 'nil) ; F8
|
|
2096 (define-key CSI-map "20~" 'nil) ; F9
|
|
2097 (define-key CSI-map "21~" 'tpu-exit) ; F10
|
|
2098 (define-key CSI-map "23~" 'tpu-insert-escape) ; F11 (ESC)
|
|
2099 (define-key CSI-map "24~" 'tpu-next-beginning-of-line) ; F12 (BS)
|
|
2100 (define-key CSI-map "25~" 'tpu-delete-previous-word) ; F13 (LF)
|
|
2101 (define-key CSI-map "26~" 'tpu-toggle-overwrite-mode) ; F14
|
|
2102 (define-key CSI-map "28~" 'tpu-help) ; HELP
|
|
2103 (define-key CSI-map "29~" 'execute-extended-command) ; DO
|
|
2104 (define-key CSI-map "31~" 'tpu-goto-breadcrumb) ; F17
|
|
2105 (define-key CSI-map "32~" 'nil) ; F18
|
|
2106 (define-key CSI-map "33~" 'nil) ; F19
|
|
2107 (define-key CSI-map "34~" 'nil) ; F20
|
|
2108
|
|
2109
|
|
2110 ;;;
|
|
2111 ;;; SS3-map key definitions
|
|
2112 ;;;
|
|
2113 (define-key SS3-map "A" 'tpu-previous-line) ; up
|
|
2114 (define-key SS3-map "B" 'tpu-next-line) ; down
|
|
2115 (define-key SS3-map "C" 'tpu-forward-char) ; right
|
|
2116 (define-key SS3-map "D" 'tpu-backward-char) ; left
|
|
2117
|
|
2118 (define-key SS3-map "Q" 'tpu-help) ; PF2
|
|
2119 (define-key SS3-map "R" 'tpu-search-again) ; PF3
|
|
2120 (define-key SS3-map "S" 'tpu-delete-current-line) ; PF4
|
|
2121 (define-key SS3-map "p" 'tpu-line) ; KP0
|
|
2122 (define-key SS3-map "q" 'tpu-word) ; KP1
|
|
2123 (define-key SS3-map "r" 'tpu-end-of-line) ; KP2
|
|
2124 (define-key SS3-map "s" 'tpu-char) ; KP3
|
|
2125 (define-key SS3-map "t" 'tpu-advance-direction) ; KP4
|
|
2126 (define-key SS3-map "u" 'tpu-backup-direction) ; KP5
|
|
2127 (define-key SS3-map "v" 'tpu-cut) ; KP6
|
|
2128 (define-key SS3-map "w" 'tpu-page) ; KP7
|
|
2129 (define-key SS3-map "x" 'tpu-scroll-window) ; KP8
|
|
2130 (define-key SS3-map "y" 'tpu-append-region) ; KP9
|
|
2131 (define-key SS3-map "m" 'tpu-delete-current-word) ; KP-
|
|
2132 (define-key SS3-map "l" 'tpu-delete-current-char) ; KP,
|
|
2133 (define-key SS3-map "n" 'tpu-select) ; KP.
|
|
2134 (define-key SS3-map "M" 'newline) ; KPenter
|
|
2135
|
|
2136
|
|
2137 ;;;
|
|
2138 ;;; GOLD-map key definitions
|
|
2139 ;;;
|
|
2140 (define-key GOLD-map "\C-A" 'tpu-toggle-overwrite-mode) ; ^A
|
|
2141 (define-key GOLD-map "\C-B" 'nil) ; ^B
|
|
2142 (define-key GOLD-map "\C-C" 'nil) ; ^C
|
|
2143 (define-key GOLD-map "\C-D" 'nil) ; ^D
|
|
2144 (define-key GOLD-map "\C-E" 'nil) ; ^E
|
|
2145 (define-key GOLD-map "\C-F" 'set-visited-file-name) ; ^F
|
|
2146 (define-key GOLD-map "\C-g" 'keyboard-quit) ; safety first
|
|
2147 (define-key GOLD-map "\C-h" 'delete-other-windows) ; BS
|
|
2148 (define-key GOLD-map "\C-i" 'other-window) ; TAB
|
|
2149 (define-key GOLD-map "\C-J" 'nil) ; ^J
|
|
2150 (define-key GOLD-map "\C-K" 'tpu-define-macro-key) ; ^K
|
|
2151 (define-key GOLD-map "\C-l" 'downcase-region) ; ^L
|
|
2152 (define-key GOLD-map "\C-M" 'nil) ; ^M
|
|
2153 (define-key GOLD-map "\C-N" 'nil) ; ^N
|
|
2154 (define-key GOLD-map "\C-O" 'nil) ; ^O
|
|
2155 (define-key GOLD-map "\C-P" 'nil) ; ^P
|
|
2156 (define-key GOLD-map "\C-Q" 'nil) ; ^Q
|
|
2157 (define-key GOLD-map "\C-R" 'nil) ; ^R
|
|
2158 (define-key GOLD-map "\C-S" 'nil) ; ^S
|
|
2159 (define-key GOLD-map "\C-T" 'tpu-toggle-control-keys) ; ^T
|
|
2160 (define-key GOLD-map "\C-u" 'upcase-region) ; ^U
|
|
2161 (define-key GOLD-map "\C-V" 'nil) ; ^V
|
|
2162 (define-key GOLD-map "\C-w" 'tpu-write-current-buffers) ; ^W
|
|
2163 (define-key GOLD-map "\C-X" 'nil) ; ^X
|
|
2164 (define-key GOLD-map "\C-Y" 'nil) ; ^Y
|
|
2165 (define-key GOLD-map "\C-Z" 'nil) ; ^Z
|
|
2166 (define-key GOLD-map " " 'undo) ; SPC
|
|
2167 (define-key GOLD-map "!" 'nil) ; !
|
|
2168 (define-key GOLD-map "#" 'nil) ; #
|
|
2169 (define-key GOLD-map "$" 'tpu-add-at-eol) ; $
|
|
2170 (define-key GOLD-map "%" 'tpu-goto-percent) ; %
|
|
2171 (define-key GOLD-map "&" 'nil) ; &
|
|
2172 (define-key GOLD-map "(" 'nil) ; (
|
|
2173 (define-key GOLD-map ")" 'nil) ; )
|
|
2174 (define-key GOLD-map "*" 'tpu-toggle-regexp) ; *
|
|
2175 (define-key GOLD-map "+" 'nil) ; +
|
|
2176 (define-key GOLD-map "," 'tpu-goto-breadcrumb) ; ,
|
|
2177 (define-key GOLD-map "-" 'negative-argument) ; -
|
|
2178 (define-key GOLD-map "." 'tpu-drop-breadcrumb) ; .
|
|
2179 (define-key GOLD-map "/" 'tpu-emacs-replace) ; /
|
|
2180 (define-key GOLD-map "0" 'digit-argument) ; 0
|
|
2181 (define-key GOLD-map "1" 'digit-argument) ; 1
|
|
2182 (define-key GOLD-map "2" 'digit-argument) ; 2
|
|
2183 (define-key GOLD-map "3" 'digit-argument) ; 3
|
|
2184 (define-key GOLD-map "4" 'digit-argument) ; 4
|
|
2185 (define-key GOLD-map "5" 'digit-argument) ; 5
|
|
2186 (define-key GOLD-map "6" 'digit-argument) ; 6
|
|
2187 (define-key GOLD-map "7" 'digit-argument) ; 7
|
|
2188 (define-key GOLD-map "8" 'digit-argument) ; 8
|
|
2189 (define-key GOLD-map "9" 'digit-argument) ; 9
|
|
2190 (define-key GOLD-map ":" 'nil) ; :
|
|
2191 (define-key GOLD-map ";" 'tpu-trim-line-ends) ; ;
|
|
2192 (define-key GOLD-map "<" 'nil) ; <
|
|
2193 (define-key GOLD-map "=" 'nil) ; =
|
|
2194 (define-key GOLD-map ">" 'nil) ; >
|
|
2195 (define-key GOLD-map "?" 'tpu-spell-check) ; ?
|
|
2196 (define-key GOLD-map "A" 'tpu-toggle-newline-and-indent) ; A
|
|
2197 (define-key GOLD-map "B" 'tpu-next-buffer) ; B
|
|
2198 (define-key GOLD-map "C" 'repeat-complex-command) ; C
|
|
2199 (define-key GOLD-map "D" 'shell-command) ; D
|
|
2200 (define-key GOLD-map "E" 'tpu-exit) ; E
|
|
2201 (define-key GOLD-map "F" 'tpu-set-cursor-free) ; F
|
|
2202 (define-key GOLD-map "G" 'tpu-get) ; G
|
|
2203 (define-key GOLD-map "H" 'nil) ; H
|
|
2204 (define-key GOLD-map "I" 'tpu-include) ; I
|
|
2205 (define-key GOLD-map "K" 'tpu-kill-buffer) ; K
|
|
2206 (define-key GOLD-map "L" 'tpu-what-line) ; L
|
|
2207 (define-key GOLD-map "M" 'buffer-menu) ; M
|
|
2208 (define-key GOLD-map "N" 'tpu-next-file-buffer) ; N
|
|
2209 (define-key GOLD-map "O" 'occur) ; O
|
|
2210 (define-key GOLD-map "P" 'lpr-buffer) ; P
|
|
2211 (define-key GOLD-map "Q" 'tpu-quit) ; Q
|
|
2212 (define-key GOLD-map "R" 'tpu-toggle-rectangle) ; R
|
|
2213 (define-key GOLD-map "S" 'replace) ; S
|
|
2214 (define-key GOLD-map "T" 'tpu-line-to-top-of-window) ; T
|
|
2215 (define-key GOLD-map "U" 'undo) ; U
|
|
2216 (define-key GOLD-map "V" 'tpu-version) ; V
|
|
2217 (define-key GOLD-map "W" 'save-buffer) ; W
|
|
2218 (define-key GOLD-map "X" 'tpu-save-all-buffers-kill-emacs) ; X
|
|
2219 (define-key GOLD-map "Y" 'copy-region-as-kill) ; Y
|
|
2220 (define-key GOLD-map "Z" 'suspend-emacs) ; Z
|
|
2221 (define-key GOLD-map "[" 'blink-matching-open) ; [
|
|
2222 (define-key GOLD-map "\\" 'nil) ; \
|
|
2223 (define-key GOLD-map "]" 'blink-matching-open) ; ]
|
|
2224 (define-key GOLD-map "^" 'tpu-add-at-bol) ; ^
|
|
2225 (define-key GOLD-map "_" 'split-window-vertically) ; -
|
|
2226 (define-key GOLD-map "`" 'what-line) ; `
|
|
2227 (define-key GOLD-map "a" 'tpu-toggle-newline-and-indent) ; a
|
|
2228 (define-key GOLD-map "b" 'tpu-next-buffer) ; b
|
|
2229 (define-key GOLD-map "c" 'repeat-complex-command) ; c
|
|
2230 (define-key GOLD-map "d" 'shell-command) ; d
|
|
2231 (define-key GOLD-map "e" 'tpu-exit) ; e
|
|
2232 (define-key GOLD-map "f" 'tpu-set-cursor-free) ; f
|
|
2233 (define-key GOLD-map "g" 'tpu-get) ; g
|
|
2234 (define-key GOLD-map "h" 'nil) ; h
|
|
2235 (define-key GOLD-map "i" 'tpu-include) ; i
|
|
2236 (define-key GOLD-map "k" 'tpu-kill-buffer) ; k
|
|
2237 (define-key GOLD-map "l" 'goto-line) ; l
|
|
2238 (define-key GOLD-map "m" 'buffer-menu) ; m
|
|
2239 (define-key GOLD-map "n" 'tpu-next-file-buffer) ; n
|
|
2240 (define-key GOLD-map "o" 'occur) ; o
|
|
2241 (define-key GOLD-map "p" 'lpr-region) ; p
|
|
2242 (define-key GOLD-map "q" 'tpu-quit) ; q
|
|
2243 (define-key GOLD-map "r" 'tpu-toggle-rectangle) ; r
|
|
2244 (define-key GOLD-map "s" 'replace) ; s
|
|
2245 (define-key GOLD-map "t" 'tpu-line-to-top-of-window) ; t
|
|
2246 (define-key GOLD-map "u" 'undo) ; u
|
|
2247 (define-key GOLD-map "v" 'tpu-version) ; v
|
|
2248 (define-key GOLD-map "w" 'save-buffer) ; w
|
|
2249 (define-key GOLD-map "x" 'tpu-save-all-buffers-kill-emacs) ; x
|
|
2250 (define-key GOLD-map "y" 'copy-region-as-kill) ; y
|
|
2251 (define-key GOLD-map "z" 'suspend-emacs) ; z
|
|
2252 (define-key GOLD-map "{" 'nil) ; {
|
|
2253 (define-key GOLD-map "|" 'split-window-horizontally) ; |
|
|
2254 (define-key GOLD-map "}" 'nil) ; }
|
|
2255 (define-key GOLD-map "~" 'exchange-point-and-mark) ; ~
|
|
2256 (define-key GOLD-map "\177" 'delete-window) ; <X]
|
|
2257
|
|
2258
|
|
2259 ;;;
|
|
2260 ;;; GOLD-CSI-map key definitions
|
|
2261 ;;;
|
|
2262 (define-key GOLD-CSI-map "A" 'tpu-move-to-beginning) ; up-arrow
|
|
2263 (define-key GOLD-CSI-map "B" 'tpu-move-to-end) ; down-arrow
|
|
2264 (define-key GOLD-CSI-map "C" 'end-of-line) ; right-arrow
|
|
2265 (define-key GOLD-CSI-map "D" 'beginning-of-line) ; left-arrow
|
|
2266
|
|
2267 (define-key GOLD-CSI-map "1~" 'nil) ; Find
|
|
2268 (define-key GOLD-CSI-map "2~" 'nil) ; Insert Here
|
|
2269 (define-key GOLD-CSI-map "3~" 'tpu-store-text) ; Remove
|
|
2270 (define-key GOLD-CSI-map "4~" 'tpu-unselect) ; Select
|
|
2271 (define-key GOLD-CSI-map "5~" 'tpu-previous-window) ; Prev Screen
|
|
2272 (define-key GOLD-CSI-map "6~" 'tpu-next-window) ; Next Screen
|
|
2273
|
|
2274 (define-key GOLD-CSI-map "11~" 'nil) ; F1
|
|
2275 (define-key GOLD-CSI-map "12~" 'nil) ; F2
|
|
2276 (define-key GOLD-CSI-map "13~" 'nil) ; F3
|
|
2277 (define-key GOLD-CSI-map "14~" 'nil) ; F4
|
|
2278 (define-key GOLD-CSI-map "16~" 'nil) ; F5
|
|
2279 (define-key GOLD-CSI-map "17~" 'nil) ; F6
|
|
2280 (define-key GOLD-CSI-map "18~" 'nil) ; F7
|
|
2281 (define-key GOLD-CSI-map "19~" 'nil) ; F8
|
|
2282 (define-key GOLD-CSI-map "20~" 'nil) ; F9
|
|
2283 (define-key GOLD-CSI-map "21~" 'nil) ; F10
|
|
2284 (define-key GOLD-CSI-map "23~" 'nil) ; F11
|
|
2285 (define-key GOLD-CSI-map "24~" 'nil) ; F12
|
|
2286 (define-key GOLD-CSI-map "25~" 'nil) ; F13
|
|
2287 (define-key GOLD-CSI-map "26~" 'nil) ; F14
|
|
2288 (define-key GOLD-CSI-map "28~" 'describe-bindings) ; HELP
|
|
2289 (define-key GOLD-CSI-map "29~" 'nil) ; DO
|
|
2290 (define-key GOLD-CSI-map "31~" 'tpu-drop-breadcrumb) ; F17
|
|
2291 (define-key GOLD-CSI-map "32~" 'nil) ; F18
|
|
2292 (define-key GOLD-CSI-map "33~" 'nil) ; F19
|
|
2293 (define-key GOLD-CSI-map "34~" 'nil) ; F20
|
|
2294
|
|
2295
|
|
2296 ;;;
|
|
2297 ;;; GOLD-SS3-map key definitions
|
|
2298 ;;;
|
|
2299 (define-key GOLD-SS3-map "A" 'tpu-move-to-beginning) ; up-arrow
|
|
2300 (define-key GOLD-SS3-map "B" 'tpu-move-to-end) ; down-arrow
|
|
2301 (define-key GOLD-SS3-map "C" 'end-of-line) ; right-arrow
|
|
2302 (define-key GOLD-SS3-map "D" 'beginning-of-line) ; left-arrow
|
|
2303
|
|
2304 (define-key GOLD-SS3-map "P" 'keyboard-quit) ; PF1
|
|
2305 (define-key GOLD-SS3-map "Q" 'help-for-help) ; PF2
|
|
2306 (define-key GOLD-SS3-map "R" 'tpu-search) ; PF3
|
|
2307 (define-key GOLD-SS3-map "S" 'tpu-undelete-lines) ; PF4
|
|
2308 (define-key GOLD-SS3-map "p" 'open-line) ; KP0
|
|
2309 (define-key GOLD-SS3-map "q" 'tpu-change-case) ; KP1
|
|
2310 (define-key GOLD-SS3-map "r" 'tpu-delete-to-eol) ; KP2
|
|
2311 (define-key GOLD-SS3-map "s" 'tpu-special-insert) ; KP3
|
|
2312 (define-key GOLD-SS3-map "t" 'tpu-move-to-end) ; KP4
|
|
2313 (define-key GOLD-SS3-map "u" 'tpu-move-to-beginning) ; KP5
|
|
2314 (define-key GOLD-SS3-map "v" 'tpu-paste) ; KP6
|
|
2315 (define-key GOLD-SS3-map "w" 'execute-extended-command) ; KP7
|
|
2316 (define-key GOLD-SS3-map "x" 'tpu-fill) ; KP8
|
|
2317 (define-key GOLD-SS3-map "y" 'tpu-replace) ; KP9
|
|
2318 (define-key GOLD-SS3-map "m" 'tpu-undelete-words) ; KP-
|
|
2319 (define-key GOLD-SS3-map "l" 'tpu-undelete-char) ; KP,
|
|
2320 (define-key GOLD-SS3-map "n" 'tpu-unselect) ; KP.
|
|
2321 (define-key GOLD-SS3-map "M" 'tpu-substitute) ; KPenter
|
|
2322
|
|
2323
|
|
2324 ;;;
|
|
2325 ;;; Repeat complex command map additions to make arrows work
|
|
2326 ;;;
|
|
2327 (cond ((boundp 'repeat-complex-command-map)
|
|
2328 (define-key repeat-complex-command-map "\e[A" 'previous-complex-command)
|
|
2329 (define-key repeat-complex-command-map "\e[B" 'next-complex-command)
|
|
2330 (define-key repeat-complex-command-map "\eOA" 'previous-complex-command)
|
|
2331 (define-key repeat-complex-command-map "\eOB" 'next-complex-command)))
|
|
2332
|
|
2333
|
|
2334 ;;;
|
134
|
2335 ;;; Minibuffer map additions to make KP_enter = RET
|
0
|
2336 ;;;
|
|
2337 (define-key minibuffer-local-map "\eOM" 'exit-minibuffer)
|
|
2338 (define-key minibuffer-local-ns-map "\eOM" 'exit-minibuffer)
|
|
2339 (define-key minibuffer-local-completion-map "\eOM" 'exit-minibuffer)
|
72
|
2340 (define-key minibuffer-local-must-match-map "\eOM" 'minibuffer-complete-and-exit)
|
0
|
2341 (and (boundp 'repeat-complex-command-map)
|
|
2342 (define-key repeat-complex-command-map "\eOM" 'exit-minibuffer))
|
|
2343
|
|
2344
|
|
2345 ;;;
|
72
|
2346 ;;; Minibuffer map additions to set search direction
|
0
|
2347 ;;;
|
72
|
2348 (define-key minibuffer-local-map "\eOt" 'tpu-search-forward-exit)
|
|
2349 (define-key minibuffer-local-map "\eOu" 'tpu-search-backward-exit)
|
0
|
2350
|
|
2351
|
|
2352 ;;;
|
72
|
2353 ;;; Functions to set, reset, and toggle the control key bindings
|
0
|
2354 ;;;
|
72
|
2355 (defun tpu-set-control-keys nil
|
|
2356 "Set control keys to TPU style functions."
|
|
2357 (define-key global-map "\C-\\" 'quoted-insert) ; ^\
|
|
2358 (define-key global-map "\C-a" 'tpu-toggle-overwrite-mode) ; ^A
|
|
2359 (define-key global-map "\C-b" 'repeat-complex-command) ; ^B
|
|
2360 (define-key global-map "\C-e" 'tpu-current-end-of-line) ; ^E
|
|
2361 (define-key global-map "\C-h" 'tpu-next-beginning-of-line) ; ^H (BS)
|
|
2362 (define-key global-map "\C-j" 'tpu-delete-previous-word) ; ^J (LF)
|
|
2363 (define-key global-map "\C-k" 'tpu-define-macro-key) ; ^K
|
|
2364 (define-key global-map "\C-l" 'tpu-insert-formfeed) ; ^L (FF)
|
|
2365 (define-key global-map "\C-r" 'recenter) ; ^R
|
|
2366 (define-key global-map "\C-u" 'tpu-delete-to-bol) ; ^U
|
|
2367 (define-key global-map "\C-v" 'tpu-quoted-insert) ; ^V
|
|
2368 (define-key global-map "\C-w" 'redraw-display) ; ^W
|
|
2369 (define-key global-map "\C-z" 'tpu-exit) ; ^Z
|
|
2370 (setq tpu-control-keys t))
|
|
2371
|
0
|
2372 (defun tpu-reset-control-keys (tpu-style)
|
|
2373 "Set control keys to TPU or emacs style functions."
|
|
2374 (let* ((tpu (and tpu-style (not tpu-control-keys)))
|
|
2375 (emacs (and (not tpu-style) tpu-control-keys))
|
|
2376 (doit (or tpu emacs)))
|
|
2377 (cond (doit
|
|
2378 (if emacs (setq tpu-global-map (copy-keymap global-map)))
|
|
2379 (let ((map (if tpu
|
|
2380 (copy-keymap tpu-global-map)
|
|
2381 (copy-keymap tpu-original-global-map))))
|
|
2382
|
|
2383 (define-key global-map "\C-\\" (lookup-key map "\C-\\")) ; ^\
|
|
2384 (define-key global-map "\C-a" (lookup-key map "\C-a")) ; ^A
|
|
2385 (define-key global-map "\C-b" (lookup-key map "\C-b")) ; ^B
|
|
2386 (define-key global-map "\C-e" (lookup-key map "\C-e")) ; ^E
|
|
2387 (define-key global-map "\C-h" (lookup-key map "\C-h")) ; ^H (BS)
|
|
2388 (define-key global-map "\C-j" (lookup-key map "\C-j")) ; ^J (LF)
|
|
2389 (define-key global-map "\C-k" (lookup-key map "\C-k")) ; ^K
|
|
2390 (define-key global-map "\C-l" (lookup-key map "\C-l")) ; ^L (FF)
|
|
2391 (define-key global-map "\C-r" (lookup-key map "\C-r")) ; ^R
|
|
2392 (define-key global-map "\C-u" (lookup-key map "\C-u")) ; ^U
|
|
2393 (define-key global-map "\C-v" (lookup-key map "\C-v")) ; ^V
|
|
2394 (define-key global-map "\C-w" (lookup-key map "\C-w")) ; ^W
|
|
2395 (define-key global-map "\C-z" (lookup-key map "\C-z")) ; ^Z
|
|
2396 (setq tpu-control-keys tpu-style))))))
|
|
2397
|
|
2398 (defun tpu-toggle-control-keys nil
|
|
2399 "Toggles control key bindings between TPU-edt and Emacs."
|
72
|
2400 (interactive)
|
134
|
2401 (setq zmacs-region-stays t)
|
0
|
2402 (tpu-reset-control-keys (not tpu-control-keys))
|
|
2403 (and (interactive-p)
|
|
2404 (message "Control keys function with %s bindings."
|
|
2405 (if tpu-control-keys "TPU-edt" "Emacs"))))
|
|
2406
|
|
2407
|
|
2408 ;;;
|
|
2409 ;;; Emacs version 19 minibuffer history support
|
|
2410 ;;;
|
|
2411 (defun tpu-next-history-element (n)
|
|
2412 "Insert the next element of the minibuffer history into the minibuffer."
|
72
|
2413 (interactive "p")
|
134
|
2414 (setq zmacs-region-stays t)
|
0
|
2415 (next-history-element n)
|
|
2416 (goto-char (point-max)))
|
|
2417
|
|
2418 (defun tpu-previous-history-element (n)
|
|
2419 "Insert the previous element of the minibuffer history into the minibuffer."
|
72
|
2420 (interactive "p")
|
134
|
2421 (setq zmacs-region-stays t)
|
0
|
2422 (previous-history-element n)
|
|
2423 (goto-char (point-max)))
|
|
2424
|
|
2425 (defun tpu-arrow-history nil
|
|
2426 "Modify minibuffer maps to use arrows for history recall."
|
72
|
2427 (interactive)
|
134
|
2428 (setq zmacs-region-stays t)
|
0
|
2429 (let ((loc (where-is-internal 'tpu-previous-line)) (cur nil))
|
|
2430 (while (setq cur (car loc))
|
|
2431 (define-key read-expression-map cur 'tpu-previous-history-element)
|
|
2432 (define-key minibuffer-local-map cur 'tpu-previous-history-element)
|
|
2433 (define-key minibuffer-local-ns-map cur 'tpu-previous-history-element)
|
72
|
2434 (define-key minibuffer-local-completion-map cur 'tpu-previous-history-element)
|
|
2435 (define-key minibuffer-local-must-match-map cur 'tpu-previous-history-element)
|
0
|
2436 (setq loc (cdr loc)))
|
|
2437
|
|
2438 (setq loc (where-is-internal 'tpu-next-line))
|
|
2439 (while (setq cur (car loc))
|
|
2440 (define-key read-expression-map cur 'tpu-next-history-element)
|
|
2441 (define-key minibuffer-local-map cur 'tpu-next-history-element)
|
|
2442 (define-key minibuffer-local-ns-map cur 'tpu-next-history-element)
|
72
|
2443 (define-key minibuffer-local-completion-map cur 'tpu-next-history-element)
|
|
2444 (define-key minibuffer-local-must-match-map cur 'tpu-next-history-element)
|
0
|
2445 (setq loc (cdr loc)))))
|
|
2446
|
|
2447
|
|
2448 ;;;
|
|
2449 ;;; Emacs version 19 X-windows key definition support
|
|
2450 ;;;
|
|
2451 (defun tpu-load-xkeys (file)
|
|
2452 "Load the TPU-edt X-windows key definitions FILE.
|
|
2453 If FILE is nil, try to load a default file. The default file names are
|
72
|
2454 `~/.tpu-lucid-keys' for Lucid emacs, and `~/.tpu-keys' for Emacs."
|
|
2455 (interactive "fX key definition file: ")
|
134
|
2456 (setq zmacs-region-stays t)
|
0
|
2457 (cond (file
|
|
2458 (setq file (expand-file-name file)))
|
|
2459 (tpu-xkeys-file
|
|
2460 (setq file (expand-file-name tpu-xkeys-file)))
|
72
|
2461 (tpu-lucid-emacs19-p
|
|
2462 (setq file (convert-standard-filename
|
|
2463 (expand-file-name "~/.tpu-lucid-keys"))))
|
|
2464 (tpu-emacs19-p
|
|
2465 (setq file (convert-standard-filename
|
|
2466 (expand-file-name "~/.tpu-keys")))
|
|
2467 (and (not (file-exists-p file))
|
|
2468 (file-exists-p
|
|
2469 (convert-standard-filename
|
|
2470 (expand-file-name "~/.tpu-gnu-keys")))
|
|
2471 (tpu-copy-keyfile
|
|
2472 (convert-standard-filename
|
|
2473 (expand-file-name "~/.tpu-gnu-keys")) file))))
|
0
|
2474 (cond ((file-readable-p file)
|
|
2475 (load-file file))
|
|
2476 (t
|
|
2477 (switch-to-buffer "*scratch*")
|
|
2478 (erase-buffer)
|
|
2479 (insert "
|
|
2480
|
|
2481 Ack!! You're running TPU-edt under X-windows without loading an
|
|
2482 X key definition file. To create a TPU-edt X key definition
|
|
2483 file, run the tpu-mapper.el program. It came with TPU-edt. It
|
|
2484 even includes directions on how to use it! Perhaps it's laying
|
|
2485 around here someplace. ")
|
|
2486 (let ((file "tpu-mapper.el")
|
|
2487 (found nil)
|
|
2488 (path nil)
|
|
2489 (search-list (append (list (expand-file-name ".")) load-path)))
|
|
2490 (while (and (not found) search-list)
|
|
2491 (setq path (concat (car search-list)
|
|
2492 (if (string-match "/$" (car search-list)) "" "/")
|
|
2493 file))
|
|
2494 (if (and (file-exists-p path) (not (file-directory-p path)))
|
|
2495 (setq found t))
|
|
2496 (setq search-list (cdr search-list)))
|
|
2497 (cond (found
|
|
2498 (insert (format
|
|
2499 "Ah yes, there it is, in \n\n %s \n\n" path))
|
|
2500 (if (tpu-y-or-n-p "Do you want to run it now? ")
|
|
2501 (load-file path)))
|
|
2502 (t
|
|
2503 (insert "Nope, I can't seem to find it. :-(\n\n")
|
|
2504 (sit-for 120)))))))
|
|
2505
|
72
|
2506 (defun tpu-copy-keyfile (oldname newname)
|
|
2507 "Copy the TPU-edt X key definitions file to the new default name."
|
|
2508 (interactive "fOld name: \nFNew name: ")
|
134
|
2509 (setq zmacs-region-stays t)
|
72
|
2510 (if (not (get-buffer "*TPU-Notice*")) (generate-new-buffer "*TPU-Notice*"))
|
|
2511 (set-buffer "*TPU-Notice*")
|
|
2512 (erase-buffer)
|
|
2513 (insert "
|
|
2514 NOTICE --
|
|
2515
|
|
2516 The default name of the TPU-edt key definition file has changed
|
|
2517 from `~/.tpu-gnu-keys' to `~/.tpu-keys'. With your permission,
|
|
2518 your key definitions will be copied to the new file. If you'll
|
|
2519 never use older versions of Emacs, you can remove the old file.
|
|
2520 If the copy fails, you'll be asked if you want to create a new
|
|
2521 key definitions file. Do you want to copy your key definition
|
|
2522 file now?
|
|
2523 ")
|
|
2524 (save-window-excursion
|
|
2525 (switch-to-buffer-other-window "*TPU-Notice*")
|
|
2526 (shrink-window-if-larger-than-buffer)
|
|
2527 (goto-char (point-min))
|
|
2528 (beep)
|
|
2529 (and (tpu-y-or-n-p "Copy key definitions to the new file now? ")
|
|
2530 (condition-case conditions
|
|
2531 (copy-file oldname newname)
|
|
2532 (error (message "Sorry, couldn't copy - %s" (cdr conditions)))))
|
|
2533 (kill-buffer "*TPU-Notice*")))
|
|
2534
|
0
|
2535
|
|
2536 ;;;
|
|
2537 ;;; Start and Stop TPU-edt
|
|
2538 ;;;
|
|
2539 ;;;###autoload
|
|
2540 (defun tpu-edt-on nil
|
|
2541 "Turn on TPU/edt emulation."
|
|
2542 (interactive)
|
|
2543 (cond
|
|
2544 ((not tpu-edt-mode)
|
|
2545 ;; we use picture-mode functions
|
|
2546 (require 'picture)
|
72
|
2547 (tpu-set-control-keys)
|
0
|
2548 (cond (tpu-emacs19-p
|
|
2549 (and window-system (tpu-load-xkeys nil))
|
|
2550 (tpu-arrow-history))
|
|
2551 (t
|
|
2552 ;; define ispell functions
|
72
|
2553 (autoload 'ispell-word "ispell" "Check spelling of word at or before point" t)
|
|
2554 (autoload 'ispell-complete-word "ispell" "Complete word at or before point" t)
|
0
|
2555 (autoload 'ispell-buffer "ispell" "Check spelling of entire buffer" t)
|
|
2556 (autoload 'ispell-region "ispell" "Check spelling of region" t)))
|
|
2557 (tpu-set-mode-line t)
|
|
2558 (tpu-advance-direction)
|
|
2559 ;; set page delimiter, display line truncation, and scrolling like TPU
|
|
2560 (setq-default page-delimiter "\f")
|
|
2561 (setq-default truncate-lines t)
|
|
2562 (setq scroll-step 1)
|
|
2563 (setq tpu-edt-mode t))))
|
|
2564
|
|
2565 (defun tpu-edt-off nil
|
|
2566 "Turn off TPU/edt emulation. Note that the keypad is left on."
|
|
2567 (interactive)
|
|
2568 (cond
|
|
2569 (tpu-edt-mode
|
|
2570 (tpu-reset-control-keys nil)
|
|
2571 (tpu-set-mode-line nil)
|
|
2572 (setq-default page-delimiter "^\f")
|
|
2573 (setq-default truncate-lines nil)
|
|
2574 (setq scroll-step 0)
|
72
|
2575 (setq global-map (copy-keymap tpu-original-global-map))
|
0
|
2576 (use-global-map global-map)
|
|
2577 (setq tpu-edt-mode nil))))
|
|
2578
|
|
2579 (provide 'tpu-edt)
|
|
2580
|
|
2581 ;;; tpu-edt.el ends here
|