Spelling fix.
[bpt/emacs.git] / lisp / emulation / tpu-edt.el
CommitLineData
522f9216 1;;; tpu-edt.el --- Emacs emulating TPU emulating EDT
09ac6f3b 2
ba318903 3;; Copyright (C) 1993-1995, 2000-2014 Free Software Foundation, Inc.
522f9216
RS
4
5;; Author: Rob Riepel <riepel@networking.stanford.edu>
6;; Maintainer: Rob Riepel <riepel@networking.stanford.edu>
8b8a7f01 7;; Version: 4.5
b7f66977 8;; Keywords: emulations
522f9216 9
75993094
RS
10;; This file is part of GNU Emacs.
11
ed0f493f 12;; GNU Emacs is free software: you can redistribute it and/or modify
75993094 13;; it under the terms of the GNU General Public License as published by
ed0f493f
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
75993094 16
522f9216 17;; GNU Emacs is distributed in the hope that it will be useful,
75993094
RS
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.
522f9216 21
75993094 22;; You should have received a copy of the GNU General Public License
ed0f493f 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
522f9216 24
48037971
RS
25;; TPU-edt is based on tpu.el by Jeff Kowalski and Bob Covey.
26
1a4cec85
RS
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
4408bb61 62;; TPU-edt, like its VMS cousin, works on VT-series terminals with DEC
1a4cec85
RS
63;; style keyboards. VT terminal emulators, including xterm with the
64;; appropriate key translations, work just fine too.
65
88a83b17
SM
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.
1a4cec85
RS
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
8b8a7f01
GM
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.
db7552d5 79;; The native Emacs command ^X^X (Control-X twice) exchanges the cursor
8b8a7f01
GM
80;; with the mark; this provides a handy way to find the location of the
81;; mark.
1a4cec85
RS
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
db7552d5 91;; Like TPU, Emacs uses multiple buffers. Some buffers are used to hold
44e97401 92;; files you are editing; other "internal" buffers are used for Emacs's own
1a4cec85
RS
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
db7552d5 114;; Do. Most of the commands available are Emacs commands. Some TPU
1a4cec85 115;; commands are available, they are: replace, exit, quit, include, and
db7552d5 116;; Get (unfortunately, "get" is an internal Emacs function, so we are
1a4cec85
RS
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
db7552d5 127;; pressed key. Gold-PF2 invokes the native Emacs help, with its
1a4cec85
RS
128;; zillions of options.
129
db7552d5 130;; Thanks to Emacs, TPU-edt has some extensions that may make your life
1a4cec85
RS
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
db7552d5 146;; Finally, as you edit, remember that all the power of Emacs is at
1a4cec85 147;; your disposal. It really is a fantastic tool. You may even want to
db7552d5
SM
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"
1a4cec85
RS
152
153
154;; %% Starting TPU-edt
155
156;; All you have to do to start TPU-edt, is turn it on. This can be
db7552d5 157;; done from the command line when running Emacs.
1a4cec85
RS
158
159;; prompt> emacs -f tpu-edt
160
db7552d5 161;; If you've already started Emacs, turn on TPU-edt using the tpu-edt
1a4cec85
RS
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
865fe16f
CY
166;; TPU-edt using the Emacs initialization file, .emacs. Simply add
167;; the following line to your init file:
1a4cec85
RS
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
db7552d5 176;; The following is a sample Emacs initialization file. It shows how to
1a4cec85
RS
177;; invoke TPU-edt, and how to customize it.
178
db7552d5 179;; ; .emacs - a sample Emacs initialization file
1a4cec85
RS
180
181;; ; Turn on TPU-edt
182;; (tpu-edt)
183
184;; ; Set scroll margins 10% (top) and 15% (bottom).
6719bba6 185;; (tpu-set-scroll-margins "10%" "15%")
1a4cec85
RS
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
db7552d5 199;; ; Emacs on terminals that use these codes for flow control (Xon/Xoff
44e97401 200;; ; flow control). These lines disable Emacs's use of these characters.
1a4cec85
RS
201;; (global-unset-key "\C-s")
202;; (global-unset-key "\C-q")
203
db7552d5 204;; ; The Emacs universal-argument function is very useful.
1a4cec85 205;; ; This line maps universal-argument to Gold-PF1.
86dd4d03 206;; (define-key tpu-gold-map [kp_f1] 'universal-argument) ; Gold-PF1
1a4cec85
RS
207
208;; ; Make KP7 move by paragraphs, instead of pages.
86dd4d03 209;; (define-key tpu-global-map [kf_7] 'tpu-paragraph) ; KP7
1a4cec85
RS
210
211;; ; Repeat the preceding mappings for X-windows.
212;; (cond
213;; (window-system
86dd4d03
SM
214;; (define-key tpu-global-map [kp_7] 'tpu-paragraph) ; KP7
215;; (define-key tpu-gold-map [kp_f1] 'universal-argument))) ; GOLD-PF1
1a4cec85
RS
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
db7552d5
SM
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
1a4cec85
RS
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
db7552d5 255;; There is also a TPU-edt interface to the native Emacs string replacement
1a4cec85
RS
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
db7552d5 261;; drawbacks. As a native Emacs command, it has a different interface
1a4cec85
RS
262;; than the emulated TPU commands. Also, it works only in the forward
263;; direction, regardless of the current TPU-edt direction.
264
a5717394
SM
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
09ac6f3b
RS
270;;; Code:
271
a5717394
SM
272;; we use picture-mode functions
273(require 'picture)
274
786b07e8
SE
275(defgroup tpu nil
276 "Emacs emulating TPU emulating EDT."
277 :prefix "tpu-"
278 :group 'emulations)
279
522f9216
RS
280
281;;;
48037971 282;;; Version Information
522f9216 283;;;
8b8a7f01 284(defconst tpu-version "4.5" "TPU-edt version number.")
522f9216
RS
285
286
287;;;
288;;; User Configurable Variables
289;;;
786b07e8 290(defcustom tpu-have-ispell t
d54d5371
GM
291 "Non-nil means `tpu-spell-check' uses `ispell-region' for spell checking.
292Otherwise, use `spell-region'."
786b07e8
SE
293 :type 'boolean
294 :group 'tpu)
bda0a7ad 295(make-obsolete-variable 'tpu-have-ispell "the `spell' package is obsolete."
d54d5371 296 "23.1")
786b07e8
SE
297
298(defcustom tpu-kill-buffers-silently nil
86dd4d03 299 "If non-nil, TPU-edt kills modified buffers without asking."
786b07e8
SE
300 :type 'boolean
301 :group 'tpu)
302
303(defcustom tpu-percent-scroll 75
86dd4d03 304 "Percentage of the screen to scroll for next/previous screen commands."
786b07e8
SE
305 :type 'integer
306 :group 'tpu)
307
308(defcustom tpu-pan-columns 16
86dd4d03 309 "Number of columns the tpu-pan functions scroll left or right."
786b07e8
SE
310 :type 'integer
311 :group 'tpu)
522f9216
RS
312
313
522f9216
RS
314;;;
315;;; Global Keymaps
316;;;
522f9216 317
e5bd0a28 318(define-obsolete-variable-alias 'GOLD-map 'tpu-gold-map "23.1")
86dd4d03 319(defvar tpu-gold-map
a5717394 320 (let ((map (make-keymap)))
86dd4d03
SM
321 ;; Previously we used escape sequences here. We now instead presume
322 ;; that term/*.el does its job to map the escape sequence to the right
323 ;; key-symbol.
324
cdf4e301
SM
325 (define-key map [up] 'tpu-move-to-beginning) ; up-arrow
326 (define-key map [down] 'tpu-move-to-end) ; down-arrow
327 (define-key map [right] 'end-of-line) ; right-arrow
328 (define-key map [left] 'beginning-of-line) ; left-arrow
329
330 ;; (define-key map [find] nil) ; Find
331 ;; (define-key map [insert] nil) ; Insert Here
332 (define-key map [delete] 'tpu-store-text) ; Remove
333 (define-key map [select] 'tpu-unselect) ; Select
334 (define-key map [prior] 'tpu-previous-window) ; Prev Screen
335 (define-key map [next] 'tpu-next-window) ; Next Screen
336
337 ;; (define-key map [f1] nil) ; F1
338 ;; (define-key map [f2] nil) ; F2
339 ;; (define-key map [f3] nil) ; F3
340 ;; (define-key map [f4] nil) ; F4
341 ;; (define-key map [f5] nil) ; F5
342 ;; (define-key map [f6] nil) ; F6
343 ;; (define-key map [f7] nil) ; F7
344 ;; (define-key map [f8] nil) ; F8
345 ;; (define-key map [f9] nil) ; F9
346 ;; (define-key map [f10] nil) ; F10
347 ;; (define-key map [f11] nil) ; F11
348 ;; (define-key map [f12] nil) ; F12
349 ;; (define-key map [f13] nil) ; F13
350 ;; (define-key map [f14] nil) ; F14
351 (define-key map [help] 'describe-bindings) ; HELP
352 ;; (define-key map [menu] nil) ; DO
353 (define-key map [f17] 'tpu-drop-breadcrumb) ; F17
354 ;; (define-key map [f18] nil) ; F18
355 ;; (define-key map [f19] nil) ; F19
356 ;; (define-key map [f20] nil) ; F20
357
358 (define-key map [kp-f1] 'keyboard-quit) ; PF1
359 (define-key map [kp-f2] 'help-for-help) ; PF2
360 (define-key map [kp-f3] 'tpu-search) ; PF3
361 (define-key map [kp-f4] 'tpu-undelete-lines) ; PF4
362 (define-key map [kp-0] 'open-line) ; KP0
363 (define-key map [kp-1] 'tpu-change-case) ; KP1
364 (define-key map [kp-2] 'tpu-delete-to-eol) ; KP2
365 (define-key map [kp-3] 'tpu-special-insert) ; KP3
366 (define-key map [kp-4] 'tpu-move-to-end) ; KP4
367 (define-key map [kp-5] 'tpu-move-to-beginning) ; KP5
368 (define-key map [kp-6] 'tpu-paste) ; KP6
369 (define-key map [kp-7] 'execute-extended-command) ; KP7
370 (define-key map [kp-8] 'tpu-fill) ; KP8
371 (define-key map [kp-9] 'tpu-replace) ; KP9
372 (define-key map [kp-subtract] 'tpu-undelete-words) ; KP-
373 (define-key map [kp-separator] 'tpu-undelete-char) ; KP,
374 (define-key map [kp-decimal] 'tpu-unselect) ; KP.
375 (define-key map [kp-enter] 'tpu-substitute) ; KPenter
86dd4d03 376
e208bb1b 377 ;;
cdf4e301
SM
378 (define-key map "\C-A" 'tpu-toggle-overwrite-mode) ; ^A
379 ;; (define-key map "\C-B" nil) ; ^B
380 ;; (define-key map "\C-C" nil) ; ^C
381 ;; (define-key map "\C-D" nil) ; ^D
382 ;; (define-key map "\C-E" nil) ; ^E
383 (define-key map "\C-F" 'set-visited-file-name) ; ^F
384 (define-key map "\C-g" 'keyboard-quit) ; safety first
385 (define-key map "\C-h" 'delete-other-windows) ; BS
386 (define-key map "\C-i" 'other-window) ; TAB
387 ;; (define-key map "\C-J" nil) ; ^J
388 (define-key map "\C-K" 'tpu-define-macro-key) ; ^K
389 (define-key map "\C-l" 'downcase-region) ; ^L
390 ;; (define-key map "\C-M" nil) ; ^M
391 ;; (define-key map "\C-N" nil) ; ^N
392 ;; (define-key map "\C-O" nil) ; ^O
393 ;; (define-key map "\C-P" nil) ; ^P
394 ;; (define-key map "\C-Q" nil) ; ^Q
395 ;; (define-key map "\C-R" nil) ; ^R
396 ;; (define-key map "\C-S" nil) ; ^S
397 (define-key map "\C-T" 'tpu-toggle-control-keys) ; ^T
398 (define-key map "\C-u" 'upcase-region) ; ^U
399 ;; (define-key map "\C-V" nil) ; ^V
400 (define-key map "\C-w" 'tpu-write-current-buffers) ; ^W
401 ;; (define-key map "\C-X" nil) ; ^X
402 ;; (define-key map "\C-Y" nil) ; ^Y
403 ;; (define-key map "\C-Z" nil) ; ^Z
404 (define-key map " " 'undo) ; SPC
405 ;; (define-key map "!" nil) ; !
406 ;; (define-key map "#" nil) ; #
407 (define-key map "$" 'tpu-add-at-eol) ; $
408 (define-key map "%" 'tpu-goto-percent) ; %
409 ;; (define-key map "&" nil) ; &
410 ;; (define-key map "(" nil) ; (
411 ;; (define-key map ")" nil) ; )
412 (define-key map "*" 'tpu-toggle-regexp) ; *
413 ;; (define-key map "+" nil) ; +
414 (define-key map "," 'tpu-goto-breadcrumb) ; ,
415 (define-key map "-" 'negative-argument) ; -
416 (define-key map "." 'tpu-drop-breadcrumb) ; .
417 (define-key map "/" 'tpu-emacs-replace) ; /
418 (define-key map "0" 'digit-argument) ; 0
419 (define-key map "1" 'digit-argument) ; 1
420 (define-key map "2" 'digit-argument) ; 2
421 (define-key map "3" 'digit-argument) ; 3
422 (define-key map "4" 'digit-argument) ; 4
423 (define-key map "5" 'digit-argument) ; 5
424 (define-key map "6" 'digit-argument) ; 6
425 (define-key map "7" 'digit-argument) ; 7
426 (define-key map "8" 'digit-argument) ; 8
427 (define-key map "9" 'digit-argument) ; 9
428 ;; (define-key map ":" nil) ; :
429 (define-key map ";" 'tpu-trim-line-ends) ; ;
430 ;; (define-key map "<" nil) ; <
431 ;; (define-key map "=" nil) ; =
432 ;; (define-key map ">" nil) ; >
433 (define-key map "?" 'tpu-spell-check) ; ?
434 ;; (define-key map "A" 'tpu-toggle-newline-and-indent) ; A
435 ;; (define-key map "B" 'tpu-next-buffer) ; B
436 ;; (define-key map "C" 'repeat-complex-command) ; C
437 ;; (define-key map "D" 'shell-command) ; D
438 ;; (define-key map "E" 'tpu-exit) ; E
439 ;; (define-key map "F" 'tpu-cursor-free-mode) ; F
440 ;; (define-key map "G" 'tpu-get) ; G
441 ;; (define-key map "H" nil) ; H
442 ;; (define-key map "I" 'tpu-include) ; I
443 ;; (define-key map "K" 'tpu-kill-buffer) ; K
444 (define-key map "L" 'tpu-what-line) ; L
445 ;; (define-key map "M" 'buffer-menu) ; M
446 ;; (define-key map "N" 'tpu-next-file-buffer) ; N
447 ;; (define-key map "O" 'occur) ; O
448 (define-key map "P" 'lpr-buffer) ; P
449 ;; (define-key map "Q" 'tpu-quit) ; Q
450 ;; (define-key map "R" 'tpu-toggle-rectangle) ; R
451 ;; (define-key map "S" 'replace) ; S
452 ;; (define-key map "T" 'tpu-line-to-top-of-window) ; T
453 ;; (define-key map "U" 'undo) ; U
454 ;; (define-key map "V" 'tpu-version) ; V
455 ;; (define-key map "W" 'save-buffer) ; W
456 ;; (define-key map "X" 'tpu-save-all-buffers-kill-emacs) ; X
457 ;; (define-key map "Y" 'copy-region-as-kill) ; Y
458 ;; (define-key map "Z" 'suspend-emacs) ; Z
459 (define-key map "[" 'blink-matching-open) ; [
460 ;; (define-key map "\\" nil) ; \
461 (define-key map "]" 'blink-matching-open) ; ]
462 (define-key map "^" 'tpu-add-at-bol) ; ^
2d197ffb 463 (define-key map "_" 'split-window-below) ; -
cdf4e301
SM
464 (define-key map "`" 'what-line) ; `
465 (define-key map "a" 'tpu-toggle-newline-and-indent) ; a
466 (define-key map "b" 'tpu-next-buffer) ; b
467 (define-key map "c" 'repeat-complex-command) ; c
468 (define-key map "d" 'shell-command) ; d
469 (define-key map "e" 'tpu-exit) ; e
470 (define-key map "f" 'tpu-cursor-free-mode) ; f
471 (define-key map "g" 'tpu-get) ; g
472 ;; (define-key map "h" nil) ; h
473 (define-key map "i" 'tpu-include) ; i
474 (define-key map "k" 'tpu-kill-buffer) ; k
475 (define-key map "l" 'goto-line) ; l
476 (define-key map "m" 'buffer-menu) ; m
477 (define-key map "n" 'tpu-next-file-buffer) ; n
478 (define-key map "o" 'occur) ; o
479 (define-key map "p" 'lpr-region) ; p
480 (define-key map "q" 'tpu-quit) ; q
481 (define-key map "r" 'tpu-toggle-rectangle) ; r
482 (define-key map "s" 'replace) ; s
483 (define-key map "t" 'tpu-line-to-top-of-window) ; t
484 (define-key map "u" 'undo) ; u
485 (define-key map "v" 'tpu-version) ; v
486 (define-key map "w" 'save-buffer) ; w
a5717394 487 (define-key map "x" 'tpu-save-all-buffers-kill-emacs) ; x
cdf4e301
SM
488 (define-key map "y" 'copy-region-as-kill) ; y
489 (define-key map "z" 'suspend-emacs) ; z
490 ;; (define-key map "{" nil) ; {
2d197ffb 491 (define-key map "|" 'split-window-right) ; |
cdf4e301
SM
492 ;; (define-key map "}" nil) ; }
493 (define-key map "~" 'exchange-point-and-mark) ; ~
494 (define-key map "\177" 'delete-window) ; <X]
a5717394 495 map)
f7eee6c6 496 "Maps the function keys on the VT100 keyboard preceded by PF1.
522f9216
RS
497GOLD is the ASCII 7-bit escape sequence <ESC>OP.")
498
86dd4d03 499(defvar tpu-global-map
a5717394 500 (let ((map (make-sparse-keymap)))
86dd4d03
SM
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.
cdf4e301
SM
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
86dd4d03
SM
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.
cdf4e301 535 (define-key map [kp-f1] tpu-gold-map) ; GOLD map
e208bb1b 536 ;;
cdf4e301
SM
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
86dd4d03
SM
555 (define-key map [kp-subtract] 'tpu-delete-current-word) ; KP-
556 (define-key map [kp-separator] 'tpu-delete-current-char) ; KP,
cdf4e301
SM
557 (define-key map [kp-decimal] 'tpu-select) ; KP.
558 (define-key map [kp-enter] 'newline) ; KPenter
522f9216 559
ce8fd9f3
RS
560 map)
561 "TPU-edt global keymap.")
522f9216 562
522f9216
RS
563
564;;;
565;;; Global Variables
566;;;
522f9216
RS
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
09ac6f3b
RS
578(defvar tpu-searching-forward t
579 "If non-nil, TPU-edt is searching in the forward direction.")
522f9216
RS
580(defvar tpu-search-last-string ""
581 "Last text searched for by the TPU-edt search commands.")
8b8a7f01 582(defvar tpu-search-overlay (make-overlay 1 1)
6719bba6
RS
583 "Search highlight overlay.")
584(overlay-put tpu-search-overlay 'face 'bold)
585
8b8a7f01 586(defvar tpu-replace-overlay (make-overlay 1 1)
6719bba6
RS
587 "Replace highlight overlay.")
588(overlay-put tpu-replace-overlay 'face 'highlight)
522f9216
RS
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.")
a0f5a25f 598(defvar tpu-control-keys nil
522f9216 599 "If non-nil, control keys are set to perform TPU functions.")
09ac6f3b
RS
600(defvar tpu-xkeys-file nil
601 "File containing TPU-edt X key map.")
522f9216
RS
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;;;
8b8a7f01 639;;; o Mark state.
522f9216
RS
640;;; o Direction of motion.
641;;; o Active rectangle mode.
8b8a7f01 642;;; o Active auto indent mode.
522f9216 643;;;
522f9216
RS
644(defvar tpu-original-mm-alist minor-mode-alist)
645
8b8a7f01 646(defvar tpu-mark-flag "")
522f9216
RS
647(make-variable-buffer-local 'tpu-mark-flag)
648
649(defun tpu-set-mode-line (for-tpu)
8b8a7f01 650 "Set ``minor-mode-alist'' for TPU-edt, or reset it to default Emacs."
a5717394
SM
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))))))
522f9216
RS
659
660(defun tpu-update-mode-line nil
661 "Make sure mode-line in the current buffer reflects all changes."
8b8a7f01 662 (setq tpu-mark-flag (if transient-mark-mode "" (if (tpu-mark) " @" " ")))
f24cd32e 663 (force-mode-line-update))
522f9216 664
86dd4d03 665(cond ((featurep 'xemacs)
522f9216 666 (add-hook 'zmacs-deactivate-region-hook 'tpu-update-mode-line)
691a38f0 667 (add-hook 'zmacs-activate-region-hook 'tpu-update-mode-line))
f24cd32e 668 (t
691a38f0
RS
669 (add-hook 'activate-mark-hook 'tpu-update-mode-line)
670 (add-hook 'deactivate-mark-hook 'tpu-update-mode-line)))
522f9216
RS
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.
a5717394 688 (setq tpu-match-beginning-mark (copy-marker (match-beginning 0) t))
522f9216
RS
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
db7552d5 697 "Return the location of the last match beginning."
a5717394 698 (marker-position tpu-match-beginning-mark))
522f9216
RS
699
700(defun tpu-match-end nil
db7552d5 701 "Return the location of the last match end."
522f9216
RS
702 (marker-position tpu-match-end-mark))
703
704(defun tpu-check-match nil
db7552d5 705 "Return t if point is between tpu-match markers.
522f9216
RS
706Otherwise 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))
a5717394 714 (>= (point) (marker-position tpu-match-beginning-mark))
522f9216
RS
715 (or
716 (< (point) (marker-position tpu-match-end-mark))
a5717394 717 (and (= (marker-position tpu-match-beginning-mark)
522f9216
RS
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)
a5717394
SM
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))))
522f9216
RS
732
733
734;;;
735;;; Utilities
736;;;
f24cd32e 737
522f9216
RS
738(defun tpu-mark nil
739 "TPU-edt version of the mark function.
740Return the appropriate value of the mark for the current
691a38f0 741version of Emacs."
86dd4d03 742 (cond ((featurep 'xemacs) (mark (not zmacs-regions)))
8a26ec4e 743 (t (and mark-active (mark (not transient-mark-mode))))))
522f9216
RS
744
745(defun tpu-set-mark (pos)
bf9ac69b 746 "TPU-edt version of the `set-mark' function.
f7eee6c6 747Sets the mark at POS and activates the region according to the
691a38f0 748current version of Emacs."
522f9216 749 (set-mark pos)
a445370f 750 (when (featurep 'xemacs) (when pos (zmacs-activate-region))))
522f9216
RS
751
752(defun tpu-string-prompt (prompt history-symbol)
753 "Read a string with PROMPT."
f24cd32e 754 (read-from-minibuffer prompt nil nil nil history-symbol))
522f9216 755
09ac6f3b
RS
756(defvar tpu-last-answer nil "Most recent response to tpu-y-or-n-p.")
757
522f9216
RS
758(defun tpu-y-or-n-p (prompt &optional not-yes)
759 "Prompt for a y or n answer with positive default.
760Optional second argument NOT-YES changes default to negative.
691a38f0 761Like Emacs `y-or-n-p', but also accepts space as y and DEL as n."
86fec582 762 (message "%s[%s]" prompt (if not-yes "n" "y"))
522f9216
RS
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)
86fec582
KH
774 (message "Please answer y or n. %s[%s]"
775 prompt (if not-yes "n" "y")))))))
522f9216
RS
776 tpu-last-answer)
777
778(defun tpu-local-set-key (key func)
779 "Replace a key in the TPU-edt local key map.
780Create 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
036f2966 788(defun tpu-current-line ()
522f9216
RS
789 "Return the vertical position of point in the selected window.
790Top line is 0. Counts each text line only once, even if it wraps."
036f2966
SM
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)))))
522f9216
RS
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)
db7552d5 810 "Return to a breadcrumb set with drop-breadcrumb."
522f9216
RS
811 (interactive "p")
812 (cond ((get tpu-breadcrumb-plist num)
813 (switch-to-buffer (car (get tpu-breadcrumb-plist num)))
d54d5371 814 (goto-char (cadr (get tpu-breadcrumb-plist num)))
522f9216
RS
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.
825Accepts 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.
853With 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)
09ac6f3b
RS
864 (message
865 "TPU-edt version %s by Rob Riepel (riepel@networking.stanford.edu)"
866 tpu-version))
522f9216
RS
867
868(defun tpu-reset-screen-size (height width)
db7552d5 869 "Set the screen size."
522f9216 870 (interactive "nnew screen height: \nnnew screen width: ")
04b7de79
PJ
871 (set-frame-height (selected-frame) height)
872 (set-frame-width (selected-frame) width))
522f9216
RS
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)
32226619 886 (and (called-interactively-p 'interactive)
522f9216
RS
887 (message "Carriage return inserts a newline%s"
888 (if tpu-newline-and-indent-p " and indents." "."))))
889
890(defun tpu-spell-check nil
db7552d5
SM
891 "Check the spelling of the region, or of the entire buffer,
892if no region is selected."
522f9216 893 (interactive)
d54d5371
GM
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))))
522f9216
RS
902
903(defun tpu-toggle-overwrite-mode nil
db7552d5 904 "Switch in and out of overwrite mode."
522f9216
RS
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)
db7552d5 915 "Insert a character or control code according to its ASCII decimal value."
522f9216
RS
916 (interactive "P")
917 (if overwrite-mode (delete-char 1))
d54d5371 918 (insert (or num 0)))
522f9216 919
6efe3c8e
RS
920(defun tpu-quoted-insert (num)
921 "Read next input character and insert it.
922This 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
522f9216
RS
928
929;;;
930;;; TPU line-mode commands
931;;;
932(defun tpu-include (file)
db7552d5 933 "TPU-like include file."
522f9216 934 (interactive "fInclude file: ")
0ca03bba
RS
935 (insert-file-contents file)
936 (message ""))
522f9216
RS
937
938(defun tpu-get (file)
db7552d5 939 "TPU-like get file."
522f9216 940 (interactive "FFile to get: ")
8b8a7f01 941 (find-file file find-file-wildcards))
522f9216
RS
942
943(defun tpu-what-line nil
db7552d5
SM
944 "Tell what line the point is on,
945and the total number of lines in the buffer."
522f9216
RS
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)))
cba04ae9
PJ
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))))
522f9216
RS
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
a5717394 981(define-minor-mode tpu-edt-mode
e1ac4066
GM
982 "Toggle TPU/edt emulation on or off.
983With a prefix argument ARG, enable the mode if ARG is positive,
984and disable it otherwise. If called from Lisp, enable the mode
985if ARG is omitted or nil."
ed8be7ff 986 :global t :group 'tpu
a5717394
SM
987 (if tpu-edt-mode (tpu-edt-on) (tpu-edt-off)))
988
989(defalias 'TPU-EDT-MODE 'tpu-edt-mode)
522f9216
RS
990
991;;;###autoload
744da4d8
PJ
992(defalias 'tpu-edt 'tpu-edt-on)
993(defalias 'TPU-EDT 'tpu-edt-on)
522f9216 994
744da4d8
PJ
995;; Note: The following functions have no `tpu-' prefix. This is unavoidable.
996;; The real TPU/edt editor has interactive commands with these names,
997;; so tpu-edt.el users expect things like M-x exit RET and M-x help RET
998;; to work. Therefore it really is necessary to define these functions,
999;; even in cases where they redefine existing Emacs functions.
522f9216 1000
744da4d8
PJ
1001(defalias 'exit 'tpu-exit)
1002(defalias 'EXIT 'tpu-exit)
522f9216 1003
744da4d8
PJ
1004(defalias 'Get 'tpu-get)
1005(defalias 'GET 'tpu-get)
522f9216 1006
744da4d8
PJ
1007(defalias 'include 'tpu-include)
1008(defalias 'INCLUDE 'tpu-include)
522f9216 1009
744da4d8
PJ
1010(defalias 'quit 'tpu-quit)
1011(defalias 'QUIT 'tpu-quit)
522f9216 1012
744da4d8
PJ
1013(defalias 'spell 'tpu-spell-check)
1014(defalias 'SPELL 'tpu-spell-check)
522f9216 1015
744da4d8
PJ
1016(defalias 'what\ line 'tpu-what-line)
1017(defalias 'WHAT\ LINE 'tpu-what-line)
522f9216 1018
744da4d8
PJ
1019(defalias 'replace 'tpu-lm-replace)
1020(defalias 'REPLACE 'tpu-lm-replace)
522f9216 1021
744da4d8
PJ
1022(defalias 'help 'tpu-help)
1023(defalias 'HELP 'tpu-help)
1024
1025(defalias 'set\ cursor\ free 'tpu-set-cursor-free)
1026(defalias 'SET\ CURSOR\ FREE 'tpu-set-cursor-free)
cba04ae9 1027
744da4d8
PJ
1028(defalias 'set\ cursor\ bound 'tpu-set-cursor-bound)
1029(defalias 'SET\ CURSOR\ BOUND 'tpu-set-cursor-bound)
6efe3c8e 1030
744da4d8
PJ
1031(defalias 'set\ scroll\ margins 'tpu-set-scroll-margins)
1032(defalias 'SET\ SCROLL\ MARGINS 'tpu-set-scroll-margins)
6efe3c8e 1033
744da4d8
PJ
1034;; Real TPU error messages end in periods.
1035;; Define this to avoid openly flouting Emacs coding standards.
1036(defalias 'tpu-error 'error)
6efe3c8e
RS
1037
1038
522f9216
RS
1039;;;
1040;;; Help
1041;;;
d55f9265 1042(defvar tpu-help-keypad-map "\f
522f9216
RS
1043 _______________________ _______________________________
1044 | HELP | Do | | | | | |
1045 |KeyDefs| | | | | | |
1046 |_______|_______________| |_______|_______|_______|_______|
1047 _______________________ _______________________________
1048 | Find |Insert |Remove | | Gold | HELP |FndNxt | Del L |
1049 | | |Sto Tex| | key |E-Help | Find |Undel L|
1050 |_______|_______|_______| |_______|_______|_______|_______|
1051 |Select |Pre Scr|Nex Scr| | Page | Sect |Append | Del W |
1052 | Reset |Pre Win|Nex Win| | Do | Fill |Replace|Undel W|
1053 |_______|_______|_______| |_______|_______|_______|_______|
1054 |Move up| |Forward|Reverse|Remove | Del C |
1055 | Top | |Bottom | Top |Insert |Undel C|
1056 _______|_______|_______ |_______|_______|_______|_______|
1057 |Mov Lef|Mov Dow|Mov Rig| | Word | EOL | Char | |
1058 |StaOfLi|Bottom |EndOfLi| |ChngCas|Del EOL|SpecIns| Enter |
1059 |_______|_______|_______| |_______|_______|_______| |
1060 | Line |Select | Subs |
1061 | Open Line | Reset | |
1062 |_______________|_______|_______|
1063")
1064
d55f9265 1065(defvar tpu-help-text "
522f9216
RS
1066\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
1067
1068 Control Characters
1069
1070 ^A toggle insert and overwrite
1071 ^B recall
1072 ^E end of line
1073
1074 ^G Cancel current operation
1075 ^H beginning of line
1076 ^J delete previous word
1077
1078 ^K learn
1079 ^L insert page break
1080 ^R remember (during learn), re-center
1081
1082 ^U delete to beginning of line
1083 ^V quote
1084 ^W refresh
1085
1086 ^Z exit
1087 ^X^X exchange point and mark - useful for checking region boundaries
1088
1089\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
1090 Gold-<key> Functions
1091
1092 B Next Buffer - display the next buffer (all buffers)
1093 C Recall - edit and possibly repeat previous commands
1094 E Exit - save current buffer and ask about others
522f9216 1095 G Get - load a file into a new edit buffer
1a4cec85 1096
522f9216
RS
1097 I Include - include a file in this buffer
1098 K Kill Buffer - abandon edits and delete buffer
522f9216
RS
1099 M Buffer Menu - display a list of all buffers
1100 N Next File Buffer - display next buffer containing a file
522f9216 1101
1a4cec85 1102 O Occur - show following lines containing REGEXP
522f9216
RS
1103 Q Quit - exit without saving anything
1104 R Toggle rectangular mode for remove and insert
1105 S Search and substitute - line mode REPLACE command
1106
e208bb1b 1107 ^T Toggle control key bindings between TPU and Emacs
522f9216
RS
1108 U Undo - undo the last edit
1109 W Write - save current buffer
1110 X Exit - save all modified buffers and exit
1111
1a4cec85
RS
1112\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
1113
1114 More extensive documentation on TPU-edt can be found in the `Commentary'
1115 section of tpu-edt.el. This section can be accessed through the standard
1116 Emacs help facility using the `p' option. Once you exit TPU-edt Help, one
1117 of the following key sequences is sure to get you there.
1118
1119 ^h p if you're not yet using TPU-edt
1120 Gold-PF2 p if you're using TPU-edt
1121
1122 Alternatively, fire up Emacs help from the command prompt, with
1123
1124 M-x help-for-help <CR> p <CR>
1125
1126 Where `M-x' might be any of `Gold-KP7', 'Do', or 'ESC-x'.
1127
1128 When you successfully invoke this part of the Emacs help facility, you
1129 will see a buffer named `*Finder*' listing a number of topics. Look for
1130 tpu-edt under `emulations'.
1131
522f9216
RS
1132\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
1133
1134 *** No more help, use P to view previous screen")
1135
1136(defvar tpu-help-enter (format "%s" "\eOM")) ; tpu-help enter key symbol
1137(defvar tpu-help-return (format "%s" "\r")) ; tpu-help enter key symbol
0b7f4d1b
RS
1138(defvar tpu-help-N "N") ; tpu-help "N" symbol
1139(defvar tpu-help-n "n") ; tpu-help "n" symbol
1140(defvar tpu-help-P "P") ; tpu-help "P" symbol
1141(defvar tpu-help-p "p") ; tpu-help "p" symbol
522f9216
RS
1142
1143(defun tpu-help nil
1144 "Display TPU-edt help."
1145 (interactive)
1146 ;; Save current window configuration
1147 (save-window-excursion
1148 ;; Create and fill help buffer if necessary
1149 (if (not (get-buffer "*TPU-edt Help*"))
1150 (progn (generate-new-buffer "*TPU-edt Help*")
1151 (switch-to-buffer "*TPU-edt Help*")
1152 (insert tpu-help-keypad-map)
1153 (insert tpu-help-text)
1154 (setq buffer-read-only t)))
1155
1156 ;; Display the help buffer
1157 (switch-to-buffer "*TPU-edt Help*")
1158 (delete-other-windows)
1159 (tpu-move-to-beginning)
1160 (forward-line 1)
1161 (tpu-line-to-top-of-window)
1162
1163 ;; Prompt for keys to describe, based on screen state (split/not split)
0b7f4d1b
RS
1164 (let ((key nil) (fkey nil) (split nil))
1165 (while (not (equal tpu-help-return fkey))
522f9216
RS
1166 (if split
1167 (setq key
1168 (read-key-sequence
1169 "Press the key you want help on (RET=exit, ENTER=redisplay, N=next, P=prev): "))
1170 (setq key
1171 (read-key-sequence
1172 "Press the key you want help on (RET to exit, N next screen, P prev screen): ")))
1173
1174 ;; Process the read key
1175 ;;
1176 ;; ENTER - Display just the help window
1177 ;; N or n - Next help or describe-key screen
1178 ;; P or p - Previous help or describe-key screen
1179 ;; RETURN - Exit from TPU-help
1180 ;; default - describe the key
1181 ;;
0b7f4d1b
RS
1182 (setq fkey (format "%s" key))
1183 (cond ((equal tpu-help-enter fkey)
522f9216
RS
1184 (setq split nil)
1185 (delete-other-windows))
0b7f4d1b 1186 ((or (equal tpu-help-N fkey) (equal tpu-help-n fkey))
522f9216
RS
1187 (cond (split
1188 (condition-case nil
1189 (scroll-other-window 8)
1190 (error nil)))
1191 (t
1192 (forward-page)
1193 (forward-line 1)
1194 (tpu-line-to-top-of-window))))
0b7f4d1b 1195 ((or (equal tpu-help-P fkey) (equal tpu-help-p fkey))
522f9216
RS
1196 (cond (split
1197 (condition-case nil
1198 (scroll-other-window -8)
1199 (error nil)))
1200 (t
d49af51c 1201 (forward-line -1)
a0f5a25f 1202 (backward-page)
522f9216
RS
1203 (forward-line 1)
1204 (tpu-line-to-top-of-window))))
0b7f4d1b 1205 ((not (equal tpu-help-return fkey))
522f9216
RS
1206 (setq split t)
1207 (describe-key key)
1208 ;; If the key is undefined, leave the
1209 ;; message in the mini-buffer for 3 seconds
1210 (if (not (key-binding key)) (sit-for 3))))))))
1211
1212
1213;;;
1214;;; Auto-insert
1215;;;
1216(defun tpu-insert-escape nil
db7552d5 1217 "Insert an escape character, and so becomes the escape-key alias."
522f9216
RS
1218 (interactive)
1219 (insert "\e"))
1220
1221(defun tpu-insert-formfeed nil
db7552d5 1222 "Insert a formfeed character."
522f9216
RS
1223 (interactive)
1224 (insert "\C-L"))
1225
1226
1227;;;
1228;;; Define key
1229;;;
09ac6f3b
RS
1230(defvar tpu-saved-control-r nil "Saved value of Control-r.")
1231
522f9216 1232(defun tpu-end-define-macro-key (key)
db7552d5 1233 "End the current macro definition."
522f9216
RS
1234 (interactive "kPress the key you want to use to do what was just learned: ")
1235 (end-kbd-macro nil)
1236 (global-set-key key last-kbd-macro)
1237 (global-set-key "\C-r" tpu-saved-control-r))
1238
1239(defun tpu-define-macro-key nil
1240 "Bind a set of keystrokes to a single key, or key combination."
1241 (interactive)
1242 (setq tpu-saved-control-r (global-key-binding "\C-r"))
1243 (global-set-key "\C-r" 'tpu-end-define-macro-key)
1244 (start-kbd-macro nil))
1245
1246
1247;;;
1248;;; Buffers and Windows
1249;;;
1250(defun tpu-kill-buffer nil
d36b11e2
JB
1251 "Kill the current buffer.
1252If `tpu-kill-buffers-silently' is non-nil,
1253kill modified buffers without asking."
522f9216
RS
1254 (interactive)
1255 (if tpu-kill-buffers-silently (set-buffer-modified-p nil))
1256 (kill-buffer (current-buffer)))
1257
1258(defun tpu-save-all-buffers-kill-emacs nil
e208bb1b 1259 "Save all buffers and exit Emacs."
522f9216 1260 (interactive)
202bf0be
RS
1261 (let ((delete-old-versions t))
1262 (save-buffers-kill-emacs t)))
522f9216
RS
1263
1264(defun tpu-write-current-buffers nil
1265 "Save all modified buffers without exiting."
1266 (interactive)
1267 (save-some-buffers t))
1268
1269(defun tpu-next-buffer nil
1270 "Go to next buffer in ring."
1271 (interactive)
1272 (switch-to-buffer (car (reverse (buffer-list)))))
1273
1274(defun tpu-next-file-buffer nil
48037971 1275 "Go to next buffer in ring that is visiting a file or directory."
522f9216 1276 (interactive)
48037971
RS
1277 (let ((list (tpu-make-file-buffer-list (buffer-list))))
1278 (setq list (delq (current-buffer) list))
cba04ae9 1279 (if (not list) (tpu-error "No other buffers."))
48037971
RS
1280 (switch-to-buffer (car (reverse list)))))
1281
1282(defun tpu-make-file-buffer-list (buffer-list)
db7552d5 1283 "Return names from BUFFER-LIST excluding those beginning with a space or star."
4f91a816
SM
1284 (delq nil (mapcar (lambda (b)
1285 (if (or (= (aref (buffer-name b) 0) ?\s)
1286 (= (aref (buffer-name b) 0) ?*)) nil b))
48037971 1287 buffer-list)))
522f9216
RS
1288
1289(defun tpu-next-window nil
1290 "Move to the next window."
1291 (interactive)
1292 (if (one-window-p) (message "There is only one window on screen.")
1293 (other-window 1)))
1294
1295(defun tpu-previous-window nil
1296 "Move to the previous window."
1297 (interactive)
1298 (if (one-window-p) (message "There is only one window on screen.")
1299 (select-window (previous-window))))
1300
1301
1302;;;
1303;;; Search
1304;;;
1305(defun tpu-toggle-regexp nil
db7552d5 1306 "Switch in and out of regular expression search and replace mode."
522f9216
RS
1307 (interactive)
1308 (setq tpu-regexp-p (not tpu-regexp-p))
1309 (tpu-set-search)
32226619 1310 (and (called-interactively-p 'interactive)
522f9216
RS
1311 (message "Regular expression search and substitute %sabled."
1312 (if tpu-regexp-p "en" "dis"))))
1313
1314(defun tpu-regexp-prompt (prompt)
1315 "Read a string, adding 'RE' to the prompt if tpu-regexp-p is set."
1316 (let ((re-prompt (concat (if tpu-regexp-p "RE ") prompt)))
f24cd32e 1317 (read-from-minibuffer re-prompt nil nil nil 'tpu-regexp-prompt-hist)))
522f9216 1318
6719bba6
RS
1319(defun tpu-search-highlight nil
1320 (if (tpu-check-match)
1321 (move-overlay tpu-search-overlay
1322 (tpu-match-beginning) (tpu-match-end) (current-buffer))
d49af51c
GM
1323 (unless (equal (overlay-start tpu-search-overlay)
1324 (overlay-end tpu-search-overlay))
8b8a7f01 1325 (move-overlay tpu-search-overlay 1 1 (current-buffer)))))
6719bba6 1326
522f9216
RS
1327(defun tpu-search nil
1328 "Search for a string or regular expression.
1329The search is performed in the current direction."
1330 (interactive)
1331 (tpu-set-search)
1332 (tpu-search-internal ""))
1333
1334(defun tpu-search-forward nil
1335 "Search for a string or regular expression.
1336The search is begins in the forward direction."
1337 (interactive)
09ac6f3b 1338 (setq tpu-searching-forward t)
522f9216
RS
1339 (tpu-set-search t)
1340 (tpu-search-internal ""))
1341
1342(defun tpu-search-reverse nil
1343 "Search for a string or regular expression.
1344The search is begins in the reverse direction."
1345 (interactive)
09ac6f3b 1346 (setq tpu-searching-forward nil)
522f9216
RS
1347 (tpu-set-search t)
1348 (tpu-search-internal ""))
1349
1350(defun tpu-search-again nil
1351 "Search for the same string or regular expression as last time.
1352The search is performed in the current direction."
1353 (interactive)
1354 (tpu-search-internal tpu-search-last-string))
1355
1356;; tpu-set-search defines the search functions used by the TPU-edt internal
1357;; search function. It should be called whenever the direction changes, or
1358;; the regular expression mode is turned on or off. It can also be called
1359;; to ensure that the next search will be in the current direction. It is
1360;; called from:
1361
48037971
RS
1362;; tpu-advance tpu-backup
1363;; tpu-toggle-regexp tpu-toggle-search-direction (t)
1364;; tpu-search tpu-lm-replace
1365;; tpu-search-forward (t) tpu-search-reverse (t)
1366;; tpu-search-forward-exit (t) tpu-search-backward-exit (t)
522f9216 1367
4b9be680
GM
1368(declare-function tpu-emacs-search "tpu-edt")
1369(declare-function tpu-emacs-rev-search "tpu-edt")
1370
522f9216 1371(defun tpu-set-search (&optional arg)
db7552d5
SM
1372 "Set the search functions and set the search direction to the current direction.
1373If an argument is specified, don't set the search direction."
a5717394 1374 (if (not arg) (setq tpu-searching-forward tpu-advance))
09ac6f3b 1375 (cond (tpu-searching-forward
522f9216
RS
1376 (cond (tpu-regexp-p
1377 (fset 'tpu-emacs-search 're-search-forward)
1378 (fset 'tpu-emacs-rev-search 're-search-backward))
1379 (t
1380 (fset 'tpu-emacs-search 'search-forward)
1381 (fset 'tpu-emacs-rev-search 'search-backward))))
1382 (t
1383 (cond (tpu-regexp-p
1384 (fset 'tpu-emacs-search 're-search-backward)
1385 (fset 'tpu-emacs-rev-search 're-search-forward))
1386 (t
1387 (fset 'tpu-emacs-search 'search-backward)
1388 (fset 'tpu-emacs-rev-search 'search-forward))))))
1389
1390(defun tpu-search-internal (pat &optional quiet)
1391 "Search for a string or regular expression."
1392 (setq tpu-search-last-string
1393 (if (not (string= "" pat)) pat (tpu-regexp-prompt "Search: ")))
1394
1395 (tpu-unset-match)
1396 (tpu-adjust-search)
1397
dc84b03d
RS
1398 (let ((case-fold-search
1399 (and case-fold-search (tpu-check-search-case tpu-search-last-string))))
1400
1401 (cond ((tpu-emacs-search tpu-search-last-string nil t)
1402 (tpu-set-match) (goto-char (tpu-match-beginning)))
1403
1404 (t
1405 (tpu-adjust-search t)
1406 (let ((found nil) (pos nil))
1407 (save-excursion
1408 (let ((tpu-searching-forward (not tpu-searching-forward)))
1409 (tpu-adjust-search)
1410 (setq found (tpu-emacs-rev-search tpu-search-last-string nil t))
1411 (setq pos (match-beginning 0))))
1412
1413 (cond
1414 (found
1415 (cond ((tpu-y-or-n-p
1416 (format "Found in %s direction. Go there? "
1417 (if tpu-searching-forward "reverse" "forward")))
1418 (goto-char pos) (tpu-set-match)
1419 (tpu-toggle-search-direction))))
522f9216 1420
dc84b03d
RS
1421 (t
1422 (if (not quiet)
1423 (message
1424 "%sSearch failed: \"%s\""
1425 (if tpu-regexp-p "RE " "") tpu-search-last-string)))))))))
522f9216 1426
a5717394 1427(defalias 'tpu-search-internal-core (symbol-function 'tpu-search-internal))
522f9216 1428
dc84b03d 1429(defun tpu-check-search-case (string)
db7552d5 1430 "Return t if string contains upper case."
f7eee6c6 1431 ;; if using regexp, eliminate upper case forms (\B \W \S.)
dc84b03d
RS
1432 (if tpu-regexp-p
1433 (let ((pat (copy-sequence string)) (case-fold-search nil) (pos 0))
1434 (while (setq pos (string-match "\\\\\\\\" pat)) (aset pat (+ 1 pos) ?.))
1435 (while (setq pos (string-match "\\\\B" pat)) (aset pat (+ 1 pos) ?.))
1436 (while (setq pos (string-match "\\\\W" pat)) (aset pat (+ 1 pos) ?.))
1437 (while (setq pos (string-match "\\\\S." pat))
1438 (aset pat (+ 1 pos) ?.) (aset pat (+ 2 pos) ?.))
1439 (string-equal pat (downcase pat)))
1440 (string-equal string (downcase string))))
1441
522f9216
RS
1442(defun tpu-adjust-search (&optional arg)
1443 "For forward searches, move forward a character before searching,
1444and backward a character after a failed search. Arg means end of search."
09ac6f3b 1445 (if tpu-searching-forward
522f9216
RS
1446 (cond (arg (if (not (bobp)) (forward-char -1)))
1447 (t (if (not (eobp)) (forward-char 1))))))
1448
1449(defun tpu-toggle-search-direction nil
1450 "Toggle the TPU-edt search direction.
1451Used for reversing a search in progress."
1452 (interactive)
09ac6f3b 1453 (setq tpu-searching-forward (not tpu-searching-forward))
522f9216 1454 (tpu-set-search t)
32226619 1455 (and (called-interactively-p 'interactive)
522f9216 1456 (message "Searching %sward."
09ac6f3b 1457 (if tpu-searching-forward "for" "back"))))
522f9216 1458
48037971
RS
1459(defun tpu-search-forward-exit nil
1460 "Set search direction forward and exit minibuffer."
1461 (interactive)
1462 (setq tpu-searching-forward t)
1463 (tpu-set-search t)
1464 (exit-minibuffer))
1465
1466(defun tpu-search-backward-exit nil
1467 "Set search direction backward and exit minibuffer."
1468 (interactive)
1469 (setq tpu-searching-forward nil)
1470 (tpu-set-search t)
1471 (exit-minibuffer))
1472
522f9216
RS
1473
1474;;;
1475;;; Select / Unselect
1476;;;
1477(defun tpu-select (&optional quiet)
db7552d5 1478 "Set the mark to define one end of a region."
522f9216
RS
1479 (interactive "P")
1480 (cond ((tpu-mark)
1481 (tpu-unselect quiet))
1482 (t
1483 (tpu-set-mark (point))
1484 (tpu-update-mode-line)
1485 (if (not quiet) (message "Move the text cursor to select text.")))))
1486
1487(defun tpu-unselect (&optional quiet)
db7552d5 1488 "Remove the mark to unselect the current region."
522f9216 1489 (interactive "P")
8b8a7f01 1490 (deactivate-mark)
522f9216
RS
1491 (setq mark-ring nil)
1492 (tpu-set-mark nil)
1493 (tpu-update-mode-line)
1494 (if (not quiet) (message "Selection canceled.")))
1495
1496
1497;;;
1498;;; Delete / Cut
1499;;;
1500(defun tpu-toggle-rectangle nil
1501 "Toggle rectangular mode for remove and insert."
1502 (interactive)
1503 (setq tpu-rectangular-p (not tpu-rectangular-p))
1504 (setq tpu-rectangle-string (if tpu-rectangular-p " Rect" ""))
1505 (tpu-update-mode-line)
32226619 1506 (and (called-interactively-p 'interactive)
522f9216
RS
1507 (message "Rectangular cut and paste %sabled."
1508 (if tpu-rectangular-p "en" "dis"))))
1509
1510(defun tpu-arrange-rectangle nil
db7552d5 1511 "Adjust point and mark to upper left and lower right corners of a rectangle."
522f9216
RS
1512 (let ((mc (current-column))
1513 (pc (progn (exchange-point-and-mark) (current-column))))
1514
48037971 1515 (cond ((> (point) (tpu-mark)) ; point on lower line
522f9216
RS
1516 (cond ((> pc mc) ; point @ lower-right
1517 (exchange-point-and-mark)) ; point -> upper-left
1518
1519 (t ; point @ lower-left
dafcda20 1520 (move-to-column mc t) ; point -> lower-right
522f9216 1521 (exchange-point-and-mark) ; point -> upper-right
dafcda20 1522 (move-to-column pc t)))) ; point -> upper-left
522f9216
RS
1523
1524 (t ; point on upper line
1525 (cond ((> pc mc) ; point @ upper-right
dafcda20 1526 (move-to-column mc t) ; point -> upper-left
522f9216 1527 (exchange-point-and-mark) ; point -> lower-left
dafcda20 1528 (move-to-column pc t) ; point -> lower-right
522f9216
RS
1529 (exchange-point-and-mark))))))) ; point -> upper-left
1530
1531(defun tpu-cut-text nil
1532 "Delete the selected region.
1533The text is saved for the tpu-paste command."
1534 (interactive)
1535 (cond ((tpu-mark)
1536 (cond (tpu-rectangular-p
1537 (tpu-arrange-rectangle)
1538 (picture-clear-rectangle (point) (tpu-mark) (not overwrite-mode))
1539 (tpu-unselect t))
1540 (t
1541 (setq tpu-last-deleted-region
1542 (buffer-substring (tpu-mark) (point)))
1543 (delete-region (tpu-mark) (point))
1544 (tpu-unselect t))))
1545 ((tpu-check-match)
1546 (let ((beg (tpu-match-beginning)) (end (tpu-match-end)))
1547 (setq tpu-last-deleted-region (buffer-substring beg end))
1548 (delete-region beg end)
1549 (tpu-unset-match)))
1550 (t
cba04ae9 1551 (tpu-error "No selection active."))))
522f9216
RS
1552
1553(defun tpu-store-text nil
1554 "Copy the selected region to the cut buffer without deleting it.
1555The text is saved for the tpu-paste command."
1556 (interactive)
1557 (cond ((tpu-mark)
1558 (cond (tpu-rectangular-p
1559 (save-excursion
1560 (tpu-arrange-rectangle)
1561 (setq picture-killed-rectangle
1562 (extract-rectangle (point) (tpu-mark))))
1563 (tpu-unselect t))
1564 (t
1565 (setq tpu-last-deleted-region
1566 (buffer-substring (tpu-mark) (point)))
1567 (tpu-unselect t))))
1568 ((tpu-check-match)
1569 (setq tpu-last-deleted-region
1570 (buffer-substring (tpu-match-beginning) (tpu-match-end)))
1571 (tpu-unset-match))
1572 (t
cba04ae9 1573 (tpu-error "No selection active."))))
522f9216
RS
1574
1575(defun tpu-cut (arg)
db7552d5
SM
1576 "Copy selected region to the cut buffer.
1577In the absence of an argument, delete the selected region too."
522f9216
RS
1578 (interactive "P")
1579 (if arg (tpu-store-text) (tpu-cut-text)))
1580
1581(defun tpu-append-region (arg)
db7552d5
SM
1582 "Append selected region to the tpu-cut buffer.
1583In the absence of an argument, delete the selected region too."
522f9216
RS
1584 (interactive "P")
1585 (cond ((tpu-mark)
1586 (let ((beg (region-beginning)) (end (region-end)))
1587 (setq tpu-last-deleted-region
1588 (concat tpu-last-deleted-region
1589 (buffer-substring beg end)))
1590 (if (not arg) (delete-region beg end))
1591 (tpu-unselect t)))
1592 ((tpu-check-match)
1593 (let ((beg (tpu-match-beginning)) (end (tpu-match-end)))
1594 (setq tpu-last-deleted-region
1595 (concat tpu-last-deleted-region
1596 (buffer-substring beg end)))
1597 (if (not arg) (delete-region beg end))
1598 (tpu-unset-match)))
1599 (t
cba04ae9 1600 (tpu-error "No selection active."))))
522f9216
RS
1601
1602(defun tpu-delete-current-line (num)
1603 "Delete one or specified number of lines after point.
1604This includes the newline character at the end of each line.
1605They are saved for the TPU-edt undelete-lines command."
1606 (interactive "p")
1607 (let ((beg (point)))
1608 (forward-line num)
1609 (if (not (eq (preceding-char) ?\n))
1610 (insert "\n"))
1611 (setq tpu-last-deleted-lines
1612 (buffer-substring beg (point)))
1613 (delete-region beg (point))))
1614
1615(defun tpu-delete-to-eol (num)
1616 "Delete text up to end of line.
5ec2752a 1617With argument, delete up to the Nth line-end past point.
522f9216
RS
1618They are saved for the TPU-edt undelete-lines command."
1619 (interactive "p")
1620 (let ((beg (point)))
1621 (forward-char 1)
1622 (end-of-line num)
1623 (setq tpu-last-deleted-lines
1624 (buffer-substring beg (point)))
1625 (delete-region beg (point))))
1626
1627(defun tpu-delete-to-bol (num)
1628 "Delete text back to beginning of line.
5ec2752a 1629With argument, delete up to the Nth line-end past point.
522f9216
RS
1630They are saved for the TPU-edt undelete-lines command."
1631 (interactive "p")
1632 (let ((beg (point)))
1633 (tpu-next-beginning-of-line num)
1634 (setq tpu-last-deleted-lines
1635 (buffer-substring (point) beg))
1636 (delete-region (point) beg)))
1637
1638(defun tpu-delete-current-word (num)
1639 "Delete one or specified number of words after point.
1640They are saved for the TPU-edt undelete-words command."
1641 (interactive "p")
1642 (let ((beg (point)))
1643 (tpu-forward-to-word num)
1644 (setq tpu-last-deleted-words
1645 (buffer-substring beg (point)))
1646 (delete-region beg (point))))
1647
1648(defun tpu-delete-previous-word (num)
1649 "Delete one or specified number of words before point.
1650They are saved for the TPU-edt undelete-words command."
1651 (interactive "p")
1652 (let ((beg (point)))
1653 (tpu-backward-to-word num)
1654 (setq tpu-last-deleted-words
1655 (buffer-substring (point) beg))
1656 (delete-region beg (point))))
1657
1658(defun tpu-delete-current-char (num)
db7552d5
SM
1659 "Delete one or specified number of characters after point.
1660The last character deleted is saved for the TPU-edt undelete-char command."
522f9216
RS
1661 (interactive "p")
1662 (while (and (> num 0) (not (eobp)))
1663 (setq tpu-last-deleted-char (char-after (point)))
1664 (cond (overwrite-mode
1665 (picture-clear-column 1)
1666 (forward-char 1))
1667 (t
1668 (delete-char 1)))
1669 (setq num (1- num))))
1670
1671
1672;;;
1673;;; Undelete / Paste
1674;;;
1675(defun tpu-paste (num)
1676 "Insert the last region or rectangle of killed text.
1677With argument reinserts the text that many times."
1678 (interactive "p")
1679 (while (> num 0)
1680 (cond (tpu-rectangular-p
1681 (let ((beg (point)))
1682 (save-excursion
1683 (picture-yank-rectangle (not overwrite-mode))
1684 (message ""))
1685 (goto-char beg)))
1686 (t
1687 (insert tpu-last-deleted-region)))
1688 (setq num (1- num))))
1689
1690(defun tpu-undelete-lines (num)
1691 "Insert lines deleted by last TPU-edt line-deletion command.
1692With argument reinserts lines that many times."
1693 (interactive "p")
1694 (let ((beg (point)))
1695 (while (> num 0)
1696 (insert tpu-last-deleted-lines)
1697 (setq num (1- num)))
1698 (goto-char beg)))
1699
1700(defun tpu-undelete-words (num)
1701 "Insert words deleted by last TPU-edt word-deletion command.
1702With argument reinserts words that many times."
1703 (interactive "p")
1704 (let ((beg (point)))
1705 (while (> num 0)
1706 (insert tpu-last-deleted-words)
1707 (setq num (1- num)))
1708 (goto-char beg)))
1709
1710(defun tpu-undelete-char (num)
1711 "Insert character deleted by last TPU-edt character-deletion command.
1712With argument reinserts the character that many times."
1713 (interactive "p")
1714 (while (> num 0)
1715 (if overwrite-mode (prog1 (forward-char -1) (delete-char 1)))
1716 (insert tpu-last-deleted-char)
1717 (forward-char -1)
1718 (setq num (1- num))))
1719
1720
1721;;;
1722;;; Replace and Substitute
1723;;;
1724(defun tpu-replace nil
1725 "Replace the selected region with the contents of the cut buffer."
1726 (interactive)
1727 (cond ((tpu-mark)
1728 (let ((beg (region-beginning)) (end (region-end)))
1729 (setq tpu-last-replaced-text (buffer-substring beg end))
1730 (delete-region beg end)
1731 (insert tpu-last-deleted-region)
1732 (tpu-unselect t)))
1733 ((tpu-check-match)
1734 (let ((beg (tpu-match-beginning)) (end (tpu-match-end)))
1735 (setq tpu-last-replaced-text (buffer-substring beg end))
1736 (replace-match tpu-last-deleted-region
1737 (not case-replace) (not tpu-regexp-p))
1738 (tpu-unset-match)))
1739 (t
cba04ae9 1740 (tpu-error "No selection active."))))
522f9216
RS
1741
1742(defun tpu-substitute (num)
db7552d5
SM
1743 "Replace the selected region with the contents of the cut buffer,
1744and repeat most recent search. A numeric argument serves as a repeat count.
522f9216
RS
1745A negative argument means replace all occurrences of the search string."
1746 (interactive "p")
1747 (cond ((or (tpu-mark) (tpu-check-match))
1748 (while (and (not (= num 0)) (or (tpu-mark) (tpu-check-match)))
1749 (let ((beg (point)))
1750 (tpu-replace)
09ac6f3b 1751 (if tpu-searching-forward (forward-char -1) (goto-char beg))
522f9216
RS
1752 (if (= num 1) (tpu-search-internal tpu-search-last-string)
1753 (tpu-search-internal-core tpu-search-last-string)))
1754 (setq num (1- num))))
1755 (t
cba04ae9 1756 (tpu-error "No selection active."))))
522f9216
RS
1757
1758(defun tpu-lm-replace (from to)
1759 "Interactively search for OLD-string and substitute NEW-string."
1760 (interactive (list (tpu-regexp-prompt "Old String: ")
1761 (tpu-regexp-prompt "New String: ")))
1762
1763 (let ((doit t) (strings 0))
1764
1765 ;; Can't replace null strings
cba04ae9 1766 (if (string= "" from) (tpu-error "No string to replace."))
522f9216
RS
1767
1768 ;; Find the first occurrence
1769 (tpu-set-search)
1770 (tpu-search-internal from t)
1771
1772 ;; Loop on replace question - yes, no, all, last, or quit.
1773 (while doit
1774 (if (not (tpu-check-match)) (setq doit nil)
6719bba6
RS
1775 (progn
1776 (move-overlay tpu-replace-overlay
1777 (tpu-match-beginning) (tpu-match-end) (current-buffer))
1778 (message "Replace? Type Yes, No, All, Last, or Quit: ")
1779 (let ((ans (read-char)))
1780
1781 (cond ((or (= ans ?y) (= ans ?Y) (= ans ?\r) (= ans ?\ ))
1782 (let ((beg (point)))
1783 (replace-match to (not case-replace) (not tpu-regexp-p))
1784 (setq strings (1+ strings))
1785 (if tpu-searching-forward (forward-char -1) (goto-char beg)))
1786 (tpu-search-internal from t))
1787
1788 ((or (= ans ?n) (= ans ?N) (= ans ?\C-?))
1789 (tpu-search-internal from t))
1790
1791 ((or (= ans ?a) (= ans ?A))
1792 (save-excursion
1793 (let ((beg (point)))
1794 (replace-match to (not case-replace) (not tpu-regexp-p))
1795 (setq strings (1+ strings))
1796 (if tpu-searching-forward (forward-char -1) (goto-char beg)))
1797 (tpu-search-internal-core from t)
1798 (while (tpu-check-match)
1799 (let ((beg (point)))
1800 (replace-match to (not case-replace) (not tpu-regexp-p))
1801 (setq strings (1+ strings))
1802 (if tpu-searching-forward (forward-char -1) (goto-char beg)))
1803 (tpu-search-internal-core from t)))
1804 (setq doit nil))
1805
1806 ((or (= ans ?l) (= ans ?L))
1807 (let ((beg (point)))
1808 (replace-match to (not case-replace) (not tpu-regexp-p))
1809 (setq strings (1+ strings))
1810 (if tpu-searching-forward (forward-char -1) (goto-char beg)))
1811 (setq doit nil))
1812
1813 ((or (= ans ?q) (= ans ?Q))
1814 (tpu-unset-match)
1815 (setq doit nil)))))))
1816
8b8a7f01 1817 (move-overlay tpu-replace-overlay 1 1 (current-buffer))
6719bba6 1818 (message "Replaced %s occurrence%s." strings (if (not (= 1 strings)) "s" ""))))
522f9216
RS
1819
1820(defun tpu-emacs-replace (&optional dont-ask)
db7552d5
SM
1821 "A TPU-edt interface to the Emacs replace functions.
1822If TPU-edt is currently in regular expression mode, the Emacs regular
1823expression replace functions are used. If an argument is supplied,
1824replacements are performed without asking. Only works in forward direction."
522f9216
RS
1825 (interactive "P")
1826 (cond (dont-ask
1827 (setq current-prefix-arg nil)
1828 (call-interactively
1829 (if tpu-regexp-p 'replace-regexp 'replace-string)))
1830 (t
1831 (call-interactively
1832 (if tpu-regexp-p 'query-replace-regexp 'query-replace)))))
1833
1834(defun tpu-add-at-bol (text)
1835 "Add text to the beginning of each line in a region,
1836or each line in the entire buffer if no region is selected."
1837 (interactive
1838 (list (tpu-string-prompt "String to add: " 'tpu-add-at-bol-hist)))
cba04ae9 1839 (if (string= "" text) (tpu-error "No string specified."))
522f9216
RS
1840 (cond ((tpu-mark)
1841 (save-excursion
1842 (if (> (point) (tpu-mark)) (exchange-point-and-mark))
1843 (while (and (< (point) (tpu-mark)) (re-search-forward "^" (tpu-mark) t))
1844 (if (< (point) (tpu-mark)) (replace-match text))))
1845 (tpu-unselect t))
1846 (t
1847 (save-excursion
1848 (goto-char (point-min))
1849 (while (and (re-search-forward "^" nil t) (not (eobp)))
1850 (replace-match text))))))
1851
1852(defun tpu-add-at-eol (text)
1853 "Add text to the end of each line in a region,
1854or each line of the entire buffer if no region is selected."
1855 (interactive
1856 (list (tpu-string-prompt "String to add: " 'tpu-add-at-eol-hist)))
cba04ae9 1857 (if (string= "" text) (tpu-error "No string specified."))
522f9216
RS
1858 (cond ((tpu-mark)
1859 (save-excursion
1860 (if (> (point) (tpu-mark)) (exchange-point-and-mark))
1861 (while (< (point) (tpu-mark))
1862 (end-of-line)
1863 (if (<= (point) (tpu-mark)) (insert text))
1864 (forward-line)))
1865 (tpu-unselect t))
1866 (t
1867 (save-excursion
1868 (goto-char (point-min))
1869 (while (not (eobp))
1870 (end-of-line) (insert text) (forward-line))))))
1871
1872(defun tpu-trim-line-ends nil
db7552d5 1873 "Remove trailing whitespace from every line in the buffer."
522f9216 1874 (interactive)
d49af51c
GM
1875 (save-match-data
1876 (save-excursion
1877 (goto-char (point-min))
1878 (while (re-search-forward "[ \t][ \t]*$" nil t)
1879 (delete-region (match-beginning 0) (match-end 0))))))
522f9216
RS
1880
1881
1882;;;
1883;;; Movement by character
1884;;;
1885(defun tpu-char (num)
1886 "Move to the next character in the current direction.
1887A repeat count means move that many characters."
1888 (interactive "p")
1889 (if tpu-advance (tpu-forward-char num) (tpu-backward-char num)))
1890
1891(defun tpu-forward-char (num)
1892 "Move right ARG characters (left if ARG is negative)."
1893 (interactive "p")
1894 (forward-char num))
1895
1896(defun tpu-backward-char (num)
1897 "Move left ARG characters (right if ARG is negative)."
1898 (interactive "p")
1899 (backward-char num))
1900
1901
1902;;;
1903;;; Movement by word
1904;;;
d55f9265 1905(defvar tpu-word-separator-list '()
522f9216 1906 "List of additional word separators.")
d55f9265 1907(defvar tpu-skip-chars "^ \t"
522f9216
RS
1908 "Characters to skip when moving by word.
1909Additional word separators are added to this string.")
1910
1911(defun tpu-word (num)
1912 "Move to the beginning of the next word in the current direction.
1913A repeat count means move that many words."
1914 (interactive "p")
1915 (if tpu-advance (tpu-forward-to-word num) (tpu-backward-to-word num)))
1916
1917(defun tpu-forward-to-word (num)
1918 "Move forward until encountering the beginning of a word.
1919With argument, do this that many times."
1920 (interactive "p")
1921 (while (and (> num 0) (not (eobp)))
1922 (let* ((beg (point))
1923 (end (prog2 (end-of-line) (point) (goto-char beg))))
1924 (cond ((eolp)
1925 (forward-char 1))
1926 ((memq (char-after (point)) tpu-word-separator-list)
1927 (forward-char 1)
1928 (skip-chars-forward " \t" end))
1929 (t
1930 (skip-chars-forward tpu-skip-chars end)
1931 (skip-chars-forward " \t" end))))
1932 (setq num (1- num))))
1933
1934(defun tpu-backward-to-word (num)
1935 "Move backward until encountering the beginning of a word.
1936With argument, do this that many times."
1937 (interactive "p")
1938 (while (and (> num 0) (not (bobp)))
1939 (let* ((beg (point))
1940 (end (prog2 (beginning-of-line) (point) (goto-char beg))))
1941 (cond ((bolp)
1942 ( forward-char -1))
1943 ((memq (char-after (1- (point))) tpu-word-separator-list)
1944 (forward-char -1))
1945 (t
1946 (skip-chars-backward " \t" end)
1947 (skip-chars-backward tpu-skip-chars end)
1948 (if (and (not (bolp)) (= ? (char-syntax (char-after (point)))))
1949 (forward-char -1)))))
1950 (setq num (1- num))))
1951
1952(defun tpu-add-word-separators (separators)
1953 "Add new word separators for TPU-edt word commands."
1954 (interactive "sSeparators: ")
1955 (let* ((n 0) (length (length separators)))
1956 (while (< n length)
1957 (let ((char (aref separators n))
1958 (ss (substring separators n (1+ n))))
1959 (cond ((not (memq char tpu-word-separator-list))
1960 (setq tpu-word-separator-list
1961 (append ss tpu-word-separator-list))
1962 (cond ((= char ?-)
1963 (setq tpu-skip-chars (concat tpu-skip-chars "\\-")))
1964 ((= char ?\\)
1965 (setq tpu-skip-chars (concat tpu-skip-chars "\\\\")))
1966 ((= char ?^)
1967 (setq tpu-skip-chars (concat tpu-skip-chars "\\^")))
1968 (t
1969 (setq tpu-skip-chars (concat tpu-skip-chars ss))))))
1970 (setq n (1+ n))))))
1971
1972(defun tpu-reset-word-separators nil
1973 "Reset word separators to default value."
1974 (interactive)
1975 (setq tpu-word-separator-list nil)
1976 (setq tpu-skip-chars "^ \t"))
1977
1978(defun tpu-set-word-separators (separators)
1979 "Set new word separators for TPU-edt word commands."
1980 (interactive "sSeparators: ")
1981 (tpu-reset-word-separators)
1982 (tpu-add-word-separators separators))
1983
1984
1985;;;
1986;;; Movement by line
1987;;;
1988(defun tpu-next-line (num)
1989 "Move to next line.
1990Prefix argument serves as a repeat count."
1991 (interactive "p")
77b4381a 1992 (line-move num)
522f9216
RS
1993 (setq this-command 'next-line))
1994
1995(defun tpu-previous-line (num)
1996 "Move to previous line.
1997Prefix argument serves as a repeat count."
1998 (interactive "p")
77b4381a 1999 (line-move (- num))
522f9216
RS
2000 (setq this-command 'previous-line))
2001
2002(defun tpu-next-beginning-of-line (num)
2003 "Move to beginning of line; if at beginning, move to beginning of next line.
2004Accepts a prefix argument for the number of lines to move."
2005 (interactive "p")
2006 (backward-char 1)
8b8a7f01 2007 (forward-visible-line (- 1 num)))
522f9216
RS
2008
2009(defun tpu-end-of-line (num)
2010 "Move to the next end of line in the current direction.
2011A repeat count means move that many lines."
2012 (interactive "p")
2013 (if tpu-advance (tpu-next-end-of-line num) (tpu-previous-end-of-line num)))
2014
2015(defun tpu-next-end-of-line (num)
2016 "Move to end of line; if at end, move to end of next line.
2017Accepts a prefix argument for the number of lines to move."
2018 (interactive "p")
2019 (forward-char 1)
2020 (end-of-line num))
2021
2022(defun tpu-previous-end-of-line (num)
2023 "Move EOL upward.
2024Accepts a prefix argument for the number of lines to move."
2025 (interactive "p")
2026 (end-of-line (- 1 num)))
2027
2028(defun tpu-current-end-of-line nil
2029 "Move point to end of current line."
2030 (interactive)
2031 (let ((beg (point)))
2032 (end-of-line)
2033 (if (= beg (point)) (message "You are already at the end of a line."))))
2034
2035(defun tpu-line (num)
2036 "Move to the beginning of the next line in the current direction.
2037A repeat count means move that many lines."
2038 (interactive "p")
2039 (if tpu-advance (tpu-forward-line num) (tpu-backward-line num)))
2040
2041(defun tpu-forward-line (num)
2042 "Move to beginning of next line.
2043Prefix argument serves as a repeat count."
2044 (interactive "p")
2045 (forward-line num))
2046
2047(defun tpu-backward-line (num)
2048 "Move to beginning of previous line.
2049Prefix argument serves as repeat count."
2050 (interactive "p")
1a4cec85 2051 (or (bolp) (>= 0 num) (setq num (- num 1)))
522f9216
RS
2052 (forward-line (- num)))
2053
2054
2055;;;
2056;;; Movement by paragraph
2057;;;
2058(defun tpu-paragraph (num)
2059 "Move to the next paragraph in the current direction.
2060A repeat count means move that many paragraphs."
2061 (interactive "p")
2062 (if tpu-advance
2063 (tpu-next-paragraph num) (tpu-previous-paragraph num)))
2064
2065(defun tpu-next-paragraph (num)
2066 "Move to beginning of the next paragraph.
2067Accepts a prefix argument for the number of paragraphs."
2068 (interactive "p")
2069 (beginning-of-line)
2070 (while (and (not (eobp)) (> num 0))
2071 (if (re-search-forward "^[ \t]*$" nil t)
2072 (if (re-search-forward "[^ \t\n]" nil t)
2073 (goto-char (match-beginning 0))
2074 (goto-char (point-max))))
2075 (setq num (1- num)))
2076 (beginning-of-line))
2077
2078
2079(defun tpu-previous-paragraph (num)
2080 "Move to beginning of previous paragraph.
2081Accepts a prefix argument for the number of paragraphs."
2082 (interactive "p")
2083 (end-of-line)
2084 (while (and (not (bobp)) (> num 0))
2085 (if (not (and (re-search-backward "^[ \t]*$" nil t)
2086 (re-search-backward "[^ \t\n]" nil t)
2087 (re-search-backward "^[ \t]*$" nil t)
2088 (progn (re-search-forward "[^ \t\n]" nil t)
2089 (goto-char (match-beginning 0)))))
2090 (goto-char (point-min)))
2091 (setq num (1- num)))
2092 (beginning-of-line))
2093
2094
2095;;;
2096;;; Movement by page
2097;;;
2098(defun tpu-page (num)
2099 "Move to the next page in the current direction.
2100A repeat count means move that many pages."
2101 (interactive "p")
2102 (if tpu-advance (forward-page num) (backward-page num))
2103 (if (eobp) (recenter -1)))
2104
2105
2106;;;
2107;;; Scrolling and movement within the buffer
2108;;;
2109(defun tpu-scroll-window (num)
2110 "Scroll the display to the next section in the current direction.
2111A repeat count means scroll that many sections."
2112 (interactive "p")
2113 (if tpu-advance (tpu-scroll-window-up num) (tpu-scroll-window-down num)))
2114
2115(defun tpu-scroll-window-down (num)
2116 "Scroll the display down to the next section.
2117A repeat count means scroll that many sections."
2118 (interactive "p")
2119 (let* ((beg (tpu-current-line))
2120 (height (1- (window-height)))
2121 (lines (* num (/ (* height tpu-percent-scroll) 100))))
77b4381a 2122 (line-move (- lines))
522f9216
RS
2123 (if (> lines beg) (recenter 0))))
2124
2125(defun tpu-scroll-window-up (num)
2126 "Scroll the display up to the next section.
2127A repeat count means scroll that many sections."
2128 (interactive "p")
2129 (let* ((beg (tpu-current-line))
2130 (height (1- (window-height)))
2131 (lines (* num (/ (* height tpu-percent-scroll) 100))))
77b4381a 2132 (line-move lines)
522f9216
RS
2133 (if (>= (+ lines beg) height) (recenter -1))))
2134
2135(defun tpu-pan-right (num)
2136 "Pan right tpu-pan-columns (16 by default).
2137Accepts a prefix argument for the number of tpu-pan-columns to scroll."
2138 (interactive "p")
2139 (scroll-left (* tpu-pan-columns num)))
2140
2141(defun tpu-pan-left (num)
2142 "Pan left tpu-pan-columns (16 by default).
2143Accepts a prefix argument for the number of tpu-pan-columns to scroll."
2144 (interactive "p")
2145 (scroll-right (* tpu-pan-columns num)))
2146
2147(defun tpu-move-to-beginning nil
2148 "Move cursor to the beginning of buffer, but don't set the mark."
2149 (interactive)
2150 (goto-char (point-min)))
2151
2152(defun tpu-move-to-end nil
2153 "Move cursor to the end of buffer, but don't set the mark."
2154 (interactive)
2155 (goto-char (point-max))
2156 (recenter -1))
2157
2158(defun tpu-goto-percent (perc)
2159 "Move point to ARG percentage of the buffer."
2160 (interactive "NGoto-percentage: ")
2161 (if (or (> perc 100) (< perc 0))
cba04ae9 2162 (tpu-error "Percentage %d out of range 0 < percent < 100." perc)
522f9216
RS
2163 (goto-char (/ (* (point-max) perc) 100))))
2164
2165(defun tpu-beginning-of-window nil
2166 "Move cursor to top of window."
2167 (interactive)
2168 (move-to-window-line 0))
2169
2170(defun tpu-end-of-window nil
2171 "Move cursor to bottom of window."
2172 (interactive)
2173 (move-to-window-line -1))
2174
2175(defun tpu-line-to-bottom-of-window nil
2176 "Move the current line to the bottom of the window."
2177 (interactive)
2178 (recenter -1))
2179
2180(defun tpu-line-to-top-of-window nil
2181 "Move the current line to the top of the window."
2182 (interactive)
2183 (recenter 0))
2184
2185
2186;;;
2187;;; Direction
2188;;;
2189(defun tpu-advance-direction nil
2190 "Set TPU Advance mode so keypad commands move forward."
2191 (interactive)
2192 (setq tpu-direction-string " Advance")
2193 (setq tpu-advance t)
2194 (setq tpu-reverse nil)
2195 (tpu-set-search)
2196 (tpu-update-mode-line))
2197
2198(defun tpu-backup-direction nil
2199 "Set TPU Backup mode so keypad commands move backward."
2200 (interactive)
2201 (setq tpu-direction-string " Reverse")
2202 (setq tpu-advance nil)
2203 (setq tpu-reverse t)
2204 (tpu-set-search)
2205 (tpu-update-mode-line))
2206
6719bba6
RS
2207(defun tpu-toggle-direction nil
2208 "Change the current TPU direction."
2209 (interactive)
2210 (if tpu-advance (tpu-backup-direction) (tpu-advance-direction)))
2211
522f9216 2212
522f9216
RS
2213;;;
2214;;; Minibuffer map additions to make KP_enter = RET
2215;;;
a5717394
SM
2216;; Standard Emacs settings under xterm in function-key-map map
2217;; "\eOM" to [kp-enter] and [kp-enter] to RET, but since the output of the map
2218;; is not fed back into the map, the key stays as kp-enter :-(.
2219(define-key minibuffer-local-map [kp-enter] 'exit-minibuffer)
2220;; These are not necessary because they are inherited.
2221;; (define-key minibuffer-local-ns-map [kp-enter] 'exit-minibuffer)
2222;; (define-key minibuffer-local-completion-map [kp-enter] 'exit-minibuffer)
2223(define-key minibuffer-local-must-match-map [kp-enter] 'minibuffer-complete-and-exit)
522f9216
RS
2224
2225
48037971
RS
2226;;;
2227;;; Minibuffer map additions to set search direction
2228;;;
cdf4e301
SM
2229(define-key minibuffer-local-map [kp-4] 'tpu-search-forward-exit) ;KP4
2230(define-key minibuffer-local-map [kp-5] 'tpu-search-backward-exit) ;KP5
48037971
RS
2231
2232
522f9216 2233;;;
a0f5a25f 2234;;; Functions to set, reset, and toggle the control key bindings
522f9216 2235;;;
ce8fd9f3
RS
2236
2237(defvar tpu-control-keys-map
2238 (let ((map (make-sparse-keymap)))
2239 (define-key map "\C-\\" 'quoted-insert) ; ^\
2240 (define-key map "\C-a" 'tpu-toggle-overwrite-mode) ; ^A
2241 (define-key map "\C-b" 'repeat-complex-command) ; ^B
2242 (define-key map "\C-e" 'tpu-current-end-of-line) ; ^E
2243 (define-key map "\C-h" 'tpu-next-beginning-of-line) ; ^H (BS)
2244 (define-key map "\C-j" 'tpu-delete-previous-word) ; ^J (LF)
2245 (define-key map "\C-k" 'tpu-define-macro-key) ; ^K
2246 (define-key map "\C-l" 'tpu-insert-formfeed) ; ^L (FF)
2247 (define-key map "\C-r" 'recenter) ; ^R
2248 (define-key map "\C-u" 'tpu-delete-to-bol) ; ^U
2249 (define-key map "\C-v" 'tpu-quoted-insert) ; ^V
2250 (define-key map "\C-w" 'redraw-display) ; ^W
2251 (define-key map "\C-z" 'tpu-exit) ; ^Z
2252 map))
2253
2254(defun tpu-set-control-keys ()
a0f5a25f 2255 "Set control keys to TPU style functions."
ce8fd9f3 2256 (tpu-reset-control-keys 'tpu))
522f9216 2257
522f9216 2258(defun tpu-reset-control-keys (tpu-style)
e208bb1b 2259 "Set control keys to TPU or Emacs style functions."
ce8fd9f3
RS
2260 (let ((parent (keymap-parent tpu-global-map)))
2261 (if tpu-style
2262 (if (eq parent tpu-control-keys-map)
2263 nil ;All done already.
2264 ;; Insert tpu-control-keys-map in the global map.
2265 (set-keymap-parent tpu-control-keys-map parent)
2266 (set-keymap-parent tpu-global-map tpu-control-keys-map))
2267 (if (not (eq parent tpu-control-keys-map))
2268 nil ;All done already.
2269 ;; Remove tpu-control-keys-map from the global map.
2270 (set-keymap-parent tpu-global-map (keymap-parent parent))
2271 (set-keymap-parent tpu-control-keys-map nil)))
2272 (setq tpu-control-keys tpu-style)))
522f9216
RS
2273
2274(defun tpu-toggle-control-keys nil
db7552d5 2275 "Toggle control key bindings between TPU-edt and Emacs."
522f9216
RS
2276 (interactive)
2277 (tpu-reset-control-keys (not tpu-control-keys))
32226619 2278 (and (called-interactively-p 'interactive)
522f9216
RS
2279 (message "Control keys function with %s bindings."
2280 (if tpu-control-keys "TPU-edt" "Emacs"))))
2281
2282
2283;;;
2284;;; Emacs version 19 minibuffer history support
2285;;;
2286(defun tpu-next-history-element (n)
2287 "Insert the next element of the minibuffer history into the minibuffer."
2288 (interactive "p")
2289 (next-history-element n)
2290 (goto-char (point-max)))
2291
2292(defun tpu-previous-history-element (n)
2293 "Insert the previous element of the minibuffer history into the minibuffer."
2294 (interactive "p")
2295 (previous-history-element n)
2296 (goto-char (point-max)))
2297
2298(defun tpu-arrow-history nil
2299 "Modify minibuffer maps to use arrows for history recall."
2300 (interactive)
a5717394
SM
2301 (dolist (cur (where-is-internal 'tpu-previous-line))
2302 (define-key read-expression-map cur 'tpu-previous-history-element)
2303 (define-key minibuffer-local-map cur 'tpu-previous-history-element)
2304 ;; These are inherited anyway. --Stef
2305 ;; (define-key minibuffer-local-ns-map cur 'tpu-previous-history-element)
2306 ;; (define-key minibuffer-local-completion-map cur 'tpu-previous-history-element)
2307 ;; (define-key minibuffer-local-must-match-map cur 'tpu-previous-history-element)
2308 )
2309
2310 (dolist (cur (where-is-internal 'tpu-next-line))
2311 (define-key read-expression-map cur 'tpu-next-history-element)
2312 (define-key minibuffer-local-map cur 'tpu-next-history-element)
2313 ;; These are inherited anyway. --Stef
2314 ;; (define-key minibuffer-local-ns-map cur 'tpu-next-history-element)
2315 ;; (define-key minibuffer-local-completion-map cur 'tpu-next-history-element)
2316 ;; (define-key minibuffer-local-must-match-map cur 'tpu-next-history-element)
2317 ))
522f9216
RS
2318
2319
2320;;;
2321;;; Emacs version 19 X-windows key definition support
2322;;;
2323(defun tpu-load-xkeys (file)
2324 "Load the TPU-edt X-windows key definitions FILE.
2325If FILE is nil, try to load a default file. The default file names are
db7552d5 2326`~/.tpu-lucid-keys' for XEmacs, and `~/.tpu-keys' for Emacs."
522f9216
RS
2327 (interactive "fX key definition file: ")
2328 (cond (file
2329 (setq file (expand-file-name file)))
09ac6f3b 2330 (tpu-xkeys-file
522f9216 2331 (setq file (expand-file-name tpu-xkeys-file)))
86dd4d03 2332 ((featurep 'xemacs)
a96c462f
KH
2333 (setq file (convert-standard-filename
2334 (expand-file-name "~/.tpu-lucid-keys"))))
f24cd32e 2335 (t
a96c462f
KH
2336 (setq file (convert-standard-filename
2337 (expand-file-name "~/.tpu-keys")))
eb78a291 2338 (and (not (file-exists-p file))
a96c462f
KH
2339 (file-exists-p
2340 (convert-standard-filename
2341 (expand-file-name "~/.tpu-gnu-keys")))
2342 (tpu-copy-keyfile
2343 (convert-standard-filename
b00bd897 2344 (expand-file-name "~/.tpu-gnu-keys")) file))))
522f9216
RS
2345 (cond ((file-readable-p file)
2346 (load-file file))
2347 (t
88a83b17
SM
2348 ;; This used to force the user to build `file'. With the
2349 ;; new code, such a file may not be necessary. In case it
2350 ;; is, issue a message giving a hint as to how to build it.
2351 (message "%s not found: use M-x tpu-mapper to create it"
86dd4d03 2352 (abbreviate-file-name file)))))
522f9216 2353
eb78a291
RS
2354(defun tpu-copy-keyfile (oldname newname)
2355 "Copy the TPU-edt X key definitions file to the new default name."
2356 (interactive "fOld name: \nFNew name: ")
2357 (if (not (get-buffer "*TPU-Notice*")) (generate-new-buffer "*TPU-Notice*"))
2358 (set-buffer "*TPU-Notice*")
2359 (erase-buffer)
2360 (insert "
2361 NOTICE --
2362
2363 The default name of the TPU-edt key definition file has changed
2364 from `~/.tpu-gnu-keys' to `~/.tpu-keys'. With your permission,
2365 your key definitions will be copied to the new file. If you'll
2366 never use older versions of Emacs, you can remove the old file.
2367 If the copy fails, you'll be asked if you want to create a new
2368 key definitions file. Do you want to copy your key definition
2369 file now?
2370 ")
2371 (save-window-excursion
2372 (switch-to-buffer-other-window "*TPU-Notice*")
2373 (shrink-window-if-larger-than-buffer)
2374 (goto-char (point-min))
2375 (beep)
2376 (and (tpu-y-or-n-p "Copy key definitions to the new file now? ")
30213927
GM
2377 (with-demoted-errors "Sorry, couldn't copy - %s."
2378 (copy-file oldname newname)))
eb78a291
RS
2379 (kill-buffer "*TPU-Notice*")))
2380
faeb4977 2381(defvar tpu-edt-old-global-values nil)
522f9216
RS
2382
2383;;;
2384;;; Start and Stop TPU-edt
2385;;;
2386;;;###autoload
a5717394 2387(defun tpu-edt-on ()
522f9216
RS
2388 "Turn on TPU/edt emulation."
2389 (interactive)
faeb4977
SM
2390 ;; To clean things up (and avoid cycles in the global map).
2391 (tpu-edt-off)
ce8fd9f3
RS
2392 ;; First, activate tpu-global-map, while protecting the original keymap.
2393 (set-keymap-parent tpu-global-map global-map)
2394 (setq global-map tpu-global-map)
2395 (use-global-map global-map)
2396 ;; Then do the normal TPU setup.
a5717394
SM
2397 (transient-mark-mode t)
2398 (add-hook 'post-command-hook 'tpu-search-highlight)
2399 (tpu-set-mode-line t)
2400 (tpu-advance-direction)
2401 ;; set page delimiter, display line truncation, and scrolling like TPU
faeb4977
SM
2402 (dolist (varval '((page-delimiter . "\f")
2403 (truncate-lines . t)
2404 (scroll-step . 1)))
2405 (push (cons (car varval) (default-value (car varval)))
2406 tpu-edt-old-global-values)
2407 (set-default (car varval) (cdr varval)))
a5717394 2408 (tpu-set-control-keys)
ce8fd9f3
RS
2409 (and window-system (tpu-load-xkeys nil))
2410 (tpu-arrow-history)
2411 ;; Then protect tpu-global-map from user modifications.
2412 (let ((map (make-sparse-keymap)))
2413 (set-keymap-parent map global-map)
2414 (setq global-map map)
2415 (use-global-map map))
a5717394
SM
2416 (setq tpu-edt-mode t))
2417
2418(defun tpu-edt-off ()
522f9216
RS
2419 "Turn off TPU/edt emulation. Note that the keypad is left on."
2420 (interactive)
a5717394
SM
2421 (tpu-reset-control-keys nil)
2422 (remove-hook 'post-command-hook 'tpu-search-highlight)
2423 (tpu-set-mode-line nil)
faeb4977
SM
2424 (while tpu-edt-old-global-values
2425 (let ((varval (pop tpu-edt-old-global-values)))
2426 (set-default (car varval) (cdr varval))))
ce8fd9f3
RS
2427 ;; Remove tpu-global-map from the global map.
2428 (let ((map global-map))
2429 (while map
2430 (let ((parent (keymap-parent map)))
2431 (if (eq tpu-global-map parent)
2432 (set-keymap-parent map (keymap-parent parent))
2433 (setq map parent)))))
4b9be680
GM
2434 ;; Only has an effect if the advice in tpu-extras has been activated.
2435 (condition-case nil
2436 (with-no-warnings (ad-disable-regexp "\\`tpu-"))
2437 (error nil))
a5717394 2438 (setq tpu-edt-mode nil))
522f9216 2439
cdf4e301 2440\f
ba318903 2441;;;### (autoloads nil "tpu-extras" "tpu-extras.el" "cbbb448cff48fab904ac19805aa6f36a")
cdf4e301
SM
2442;;; Generated autoloads from tpu-extras.el
2443
2444(autoload 'tpu-cursor-free-mode "tpu-extras" "\
2445Minor mode to allow the cursor to move freely about the screen.
e41d4836
GM
2446With a prefix argument ARG, enable the mode if ARG is positive,
2447and disable it otherwise. If called from Lisp, enable the mode
2448if ARG is omitted or nil.
cdf4e301
SM
2449
2450\(fn &optional ARG)" t nil)
2451
2452(autoload 'tpu-set-scroll-margins "tpu-extras" "\
2453Set scroll margins.
2454
2455\(fn TOP BOTTOM)" t nil)
2456
2457(autoload 'tpu-set-cursor-free "tpu-extras" "\
2458Allow the cursor to move freely about the screen.
2459
2460\(fn)" t nil)
2461
2462(autoload 'tpu-set-cursor-bound "tpu-extras" "\
2463Constrain the cursor to the flow of the text.
2464
2465\(fn)" t nil)
2466
2467;;;***
2468\f
522f9216
RS
2469(provide 'tpu-edt)
2470
2471;;; tpu-edt.el ends here