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