| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 |
|
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 |
|
|---|
| 38 |
|
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
|
|---|
| 43 |
|
|---|
| 44 |
|
|---|
| 45 |
|
|---|
| 46 |
|
|---|
| 47 |
|
|---|
| 48 |
|
|---|
| 49 |
|
|---|
| 50 |
|
|---|
| 51 |
|
|---|
| 52 |
|
|---|
| 53 |
|
|---|
| 54 |
|
|---|
| 55 |
|
|---|
| 56 |
|
|---|
| 57 |
|
|---|
| 58 |
|
|---|
| 59 |
|
|---|
| 60 |
|
|---|
| 61 |
|
|---|
| 62 |
|
|---|
| 63 |
|
|---|
| 64 |
|
|---|
| 65 |
|
|---|
| 66 |
|
|---|
| 67 |
|
|---|
| 68 |
|
|---|
| 69 |
|
|---|
| 70 |
|
|---|
| 71 |
|
|---|
| 72 |
|
|---|
| 73 |
|
|---|
| 74 |
|
|---|
| 75 |
|
|---|
| 76 |
|
|---|
| 77 |
|
|---|
| 78 |
|
|---|
| 79 |
|
|---|
| 80 |
|
|---|
| 81 |
|
|---|
| 82 |
|
|---|
| 83 |
|
|---|
| 84 |
|
|---|
| 85 |
|
|---|
| 86 |
|
|---|
| 87 |
|
|---|
| 88 |
|
|---|
| 89 |
|
|---|
| 90 |
|
|---|
| 91 |
|
|---|
| 92 |
|
|---|
| 93 |
|
|---|
| 94 |
|
|---|
| 95 |
|
|---|
| 96 |
|
|---|
| 97 |
|
|---|
| 98 |
|
|---|
| 99 |
|
|---|
| 100 |
|
|---|
| 101 |
|
|---|
| 102 |
|
|---|
| 103 |
|
|---|
| 104 |
|
|---|
| 105 |
|
|---|
| 106 |
|
|---|
| 107 |
|
|---|
| 108 |
|
|---|
| 109 |
(require 'tpu-edt) |
|---|
| 110 |
|
|---|
| 111 |
|
|---|
| 112 |
|
|---|
| 113 |
|
|---|
| 114 |
(defcustom tpu-top-scroll-margin 0 |
|---|
| 115 |
"*Scroll margin at the top of the screen. |
|---|
| 116 |
Interpreted as a percent of the current window size." |
|---|
| 117 |
:type 'integer |
|---|
| 118 |
:group 'tpu) |
|---|
| 119 |
(defcustom tpu-bottom-scroll-margin 0 |
|---|
| 120 |
"*Scroll margin at the bottom of the screen. |
|---|
| 121 |
Interpreted as a percent of the current window size." |
|---|
| 122 |
:type 'integer |
|---|
| 123 |
:group 'tpu) |
|---|
| 124 |
|
|---|
| 125 |
(defcustom tpu-backward-char-like-tpu t |
|---|
| 126 |
"*If non-nil, in free cursor mode backward-char (left-arrow) works |
|---|
| 127 |
just like TPU/edt. Otherwise, backward-char will move to the end of |
|---|
| 128 |
the previous line when starting from a line beginning." |
|---|
| 129 |
:type 'boolean |
|---|
| 130 |
:group 'tpu) |
|---|
| 131 |
|
|---|
| 132 |
|
|---|
| 133 |
|
|---|
| 134 |
|
|---|
| 135 |
(defvar tpu-cursor-free nil |
|---|
| 136 |
"If non-nil, let the cursor roam free.") |
|---|
| 137 |
|
|---|
| 138 |
|
|---|
| 139 |
|
|---|
| 140 |
|
|---|
| 141 |
|
|---|
| 142 |
(add-hook 'picture-mode-hook 'tpu-set-cursor-free) |
|---|
| 143 |
|
|---|
| 144 |
(defun tpu-before-save-hook () |
|---|
| 145 |
"Eliminate whitespace at ends of lines, if the cursor is free." |
|---|
| 146 |
(if (and (buffer-modified-p) tpu-cursor-free) (tpu-trim-line-ends))) |
|---|
| 147 |
|
|---|
| 148 |
(add-hook 'before-save-hook 'tpu-before-save-hook) |
|---|
| 149 |
|
|---|
| 150 |
|
|---|
| 151 |
|
|---|
| 152 |
|
|---|
| 153 |
(defun tpu-top-check (beg lines) |
|---|
| 154 |
"Enforce scroll margin at the top of screen." |
|---|
| 155 |
(let ((margin (/ (* (window-height) tpu-top-scroll-margin) 100))) |
|---|
| 156 |
(cond ((< beg margin) (recenter beg)) |
|---|
| 157 |
((< (- beg lines) margin) (recenter margin))))) |
|---|
| 158 |
|
|---|
| 159 |
(defun tpu-bottom-check (beg lines) |
|---|
| 160 |
"Enforce scroll margin at the bottom of screen." |
|---|
| 161 |
(let* ((height (window-height)) |
|---|
| 162 |
(margin (+ 1 (/ (* height tpu-bottom-scroll-margin) 100))) |
|---|
| 163 |
|
|---|
| 164 |
(difference (- height margin 1))) |
|---|
| 165 |
(cond ((> beg difference) (recenter beg)) |
|---|
| 166 |
((> (+ beg lines) difference) (recenter (- margin)))))) |
|---|
| 167 |
|
|---|
| 168 |
|
|---|
| 169 |
|
|---|
| 170 |
|
|---|
| 171 |
(defun tpu-forward-char (num) |
|---|
| 172 |
"Move right ARG characters (left if ARG is negative)." |
|---|
| 173 |
(interactive "p") |
|---|
| 174 |
(if tpu-cursor-free (picture-forward-column num) (forward-char num))) |
|---|
| 175 |
|
|---|
| 176 |
(defun tpu-backward-char (num) |
|---|
| 177 |
"Move left ARG characters (right if ARG is negative)." |
|---|
| 178 |
(interactive "p") |
|---|
| 179 |
(cond ((not tpu-cursor-free) |
|---|
| 180 |
(backward-char num)) |
|---|
| 181 |
(tpu-backward-char-like-tpu |
|---|
| 182 |
(picture-backward-column num)) |
|---|
| 183 |
((bolp) |
|---|
| 184 |
(backward-char 1) |
|---|
| 185 |
(picture-end-of-line) |
|---|
| 186 |
(picture-backward-column (1- num))) |
|---|
| 187 |
(t |
|---|
| 188 |
(picture-backward-column num)))) |
|---|
| 189 |
|
|---|
| 190 |
|
|---|
| 191 |
|
|---|
| 192 |
|
|---|
| 193 |
(defun tpu-next-line (num) |
|---|
| 194 |
"Move to next line. |
|---|
| 195 |
Prefix argument serves as a repeat count." |
|---|
| 196 |
(interactive "p") |
|---|
| 197 |
(let ((beg (tpu-current-line))) |
|---|
| 198 |
(if tpu-cursor-free (or (eobp) (picture-move-down num)) |
|---|
| 199 |
(line-move num)) |
|---|
| 200 |
(tpu-bottom-check beg num) |
|---|
| 201 |
(setq this-command 'next-line))) |
|---|
| 202 |
|
|---|
| 203 |
(defun tpu-previous-line (num) |
|---|
| 204 |
"Move to previous line. |
|---|
| 205 |
Prefix argument serves as a repeat count." |
|---|
| 206 |
(interactive "p") |
|---|
| 207 |
(let ((beg (tpu-current-line))) |
|---|
| 208 |
(if tpu-cursor-free (picture-move-up num) (line-move (- num))) |
|---|
| 209 |
(tpu-top-check beg num) |
|---|
| 210 |
(setq this-command 'previous-line))) |
|---|
| 211 |
|
|---|
| 212 |
(defun tpu-next-beginning-of-line (num) |
|---|
| 213 |
"Move to beginning of line; if at beginning, move to beginning of next line. |
|---|
| 214 |
Accepts a prefix argument for the number of lines to move." |
|---|
| 215 |
(interactive "p") |
|---|
| 216 |
(let ((beg (tpu-current-line))) |
|---|
| 217 |
(backward-char 1) |
|---|
| 218 |
(forward-visible-line (- 1 num)) |
|---|
| 219 |
(tpu-top-check beg num))) |
|---|
| 220 |
|
|---|
| 221 |
(defun tpu-next-end-of-line (num) |
|---|
| 222 |
"Move to end of line; if at end, move to end of next line. |
|---|
| 223 |
Accepts a prefix argument for the number of lines to move." |
|---|
| 224 |
(interactive "p") |
|---|
| 225 |
(let ((beg (tpu-current-line))) |
|---|
| 226 |
(cond (tpu-cursor-free |
|---|
| 227 |
(let ((beg (point))) |
|---|
| 228 |
(if (< 1 num) (forward-line num)) |
|---|
| 229 |
(picture-end-of-line) |
|---|
| 230 |
(if (<= (point) beg) (progn (forward-line) (picture-end-of-line))))) |
|---|
| 231 |
(t |
|---|
| 232 |
(forward-char) |
|---|
| 233 |
(end-of-line num))) |
|---|
| 234 |
(tpu-bottom-check beg num))) |
|---|
| 235 |
|
|---|
| 236 |
(defun tpu-previous-end-of-line (num) |
|---|
| 237 |
"Move EOL upward. |
|---|
| 238 |
Accepts a prefix argument for the number of lines to move." |
|---|
| 239 |
(interactive "p") |
|---|
| 240 |
(let ((beg (tpu-current-line))) |
|---|
| 241 |
(cond (tpu-cursor-free |
|---|
| 242 |
(picture-end-of-line (- 1 num))) |
|---|
| 243 |
(t |
|---|
| 244 |
(end-of-line (- 1 num)))) |
|---|
| 245 |
(tpu-top-check beg num))) |
|---|
| 246 |
|
|---|
| 247 |
(defun tpu-current-end-of-line () |
|---|
| 248 |
"Move point to end of current line." |
|---|
| 249 |
(interactive) |
|---|
| 250 |
(let ((beg (point))) |
|---|
| 251 |
(if tpu-cursor-free (picture-end-of-line) (end-of-line)) |
|---|
| 252 |
(if (= beg (point)) (message "You are already at the end of a line.")))) |
|---|
| 253 |
|
|---|
| 254 |
(defun tpu-forward-line (num) |
|---|
| 255 |
"Move to beginning of next line. |
|---|
| 256 |
Prefix argument serves as a repeat count." |
|---|
| 257 |
(interactive "p") |
|---|
| 258 |
(let ((beg (tpu-current-line))) |
|---|
| 259 |
(line-move num) |
|---|
| 260 |
(tpu-bottom-check beg num) |
|---|
| 261 |
(beginning-of-line))) |
|---|
| 262 |
|
|---|
| 263 |
(defun tpu-backward-line (num) |
|---|
| 264 |
"Move to beginning of previous line. |
|---|
| 265 |
Prefix argument serves as repeat count." |
|---|
| 266 |
(interactive "p") |
|---|
| 267 |
(let ((beg (tpu-current-line))) |
|---|
| 268 |
(or (bolp) (>= 0 num) (setq num (- num 1))) |
|---|
| 269 |
(line-move (- num)) |
|---|
| 270 |
(tpu-top-check beg num) |
|---|
| 271 |
(beginning-of-line))) |
|---|
| 272 |
|
|---|
| 273 |
|
|---|
| 274 |
|
|---|
| 275 |
|
|---|
| 276 |
(defun tpu-paragraph (num) |
|---|
| 277 |
"Move to the next paragraph in the current direction. |
|---|
| 278 |
A repeat count means move that many paragraphs." |
|---|
| 279 |
(interactive "p") |
|---|
| 280 |
(let* ((left nil) |
|---|
| 281 |
(beg (tpu-current-line)) |
|---|
| 282 |
(height (window-height)) |
|---|
| 283 |
(top-percent |
|---|
| 284 |
(if (= 0 tpu-top-scroll-margin) 10 tpu-top-scroll-margin)) |
|---|
| 285 |
(bottom-percent |
|---|
| 286 |
(if (= 0 tpu-bottom-scroll-margin) 15 tpu-bottom-scroll-margin)) |
|---|
| 287 |
(top-margin (/ (* height top-percent) 100)) |
|---|
| 288 |
(bottom-up-margin (+ 1 (/ (* height bottom-percent) 100))) |
|---|
| 289 |
(bottom-margin (max beg (- height bottom-up-margin 1))) |
|---|
| 290 |
(top (save-excursion (move-to-window-line top-margin) (point))) |
|---|
| 291 |
(bottom (save-excursion (move-to-window-line bottom-margin) (point))) |
|---|
| 292 |
(far (save-excursion |
|---|
| 293 |
(goto-char bottom) (forward-line (- height 2)) (point)))) |
|---|
| 294 |
(cond (tpu-advance |
|---|
| 295 |
(tpu-next-paragraph num) |
|---|
| 296 |
(cond((> (point) far) |
|---|
| 297 |
(setq left (save-excursion (forward-line height))) |
|---|
| 298 |
(if (= 0 left) (recenter top-margin) |
|---|
| 299 |
(recenter (- left bottom-up-margin)))) |
|---|
| 300 |
(t |
|---|
| 301 |
(and (> (point) bottom) (recenter bottom-margin))))) |
|---|
| 302 |
(t |
|---|
| 303 |
(tpu-previous-paragraph num) |
|---|
| 304 |
(and (< (point) top) (recenter (min beg top-margin))))))) |
|---|
| 305 |
|
|---|
| 306 |
|
|---|
| 307 |
|
|---|
| 308 |
|
|---|
| 309 |
(defun tpu-page (num) |
|---|
| 310 |
"Move to the next page in the current direction. |
|---|
| 311 |
A repeat count means move that many pages." |
|---|
| 312 |
(interactive "p") |
|---|
| 313 |
(let* ((left nil) |
|---|
| 314 |
(beg (tpu-current-line)) |
|---|
| 315 |
(height (window-height)) |
|---|
| 316 |
(top-percent |
|---|
| 317 |
(if (= 0 tpu-top-scroll-margin) 10 tpu-top-scroll-margin)) |
|---|
| 318 |
(bottom-percent |
|---|
| 319 |
(if (= 0 tpu-bottom-scroll-margin) 15 tpu-bottom-scroll-margin)) |
|---|
| 320 |
(top-margin (/ (* height top-percent) 100)) |
|---|
| 321 |
(bottom-up-margin (+ 1 (/ (* height bottom-percent) 100))) |
|---|
| 322 |
(bottom-margin (max beg (- height bottom-up-margin 1))) |
|---|
| 323 |
(top (save-excursion (move-to-window-line top-margin) (point))) |
|---|
| 324 |
(bottom (save-excursion (move-to-window-line bottom-margin) (point))) |
|---|
| 325 |
(far (save-excursion |
|---|
| 326 |
(goto-char bottom) (forward-line (- height 2)) (point)))) |
|---|
| 327 |
(cond (tpu-advance |
|---|
| 328 |
(forward-page num) |
|---|
| 329 |
(cond((> (point) far) |
|---|
| 330 |
(setq left (save-excursion (forward-line height))) |
|---|
| 331 |
(if (= 0 left) (recenter top-margin) |
|---|
| 332 |
(recenter (- left bottom-up-margin)))) |
|---|
| 333 |
(t |
|---|
| 334 |
(and (> (point) bottom) (recenter bottom-margin))))) |
|---|
| 335 |
(t |
|---|
| 336 |
(backward-page num) |
|---|
| 337 |
(and (< (point) top) (recenter (min beg top-margin))))))) |
|---|
| 338 |
|
|---|
| 339 |
|
|---|
| 340 |
|
|---|
| 341 |
|
|---|
| 342 |
(defun tpu-scroll-window-down (num) |
|---|
| 343 |
"Scroll the display down to the next section. |
|---|
| 344 |
A repeat count means scroll that many sections." |
|---|
| 345 |
(interactive "p") |
|---|
| 346 |
(let* ((beg (tpu-current-line)) |
|---|
| 347 |
(height (1- (window-height))) |
|---|
| 348 |
(lines (* num (/ (* height tpu-percent-scroll) 100)))) |
|---|
| 349 |
(line-move (- lines)) |
|---|
| 350 |
(tpu-top-check beg lines))) |
|---|
| 351 |
|
|---|
| 352 |
(defun tpu-scroll-window-up (num) |
|---|
| 353 |
"Scroll the display up to the next section. |
|---|
| 354 |
A repeat count means scroll that many sections." |
|---|
| 355 |
(interactive "p") |
|---|
| 356 |
(let* ((beg (tpu-current-line)) |
|---|
| 357 |
(height (1- (window-height))) |
|---|
| 358 |
(lines (* num (/ (* height tpu-percent-scroll) 100)))) |
|---|
| 359 |
(line-move lines) |
|---|
| 360 |
(tpu-bottom-check beg lines))) |
|---|
| 361 |
|
|---|
| 362 |
|
|---|
| 363 |
|
|---|
| 364 |
|
|---|
| 365 |
(defun tpu-search-internal (pat &optional quiet) |
|---|
| 366 |
"Search for a string or regular expression." |
|---|
| 367 |
(let* ((left nil) |
|---|
| 368 |
(beg (tpu-current-line)) |
|---|
| 369 |
(height (window-height)) |
|---|
| 370 |
(top-percent |
|---|
| 371 |
(if (= 0 tpu-top-scroll-margin) 10 tpu-top-scroll-margin)) |
|---|
| 372 |
(bottom-percent |
|---|
| 373 |
(if (= 0 tpu-bottom-scroll-margin) 15 tpu-bottom-scroll-margin)) |
|---|
| 374 |
(top-margin (/ (* height top-percent) 100)) |
|---|
| 375 |
(bottom-up-margin (+ 1 (/ (* height bottom-percent) 100))) |
|---|
| 376 |
(bottom-margin (max beg (- height bottom-up-margin 1))) |
|---|
| 377 |
(top (save-excursion (move-to-window-line top-margin) (point))) |
|---|
| 378 |
(bottom (save-excursion (move-to-window-line bottom-margin) (point))) |
|---|
| 379 |
(far (save-excursion |
|---|
| 380 |
(goto-char bottom) (forward-line (- height 2)) (point)))) |
|---|
| 381 |
(tpu-search-internal-core pat quiet) |
|---|
| 382 |
(if tpu-searching-forward |
|---|
| 383 |
(cond((> (point) far) |
|---|
| 384 |
(setq left (save-excursion (forward-line height))) |
|---|
| 385 |
(if (= 0 left) (recenter top-margin) |
|---|
| 386 |
(recenter (- left bottom-up-margin)))) |
|---|
| 387 |
(t |
|---|
| 388 |
(and (> (point) bottom) (recenter bottom-margin)))) |
|---|
| 389 |
(and (< (point) top) (recenter (min beg top-margin)))))) |
|---|
| 390 |
|
|---|
| 391 |
|
|---|
| 392 |
|
|---|
| 393 |
|
|---|
| 394 |
(defadvice newline (around tpu-respect-bottom-scroll-margin activate disable) |
|---|
| 395 |
"Respect `tpu-bottom-scroll-margin'." |
|---|
| 396 |
(let ((beg (tpu-current-line)) |
|---|
| 397 |
(num (prefix-numeric-value (ad-get-arg 0)))) |
|---|
| 398 |
ad-do-it |
|---|
| 399 |
(tpu-bottom-check beg num))) |
|---|
| 400 |
|
|---|
| 401 |
(defadvice newline-and-indent (around tpu-respect-bottom-scroll-margin) |
|---|
| 402 |
"Respect `tpu-bottom-scroll-margin'." |
|---|
| 403 |
(let ((beg (tpu-current-line))) |
|---|
| 404 |
ad-do-it |
|---|
| 405 |
(tpu-bottom-check beg 1))) |
|---|
| 406 |
|
|---|
| 407 |
(defadvice do-auto-fill (around tpu-respect-bottom-scroll-margin) |
|---|
| 408 |
"Respect `tpu-bottom-scroll-margin'." |
|---|
| 409 |
(let ((beg (tpu-current-line))) |
|---|
| 410 |
ad-do-it |
|---|
| 411 |
(tpu-bottom-check beg 1))) |
|---|
| 412 |
|
|---|
| 413 |
|
|---|
| 414 |
|
|---|
| 415 |
|
|---|
| 416 |
|
|---|
| 417 |
(defun tpu-set-scroll-margins (top bottom) |
|---|
| 418 |
"Set scroll margins." |
|---|
| 419 |
(interactive |
|---|
| 420 |
"sEnter top scroll margin (N lines or N%% or RETURN for current value): \ |
|---|
| 421 |
\nsEnter bottom scroll margin (N lines or N%% or RETURN for current value): ") |
|---|
| 422 |
|
|---|
| 423 |
(or (string= top "") |
|---|
| 424 |
(setq tpu-top-scroll-margin |
|---|
| 425 |
(if (string= "%" (substring top -1)) |
|---|
| 426 |
(string-to-number top) |
|---|
| 427 |
(/ (1- (+ (* (string-to-number top) 100) (window-height))) |
|---|
| 428 |
(window-height))))) |
|---|
| 429 |
|
|---|
| 430 |
(or (string= bottom "") |
|---|
| 431 |
(setq tpu-bottom-scroll-margin |
|---|
| 432 |
(if (string= "%" (substring bottom -1)) |
|---|
| 433 |
(string-to-number bottom) |
|---|
| 434 |
(/ (1- (+ (* (string-to-number bottom) 100) (window-height))) |
|---|
| 435 |
(window-height))))) |
|---|
| 436 |
(dolist (f '(newline newline-and-indent do-auto-fill)) |
|---|
| 437 |
(ad-enable-advice f 'around 'tpu-respect-bottom-scroll-margin) |
|---|
| 438 |
(ad-activate f)) |
|---|
| 439 |
|
|---|
| 440 |
(and (interactive-p) |
|---|
| 441 |
(message "Scroll margins set. Top = %s%%, Bottom = %s%%" |
|---|
| 442 |
tpu-top-scroll-margin tpu-bottom-scroll-margin))) |
|---|
| 443 |
|
|---|
| 444 |
|
|---|
| 445 |
|
|---|
| 446 |
|
|---|
| 447 |
|
|---|
| 448 |
(defun tpu-set-cursor-free () |
|---|
| 449 |
"Allow the cursor to move freely about the screen." |
|---|
| 450 |
(interactive) |
|---|
| 451 |
(setq tpu-cursor-free t) |
|---|
| 452 |
(substitute-key-definition 'tpu-set-cursor-free |
|---|
| 453 |
'tpu-set-cursor-bound |
|---|
| 454 |
GOLD-map) |
|---|
| 455 |
(message "The cursor will now move freely about the screen.")) |
|---|
| 456 |
|
|---|
| 457 |
|
|---|
| 458 |
(defun tpu-set-cursor-bound () |
|---|
| 459 |
"Constrain the cursor to the flow of the text." |
|---|
| 460 |
(interactive) |
|---|
| 461 |
(tpu-trim-line-ends) |
|---|
| 462 |
(setq tpu-cursor-free nil) |
|---|
| 463 |
(substitute-key-definition 'tpu-set-cursor-bound |
|---|
| 464 |
'tpu-set-cursor-free |
|---|
| 465 |
GOLD-map) |
|---|
| 466 |
(message "The cursor is now bound to the flow of your text.")) |
|---|
| 467 |
|
|---|
| 468 |
|
|---|
| 469 |
|
|---|
| 470 |
|
|---|