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