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