annotate lisp/emulators/tpu-extras.el @ 0:376386a54a3c r19-14

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