Mercurial > emacs
annotate lisp/emulation/tpu-extras.el @ 11975:dd80dd6aa77f
(indent-for-comment): move to beginning of line only
if there is a comment syntax.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Mon, 29 May 1995 06:19:46 +0000 |
parents | ddef149290ed |
children | e7e04fe05a17 |
rev | line source |
---|---|
4421 | 1 ;;; tpu-extras.el --- Scroll margins and free cursor mode for TPU-edt |
4524
3d55b6a74eec
(tpu-search-internal): Changed variable
Richard M. Stallman <rms@gnu.org>
parents:
4503
diff
changeset
|
2 |
11594
ddef149290ed
Removed reference to tpu-gnu-emacs18-p.
Richard M. Stallman <rms@gnu.org>
parents:
7981
diff
changeset
|
3 ;; Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc. |
4421 | 4 |
5 ;; Author: Rob Riepel <riepel@networking.stanford.edu> | |
6 ;; Maintainer: Rob Riepel <riepel@networking.stanford.edu> | |
5140 | 7 ;; Keywords: emulations |
4421 | 8 |
4450 | 9 ;; This file is part of GNU Emacs. |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
4421 | 15 |
4450 | 16 ;; GNU Emacs is distributed in the hope that it will be useful, |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
4421 | 24 |
25 ;;; Commentary: | |
26 | |
27 ;; The functions contained in this file implement scroll margins and free | |
28 ;; cursor mode. The following keys and commands are affected. | |
29 | |
30 ;; key/command function scroll cursor | |
31 | |
32 ;; Up-Arrow previous line x x | |
33 ;; Down-Arrow next line x x | |
34 ;; Right-Arrow next character x | |
35 ;; Left-Arrow previous character x | |
36 ;; KP0 next or previous line x | |
37 ;; KP7 next or previous page x | |
38 ;; KP8 next or previous screen x | |
39 ;; KP2 next or previous end-of-line x x | |
40 ;; Control-e current end-of-line x | |
41 ;; Control-h previous beginning-of-line x | |
42 ;; Next Scr next screen x | |
43 ;; Prev Scr previous screen x | |
44 ;; Search find a string x | |
45 ;; Replace find and replace a string x | |
46 ;; Newline insert a newline x | |
47 ;; Paragraph next or previous paragraph x | |
48 ;; Auto-Fill break lines on spaces x | |
49 | |
50 ;; These functions are not part of the base TPU-edt for the following | |
51 ;; reasons: | |
52 | |
53 ;; Free cursor mode is implemented with the emacs picture-mode functions. | |
54 ;; These functions support moving the cursor all over the screen, however, | |
55 ;; when the cursor is moved past the end of a line, spaces or tabs are | |
56 ;; appended to the line - even if no text is entered in that area. In | |
57 ;; order for a free cursor mode to work exactly like TPU/edt, this trailing | |
58 ;; whitespace needs to be dealt with in every function that might encounter | |
59 ;; it. Such global changes are impractical, however, free cursor mode is | |
60 ;; too valuable to abandon completely, so it has been implemented in those | |
61 ;; functions where it serves best. | |
62 | |
63 ;; The implementation of scroll margins adds overhead to previously | |
64 ;; simple and often used commands. These commands are now responsible | |
65 ;; for their normal operation and part of the display function. There | |
66 ;; is a possibility that this display overhead could adversely affect the | |
67 ;; performance of TPU-edt on slower computers. In order to support the | |
68 ;; widest range of computers, scroll margin support is optional. | |
69 | |
70 ;; I don't know for a fact that the overhead associated with scroll | |
71 ;; margin support is significant. If you find that it is, please send me | |
72 ;; a note describing the extent of the performance degradation. Be sure | |
73 ;; to include a description of the platform where you're running TPU-edt. | |
74 ;; Send your note to the address provided by Gold-V. | |
75 | |
76 ;; Even with these differences and limitations, these functions implement | |
77 ;; important aspects of the real TPU/edt. Those who miss free cursor mode | |
78 ;; and/or scroll margins will appreciate these implementations. | |
79 | |
80 ;;; Usage: | |
81 | |
82 ;; To use this file, simply load it after loading TPU-edt. After that, | |
83 ;; customize TPU-edt to your tastes by setting scroll margins and/or | |
84 ;; turning on free cursor mode. Here's an example for your .emacs file. | |
85 | |
86 ;; (load "tpu-edt") ; Load the base TPU-edt | |
87 ;; (load "tpu-extras") ; and the extras. | |
88 ;; (tpu-set-scroll-margins "10%" "15%") ; Set scroll margins. | |
89 | |
90 ;; Once the extras are loaded, scroll margins and cursor binding can be | |
91 ;; changed with the following commands: | |
92 | |
93 ;; tpu-set-scroll-margins or set scroll margins | |
94 ;; tpu-set-cursor-bound or set cursor bound | |
95 ;; tpu-set-cursor-free or set cursor free | |
96 | |
97 ;; Additionally, Gold-F toggles between bound and free cursor modes. | |
98 | |
99 ;; Note that switching out of free cursor mode or exiting TPU-edt while in | |
100 ;; free cursor mode strips trailing whitespace from every line in the file. | |
101 | |
102 ;;; Code: | |
103 | |
104 | |
7981 | 105 ;;; Gotta have tpu-edt |
4421 | 106 |
7981 | 107 (require 'tpu-edt) |
4421 | 108 |
109 | |
110 ;;; Customization variables | |
111 | |
112 (defconst tpu-top-scroll-margin 0 | |
113 "*Scroll margin at the top of the screen. | |
114 Interpreted as a percent of the current window size.") | |
115 (defconst tpu-bottom-scroll-margin 0 | |
116 "*Scroll margin at the bottom of the screen. | |
117 Interpreted as a percent of the current window size.") | |
118 | |
119 (defvar tpu-backward-char-like-tpu t | |
120 "*If non-nil, in free cursor mode backward-char (left-arrow) works | |
121 just like TPU/edt. Otherwise, backward-char will move to the end of | |
122 the previous line when starting from a line beginning.") | |
123 | |
124 | |
125 ;;; Global variables | |
126 | |
127 (defvar tpu-cursor-free nil | |
128 "If non-nil, let the cursor roam free.") | |
129 | |
130 | |
131 ;;; Hooks -- Set cursor free in picture mode. | |
132 ;;; Clean up when writing a file from cursor free mode. | |
133 | |
11594
ddef149290ed
Removed reference to tpu-gnu-emacs18-p.
Richard M. Stallman <rms@gnu.org>
parents:
7981
diff
changeset
|
134 (add-hook 'picture-mode-hook 'tpu-set-cursor-free) |
4421 | 135 |
136 (defun tpu-write-file-hook nil | |
137 "Eliminate whitespace at ends of lines, if the cursor is free." | |
138 (if (and (buffer-modified-p) tpu-cursor-free) (picture-clean))) | |
139 | |
140 (or (memq 'tpu-write-file-hook write-file-hooks) | |
141 (setq write-file-hooks | |
142 (cons 'tpu-write-file-hook write-file-hooks))) | |
143 | |
144 | |
145 ;;; Utility routines for implementing scroll margins | |
146 | |
147 (defun tpu-top-check (beg lines) | |
148 "Enforce scroll margin at the top of screen." | |
149 (let ((margin (/ (* (window-height) tpu-top-scroll-margin) 100))) | |
150 (cond ((< beg margin) (recenter beg)) | |
151 ((< (- beg lines) margin) (recenter margin))))) | |
152 | |
153 (defun tpu-bottom-check (beg lines) | |
154 "Enforce scroll margin at the bottom of screen." | |
155 (let* ((height (window-height)) | |
156 (margin (+ 1 (/ (* height tpu-bottom-scroll-margin) 100))) | |
157 ;; subtract 1 from height because it includes mode line | |
158 (difference (- height margin 1))) | |
159 (cond ((> beg difference) (recenter beg)) | |
160 ((> (+ beg lines) difference) (recenter (- margin)))))) | |
161 | |
162 | |
163 ;;; Movement by character | |
164 | |
165 (defun tpu-forward-char (num) | |
166 "Move right ARG characters (left if ARG is negative)." | |
167 (interactive "p") | |
168 (if tpu-cursor-free (picture-forward-column num) (forward-char num))) | |
169 | |
170 (defun tpu-backward-char (num) | |
171 "Move left ARG characters (right if ARG is negative)." | |
172 (interactive "p") | |
173 (cond ((not tpu-cursor-free) | |
174 (backward-char num)) | |
175 (tpu-backward-char-like-tpu | |
176 (picture-backward-column num)) | |
177 ((bolp) | |
178 (backward-char 1) | |
179 (picture-end-of-line) | |
180 (picture-backward-column (1- num))) | |
181 (t | |
182 (picture-backward-column num)))) | |
183 | |
184 | |
185 ;;; Movement by line | |
186 | |
187 (defun tpu-next-line (num) | |
188 "Move to next line. | |
189 Prefix argument serves as a repeat count." | |
190 (interactive "p") | |
191 (let ((beg (tpu-current-line))) | |
192 (if tpu-cursor-free (or (eobp) (picture-move-down num)) | |
193 (next-line-internal num)) | |
194 (tpu-bottom-check beg num) | |
195 (setq this-command 'next-line))) | |
196 | |
197 (defun tpu-previous-line (num) | |
198 "Move to previous line. | |
199 Prefix argument serves as a repeat count." | |
200 (interactive "p") | |
201 (let ((beg (tpu-current-line))) | |
202 (if tpu-cursor-free (picture-move-up num) (next-line-internal (- num))) | |
203 (tpu-top-check beg num) | |
204 (setq this-command 'previous-line))) | |
205 | |
206 (defun tpu-next-beginning-of-line (num) | |
207 "Move to beginning of line; if at beginning, move to beginning of next line. | |
208 Accepts a prefix argument for the number of lines to move." | |
209 (interactive "p") | |
210 (let ((beg (tpu-current-line))) | |
211 (backward-char 1) | |
212 (forward-line (- 1 num)) | |
213 (tpu-top-check beg num))) | |
214 | |
215 (defun tpu-next-end-of-line (num) | |
216 "Move to end of line; if at end, move to end of next line. | |
217 Accepts a prefix argument for the number of lines to move." | |
218 (interactive "p") | |
219 (let ((beg (tpu-current-line))) | |
220 (cond (tpu-cursor-free | |
221 (let ((beg (point))) | |
222 (if (< 1 num) (forward-line num)) | |
223 (picture-end-of-line) | |
224 (if (<= (point) beg) (progn (forward-line) (picture-end-of-line))))) | |
225 (t | |
226 (forward-char) | |
227 (end-of-line num))) | |
228 (tpu-bottom-check beg num))) | |
229 | |
230 (defun tpu-previous-end-of-line (num) | |
231 "Move EOL upward. | |
232 Accepts a prefix argument for the number of lines to move." | |
233 (interactive "p") | |
234 (let ((beg (tpu-current-line))) | |
235 (cond (tpu-cursor-free | |
236 (picture-end-of-line (- 1 num))) | |
237 (t | |
238 (end-of-line (- 1 num)))) | |
239 (tpu-top-check beg num))) | |
240 | |
241 (defun tpu-current-end-of-line nil | |
242 "Move point to end of current line." | |
243 (interactive) | |
244 (let ((beg (point))) | |
245 (if tpu-cursor-free (picture-end-of-line) (end-of-line)) | |
246 (if (= beg (point)) (message "You are already at the end of a line.")))) | |
247 | |
248 (defun tpu-forward-line (num) | |
249 "Move to beginning of next line. | |
250 Prefix argument serves as a repeat count." | |
251 (interactive "p") | |
252 (let ((beg (tpu-current-line))) | |
253 (next-line-internal num) | |
254 (tpu-bottom-check beg num) | |
255 (beginning-of-line))) | |
256 | |
257 (defun tpu-backward-line (num) | |
258 "Move to beginning of previous line. | |
259 Prefix argument serves as repeat count." | |
260 (interactive "p") | |
261 (let ((beg (tpu-current-line))) | |
262 (next-line-internal (- num)) | |
263 (tpu-top-check beg num) | |
264 (beginning-of-line))) | |
265 | |
266 | |
267 ;;; Movement by paragraph | |
268 | |
269 (defun tpu-paragraph (num) | |
270 "Move to the next paragraph in the current direction. | |
271 A repeat count means move that many paragraphs." | |
272 (interactive "p") | |
273 (let* ((left nil) | |
274 (beg (tpu-current-line)) | |
275 (height (window-height)) | |
276 (top-percent | |
277 (if (= 0 tpu-top-scroll-margin) 10 tpu-top-scroll-margin)) | |
278 (bottom-percent | |
279 (if (= 0 tpu-bottom-scroll-margin) 15 tpu-bottom-scroll-margin)) | |
280 (top-margin (/ (* height top-percent) 100)) | |
281 (bottom-up-margin (+ 1 (/ (* height bottom-percent) 100))) | |
282 (bottom-margin (max beg (- height bottom-up-margin 1))) | |
283 (top (save-excursion (move-to-window-line top-margin) (point))) | |
284 (bottom (save-excursion (move-to-window-line bottom-margin) (point))) | |
285 (far (save-excursion | |
286 (goto-char bottom) (forward-line (- height 2)) (point)))) | |
287 (cond (tpu-advance | |
288 (tpu-next-paragraph num) | |
289 (cond((> (point) far) | |
290 (setq left (save-excursion (forward-line height))) | |
291 (if (= 0 left) (recenter top-margin) | |
292 (recenter (- left bottom-up-margin)))) | |
293 (t | |
294 (and (> (point) bottom) (recenter bottom-margin))))) | |
295 (t | |
296 (tpu-previous-paragraph num) | |
297 (and (< (point) top) (recenter (min beg top-margin))))))) | |
298 | |
299 | |
300 ;;; Movement by page | |
301 | |
302 (defun tpu-page (num) | |
303 "Move to the next page in the current direction. | |
304 A repeat count means move that many pages." | |
305 (interactive "p") | |
306 (let* ((left nil) | |
307 (beg (tpu-current-line)) | |
308 (height (window-height)) | |
309 (top-percent | |
310 (if (= 0 tpu-top-scroll-margin) 10 tpu-top-scroll-margin)) | |
311 (bottom-percent | |
312 (if (= 0 tpu-bottom-scroll-margin) 15 tpu-bottom-scroll-margin)) | |
313 (top-margin (/ (* height top-percent) 100)) | |
314 (bottom-up-margin (+ 1 (/ (* height bottom-percent) 100))) | |
315 (bottom-margin (max beg (- height bottom-up-margin 1))) | |
316 (top (save-excursion (move-to-window-line top-margin) (point))) | |
317 (bottom (save-excursion (move-to-window-line bottom-margin) (point))) | |
318 (far (save-excursion | |
319 (goto-char bottom) (forward-line (- height 2)) (point)))) | |
320 (cond (tpu-advance | |
321 (forward-page num) | |
322 (cond((> (point) far) | |
323 (setq left (save-excursion (forward-line height))) | |
324 (if (= 0 left) (recenter top-margin) | |
325 (recenter (- left bottom-up-margin)))) | |
326 (t | |
327 (and (> (point) bottom) (recenter bottom-margin))))) | |
328 (t | |
329 (backward-page num) | |
330 (and (< (point) top) (recenter (min beg top-margin))))))) | |
331 | |
332 | |
333 ;;; Scrolling | |
334 | |
335 (defun tpu-scroll-window-down (num) | |
336 "Scroll the display down to the next section. | |
337 A repeat count means scroll that many sections." | |
338 (interactive "p") | |
339 (let* ((beg (tpu-current-line)) | |
340 (height (1- (window-height))) | |
341 (lines (* num (/ (* height tpu-percent-scroll) 100)))) | |
342 (next-line-internal (- lines)) | |
343 (tpu-top-check beg lines))) | |
344 | |
345 (defun tpu-scroll-window-up (num) | |
346 "Scroll the display up to the next section. | |
347 A repeat count means scroll that many sections." | |
348 (interactive "p") | |
349 (let* ((beg (tpu-current-line)) | |
350 (height (1- (window-height))) | |
351 (lines (* num (/ (* height tpu-percent-scroll) 100)))) | |
352 (next-line-internal lines) | |
353 (tpu-bottom-check beg lines))) | |
354 | |
355 | |
356 ;;; Replace the TPU-edt internal search function | |
357 | |
358 (defun tpu-search-internal (pat &optional quiet) | |
359 "Search for a string or regular expression." | |
360 (let* ((left nil) | |
361 (beg (tpu-current-line)) | |
362 (height (window-height)) | |
363 (top-percent | |
364 (if (= 0 tpu-top-scroll-margin) 10 tpu-top-scroll-margin)) | |
365 (bottom-percent | |
366 (if (= 0 tpu-bottom-scroll-margin) 15 tpu-bottom-scroll-margin)) | |
367 (top-margin (/ (* height top-percent) 100)) | |
368 (bottom-up-margin (+ 1 (/ (* height bottom-percent) 100))) | |
369 (bottom-margin (max beg (- height bottom-up-margin 1))) | |
370 (top (save-excursion (move-to-window-line top-margin) (point))) | |
371 (bottom (save-excursion (move-to-window-line bottom-margin) (point))) | |
372 (far (save-excursion | |
373 (goto-char bottom) (forward-line (- height 2)) (point)))) | |
374 (tpu-search-internal-core pat quiet) | |
4524
3d55b6a74eec
(tpu-search-internal): Changed variable
Richard M. Stallman <rms@gnu.org>
parents:
4503
diff
changeset
|
375 (if tpu-searching-forward |
4421 | 376 (cond((> (point) far) |
377 (setq left (save-excursion (forward-line height))) | |
378 (if (= 0 left) (recenter top-margin) | |
379 (recenter (- left bottom-up-margin)))) | |
380 (t | |
381 (and (> (point) bottom) (recenter bottom-margin)))) | |
382 (and (< (point) top) (recenter (min beg top-margin)))))) | |
383 | |
384 | |
385 | |
386 ;;; Replace the newline, newline-and-indent, and do-auto-fill functions | |
387 | |
388 (or (fboundp 'tpu-old-newline) | |
389 (fset 'tpu-old-newline (symbol-function 'newline))) | |
390 (or (fboundp 'tpu-old-do-auto-fill) | |
391 (fset 'tpu-old-do-auto-fill (symbol-function 'do-auto-fill))) | |
392 (or (fboundp 'tpu-old-newline-and-indent) | |
393 (fset 'tpu-old-newline-and-indent (symbol-function 'newline-and-indent))) | |
394 | |
395 (defun newline (&optional num) | |
396 "Insert a newline. With arg, insert that many newlines. | |
397 In Auto Fill mode, can break the preceding line if no numeric arg. | |
398 This is the TPU-edt version that respects the bottom scroll margin." | |
399 (interactive "p") | |
400 (let ((beg (tpu-current-line))) | |
401 (or num (setq num 1)) | |
402 (tpu-old-newline num) | |
403 (tpu-bottom-check beg num))) | |
404 | |
405 (defun newline-and-indent nil | |
406 "Insert a newline, then indent according to major mode. | |
407 Indentation is done using the current indent-line-function. | |
408 In programming language modes, this is the same as TAB. | |
409 In some text modes, where TAB inserts a tab, this indents | |
410 to the specified left-margin column. This is the TPU-edt | |
411 version that respects the bottom scroll margin." | |
412 (interactive) | |
413 (let ((beg (tpu-current-line))) | |
414 (tpu-old-newline-and-indent) | |
415 (tpu-bottom-check beg 1))) | |
416 | |
417 (defun do-auto-fill nil | |
418 "TPU-edt version that respects the bottom scroll margin." | |
419 (let ((beg (tpu-current-line))) | |
420 (tpu-old-do-auto-fill) | |
421 (tpu-bottom-check beg 1))) | |
422 | |
423 | |
424 ;;; Function to set scroll margins | |
425 | |
5187
3c6f2b0ecf8b
Remove free/bound cursor and scroll
Richard M. Stallman <rms@gnu.org>
parents:
5140
diff
changeset
|
426 ;;;###autoload |
4421 | 427 (defun tpu-set-scroll-margins (top bottom) |
428 "Set scroll margins." | |
429 (interactive | |
430 "sEnter top scroll margin (N lines or N%% or RETURN for current value): \ | |
431 \nsEnter bottom scroll margin (N lines or N%% or RETURN for current value): ") | |
432 ;; set top scroll margin | |
433 (or (string= top "") | |
434 (if (string= "%" (substring top -1)) | |
435 (setq tpu-top-scroll-margin (string-to-int top)) | |
436 (setq tpu-top-scroll-margin | |
437 (/ (1- (+ (* (string-to-int top) 100) (window-height))) | |
438 (window-height))))) | |
439 ;; set bottom scroll margin | |
440 (or (string= bottom "") | |
441 (if (string= "%" (substring bottom -1)) | |
442 (setq tpu-bottom-scroll-margin (string-to-int bottom)) | |
443 (setq tpu-bottom-scroll-margin | |
444 (/ (1- (+ (* (string-to-int bottom) 100) (window-height))) | |
445 (window-height))))) | |
446 ;; report scroll margin settings if running interactively | |
447 (and (interactive-p) | |
448 (message "Scroll margins set. Top = %s%%, Bottom = %s%%" | |
449 tpu-top-scroll-margin tpu-bottom-scroll-margin))) | |
450 | |
451 | |
452 ;;; Functions to set cursor bound or free | |
453 | |
5187
3c6f2b0ecf8b
Remove free/bound cursor and scroll
Richard M. Stallman <rms@gnu.org>
parents:
5140
diff
changeset
|
454 ;;;###autoload |
4421 | 455 (defun tpu-set-cursor-free nil |
456 "Allow the cursor to move freely about the screen." | |
457 (interactive) | |
458 (setq tpu-cursor-free t) | |
459 (substitute-key-definition 'tpu-set-cursor-free | |
460 'tpu-set-cursor-bound | |
461 GOLD-map) | |
462 (message "The cursor will now move freely about the screen.")) | |
463 | |
5187
3c6f2b0ecf8b
Remove free/bound cursor and scroll
Richard M. Stallman <rms@gnu.org>
parents:
5140
diff
changeset
|
464 ;;;###autoload |
4421 | 465 (defun tpu-set-cursor-bound nil |
466 "Constrain the cursor to the flow of the text." | |
467 (interactive) | |
468 (picture-clean) | |
469 (setq tpu-cursor-free nil) | |
470 (substitute-key-definition 'tpu-set-cursor-bound | |
471 'tpu-set-cursor-free | |
472 GOLD-map) | |
473 (message "The cursor is now bound to the flow of your text.")) | |
474 | |
475 ;;; tpu-extras.el ends here |