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