]> code.delx.au - gnu-emacs/blob - lisp/follow.el
Convert consecutive FSF copyright years to ranges.
[gnu-emacs] / lisp / follow.el
1 ;;; follow.el --- synchronize windows showing the same buffer
2
3 ;; Copyright (C) 1995-1997, 1999, 2001-2011 Free Software Foundation, Inc.
4
5 ;; Author: Anders Lindgren <andersl@andersl.com>
6 ;; Maintainer: FSF (Anders' email bounces, Sep 2005)
7 ;; Created: 1995-05-25
8 ;; Keywords: display, window, minor-mode, convenience
9
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 3 of the License, or
15 ;; (at your option) any later version.
16
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. If not, see <http://www.gnu.org/licenses/>.
24
25 ;;; Commentary:
26
27 ;;{{{ Documentation
28
29 ;; `Follow mode' is a minor mode for Emacs and XEmacs that
30 ;; combines windows into one tall virtual window.
31 ;;
32 ;; The feeling of a "virtual window" has been accomplished by the use
33 ;; of two major techniques:
34 ;;
35 ;; * The windows always display adjacent sections of the buffer.
36 ;; This means that whenever one window is moved, all the
37 ;; others will follow. (Hence the name Follow mode.)
38 ;;
39 ;; * Should the point (cursor) end up outside a window, another
40 ;; window displaying that point is selected, if possible. This
41 ;; makes it possible to walk between windows using normal cursor
42 ;; movement commands.
43 ;;
44 ;; Follow mode comes to its prime when a large screen and two
45 ;; side-by-side window are used. The user can, with the help of Follow
46 ;; mode, use two full-height windows as though they are one.
47 ;; Imagine yourself editing a large function, or section of text,
48 ;; and being able to use 144 lines instead of the normal 72... (your
49 ;; mileage may vary).
50
51 ;; To test this package, make sure `follow' is loaded, or will be
52 ;; autoloaded when activated (see below). Then do the following:
53 ;;
54 ;; * Find your favorite file (preferably a long one).
55 ;;
56 ;; * Resize Emacs so that it will be wide enough for two full size
57 ;; columns. Delete the other windows and split the window with
58 ;; the commands `C-x 1 C-x 3'.
59 ;;
60 ;; * Give the command:
61 ;; M-x follow-mode <RETURN>
62 ;;
63 ;; * Now the display should look something like (assuming the text "71"
64 ;; is on line 71):
65 ;;
66 ;; +----------+----------+
67 ;; |1 |73 |
68 ;; |2 |74 |
69 ;; |3 |75 |
70 ;; ... ...
71 ;; |71 |143 |
72 ;; |72 |144 |
73 ;; +----------+----------+
74 ;;
75 ;; As you can see, the right-hand window starts at line 73, the line
76 ;; immediately below the end of the left-hand window. As long as
77 ;; `follow-mode' is active, the two windows will follow each other!
78 ;;
79 ;; * Play around and enjoy! Scroll one window and watch the other.
80 ;; Jump to the beginning or end. Press `Cursor down' at the last
81 ;; line of the left-hand window. Enter new lines into the
82 ;; text. Enter long lines spanning several lines, or several
83 ;; windows.
84 ;;
85 ;; * Should you find `Follow' mode annoying, just type
86 ;; M-x follow-mode <RETURN>
87 ;; to turn it off.
88
89
90 ;; The command `follow-delete-other-windows-and-split' maximises the
91 ;; visible area of the current buffer.
92 ;;
93 ;; I recommend adding it, and `follow-mode', to hotkeys in the global
94 ;; key map. To do so, add the following lines (replacing `[f7]' and
95 ;; `[f8]' with your favorite keys) to the init file:
96 ;;
97 ;; (global-set-key [f8] 'follow-mode)
98 ;; (global-set-key [f7] 'follow-delete-other-windows-and-split)
99
100
101 ;; There exist two system variables that control the appearence of
102 ;; lines wider than the window containing them. The default is to
103 ;; truncate long lines whenever a window isn't as wide as the frame.
104 ;;
105 ;; To make sure lines are never truncated, please place the following
106 ;; lines in your init file:
107 ;;
108 ;; (setq truncate-lines nil)
109 ;; (setq truncate-partial-width-windows nil)
110
111
112 ;; Since the display of XEmacs is pixel-oriented, a line could be
113 ;; clipped in half at the bottom of the window.
114 ;;
115 ;; To make XEmacs avoid clipping (normal) lines, please place the
116 ;; following line in your init-file:
117 ;;
118 ;; (setq pixel-vertical-clip-threshold 30)
119
120
121 ;; The correct way to cofigurate Follow mode, or any other mode for
122 ;; that matter, is to create one or more functions that do
123 ;; whatever you would like to do. These functions are then added to
124 ;; a hook.
125 ;;
126 ;; When `Follow' mode is activated, functions stored in the hook
127 ;; `follow-mode-hook' are called. When it is deactivated
128 ;; `follow-mode-off-hook' is run.
129 ;;
130 ;; The keymap `follow-key-map' contains key bindings activated by
131 ;; `follow-mode'.
132 ;;
133 ;; Example:
134 ;; (add-hook 'follow-mode-hook 'my-follow-mode-hook)
135 ;;
136 ;; (defun my-follow-mode-hook ()
137 ;; (define-key follow-mode-map "\C-ca" 'your-favorite-function)
138 ;; (define-key follow-mode-map "\C-cb" 'another-function))
139
140
141 ;; Usage:
142 ;;
143 ;; To activate, issue the command "M-x follow-mode"
144 ;; and press Return. To deactivate, do it again.
145 ;;
146 ;; The following is a list of commands useful when follow-mode is active.
147 ;;
148 ;; follow-scroll-up C-c . C-v
149 ;; Scroll text in a Follow mode window chain up.
150 ;;
151 ;; follow-scroll-down C-c . v
152 ;; Like `follow-scroll-up', but in the other direction.
153 ;;
154 ;; follow-delete-other-windows-and-split C-c . 1
155 ;; Maximize the visible area of the current buffer,
156 ;; and enter Follow mode. This is a very convenient
157 ;; way to start Follow mode, hence we recomend that
158 ;; this command be added to the global keymap.
159 ;;
160 ;; follow-recenter C-c . C-l
161 ;; Place the point in the center of the middle window,
162 ;; or a specified number of lines from either top or bottom.
163 ;;
164 ;; follow-switch-to-buffer C-c . b
165 ;; Switch buffer in all windows displaying the current buffer
166 ;; in this frame.
167 ;;
168 ;; follow-switch-to-buffer-all C-c . C-b
169 ;; Switch buffer in all windows in the selected frame.
170 ;;
171 ;; follow-switch-to-current-buffer-all
172 ;; Show the current buffer in all windows on the current
173 ;; frame and turn on `follow-mode'.
174 ;;
175 ;; follow-first-window C-c . <
176 ;; Select the first window in the frame showing the same buffer.
177 ;;
178 ;; follow-last-window C-c . >
179 ;; Select the last window in the frame showing the same buffer.
180 ;;
181 ;; follow-next-window C-c . n
182 ;; Select the next window in the frame showing the same buffer.
183 ;;
184 ;; follow-previous-window C-c . p
185 ;; Select the previous window showing the same buffer.
186
187
188 ;; Well, it seems ok, but what if I really want to look at two different
189 ;; positions in the text? Here are two simple methods to use:
190 ;;
191 ;; 1) Use multiple frames; `follow' mode only affects windows displayed
192 ;; in the same frame. (My apoligies to you who can't use frames.)
193 ;;
194 ;; 2) Bind `follow-mode' to key so you can turn it off whenever
195 ;; you want to view two locations. Of course, `follow' mode can
196 ;; be reactivated by hitting the same key again.
197 ;;
198 ;; Example from my ~/.emacs:
199 ;; (global-set-key [f8] 'follow-mode)
200
201
202 ;; Implementation:
203 ;;
204 ;; In an ideal world, follow mode would have been implemented in the
205 ;; kernel of the display routines, making sure that the windows (using
206 ;; follow mode) ALWAYS are aligned. On planet Earth, however, we must
207 ;; accept a solution where we ALMOST ALWAYS can make sure that the
208 ;; windows are aligned.
209 ;;
210 ;; Follow mode does this in three places:
211 ;; 1) After each user command.
212 ;; 2) After a process output has been perfomed.
213 ;; 3) When a scrollbar has been moved.
214 ;;
215 ;; This will cover most situations. (Let me know if there are other
216 ;; situations that should be covered.)
217 ;;
218 ;; Note that only the selected window is checked, for the reason of
219 ;; efficiency and code complexity. (I.e. it is possible to make a
220 ;; non-selected windows unaligned. It will, however, pop right back
221 ;; when it is selected.)
222
223 ;;}}}
224
225 ;;; Code:
226
227 ;;{{{ Preliminaries
228
229 ;; Make the compiler shut up!
230 ;; There are two strategies:
231 ;; 1) Shut warnings off completely.
232 ;; 2) Handle each warning separately.
233 ;;
234 ;; Since I would like to see real errors, I've selected the latter
235 ;; method.
236 ;;
237 ;; The problem with undefined variables and functions has been solved
238 ;; by using `set', `symbol-value' and `symbol-function' rather than
239 ;; `setq' and direct references to variables and functions.
240 ;;
241 ;; For example:
242 ;; (if (boundp 'foo) ... (symbol-value 'foo) )
243 ;; (set 'foo ...) <-- XEmacs doesn't fall for this one.
244 ;; (funcall (symbol-function 'set) 'bar ...)
245 ;;
246 ;; Note: When this file is interpreted, `eval-when-compile' is
247 ;; evaluted. Since it doesn't hurt to evaluate it, but it is a bit
248 ;; annoying, we test if the byte-compiler has been loaded. This can,
249 ;; of course, lead to some occasional unintended evaluation...
250 ;;
251 ;; Should someone come up with a better solution, please let me
252 ;; know.
253
254 (require 'easymenu)
255
256 (eval-when-compile
257 (if (or (featurep 'bytecomp)
258 (featurep 'byte-compile))
259 (cond ((featurep 'xemacs)
260 ;; Make XEmacs shut up! I'm using standard Emacs
261 ;; functions, they are NOT obsolete!
262 (if (eq (get 'force-mode-line-update 'byte-compile)
263 'byte-compile-obsolete)
264 (put 'force-mode-line-update 'byte-compile 'nil))
265 (if (eq (get 'frame-first-window 'byte-compile)
266 'byte-compile-obsolete)
267 (put 'frame-first-window 'byte-compile 'nil))))))
268
269 ;;}}}
270 ;;{{{ Variables
271
272 (defgroup follow nil
273 "Synchronize windows showing the same buffer."
274 :prefix "follow-"
275 :group 'windows
276 :group 'convenience)
277
278 (defcustom follow-mode-hook nil
279 "Normal hook run by `follow-mode'."
280 :type 'hook
281 :group 'follow)
282
283 (defcustom follow-mode-off-hook nil
284 "Hooks to run when Follow mode is turned off."
285 :type 'hook
286 :group 'follow)
287 (make-obsolete-variable 'follow-mode-off-hook 'follow-mode-hook "22.2")
288
289 ;;{{{ Keymap/Menu
290
291 ;; Define keys for the follow-mode minor mode map and replace some
292 ;; functions in the global map. All `follow' mode special functions
293 ;; can be found on (the somewhat cumbersome) "C-c . <key>"
294 ;; (Control-C dot <key>). (As of Emacs 19.29 the keys
295 ;; C-c <punctuation character> are reserved for minor modes.)
296 ;;
297 ;; To change the prefix, redefine `follow-mode-prefix' before
298 ;; `follow' is loaded, or see the section on `follow-mode-hook'
299 ;; above for an example of how to bind the keys the way you like.
300 ;;
301 ;; Please note that the keymap is defined the first time this file is
302 ;; loaded. Also note that the only valid way to manipulate the
303 ;; keymap is to use `define-key'. Don't change it using `setq' or
304 ;; similar!
305
306 (defcustom follow-mode-prefix "\C-c."
307 "Prefix key to use for follow commands in Follow mode.
308 The value of this variable is checked as part of loading Follow mode.
309 After that, changing the prefix key requires manipulating keymaps."
310 :type 'string
311 :group 'follow)
312
313 (defvar follow-mode-map
314 (let ((mainmap (make-sparse-keymap))
315 (map (make-sparse-keymap)))
316 (define-key map "\C-v" 'follow-scroll-up)
317 (define-key map "\M-v" 'follow-scroll-down)
318 (define-key map "v" 'follow-scroll-down)
319 (define-key map "1" 'follow-delete-other-windows-and-split)
320 (define-key map "b" 'follow-switch-to-buffer)
321 (define-key map "\C-b" 'follow-switch-to-buffer-all)
322 (define-key map "\C-l" 'follow-recenter)
323 (define-key map "<" 'follow-first-window)
324 (define-key map ">" 'follow-last-window)
325 (define-key map "n" 'follow-next-window)
326 (define-key map "p" 'follow-previous-window)
327
328 (define-key mainmap follow-mode-prefix map)
329
330 ;; Replace the standard `end-of-buffer', when in Follow mode. (I
331 ;; don't see the point in trying to replace every function that
332 ;; could be enhanced in Follow mode. End-of-buffer is a special
333 ;; case since it is very simple to define and it greatly enhances
334 ;; the look and feel of Follow mode.)
335 (define-key mainmap [remap end-of-buffer] 'follow-end-of-buffer)
336
337 mainmap)
338 "Minor mode keymap for Follow mode.")
339
340 ;; When the mode is not activated, only one item is visible to activate
341 ;; the mode.
342 (defun follow-menu-filter (menu)
343 (if (bound-and-true-p follow-mode)
344 menu
345 '(["Follow mode" follow-mode
346 :style toggle :selected follow-mode])))
347
348 ;; If there is a `tools' menu, we use it. However, we can't add a
349 ;; minor-mode specific item to it (it's broken), so we make the
350 ;; contents ghosted when not in use, and add ourselves to the
351 ;; global map.
352 (easy-menu-add-item nil '("Tools")
353 '("Follow"
354 ;; The Emacs code used to just grey out operations when follow-mode was
355 ;; not enabled, whereas the XEmacs code used to remove it altogether.
356 ;; Not sure which is preferable, but clearly the preference should not
357 ;; depend on the flavor.
358 :filter follow-menu-filter
359 ["Scroll Up" follow-scroll-up follow-mode]
360 ["Scroll Down" follow-scroll-down follow-mode]
361 "--"
362 ["Delete Other Windows and Split" follow-delete-other-windows-and-split follow-mode]
363 "--"
364 ["Switch To Buffer" follow-switch-to-buffer follow-mode]
365 ["Switch To Buffer (all windows)" follow-switch-to-buffer-all follow-mode]
366 "--"
367 ["First Window" follow-first-window follow-mode]
368 ["Last Window" follow-last-window follow-mode]
369 ["Next Window" follow-next-window follow-mode]
370 ["Previous Window" follow-previous-window follow-mode]
371 "--"
372 ["Recenter" follow-recenter follow-mode]
373 "--"
374 ["Follow mode" follow-mode :style toggle :selected follow-mode]))
375
376 ;;}}}
377
378 (defcustom follow-mode-line-text " Follow"
379 "Text shown in the mode line when Follow mode is active.
380 Defaults to \" Follow\". Examples of other values
381 are \" Fw\", or simply \"\"."
382 :type 'string
383 :group 'follow)
384
385 (defcustom follow-auto nil
386 "Non-nil activates Follow mode whenever a file is loaded."
387 :type 'boolean
388 :group 'follow)
389
390 (defcustom follow-intercept-processes (fboundp 'start-process)
391 "When non-nil, Follow mode will monitor process output."
392 :type 'boolean
393 :group 'follow)
394
395 (defvar follow-avoid-tail-recenter-p (not (featurep 'xemacs))
396 "*When non-nil, patch Emacs so that tail windows won't be recentered.
397
398 A \"tail window\" is a window that displays only the end of
399 the buffer. Normally it is practical for the user that empty
400 windows are recentered automatically. However, when using
401 Follow mode it breaks the display when the end is displayed
402 in a window \"above\" the last window. This is for
403 example the case when displaying a short page in info.
404
405 Must be set before Follow mode is loaded.
406
407 Please note that it is not possible to fully prevent Emacs from
408 recentering empty windows. Please report if you find a repeatable
409 situation in which Emacs recenters empty windows.
410
411 XEmacs, as of 19.12, does not recenter windows, good!")
412
413 (defvar follow-cache-command-list
414 '(next-line previous-line forward-char backward-char)
415 "List of commands that don't require recalculation.
416
417 In order to be able to use the cache, a command should not change the
418 contents of the buffer, nor should it change selected window or current
419 buffer.
420
421 The commands in this list are checked at load time.
422
423 To mark other commands as suitable for caching, set the symbol
424 property `follow-mode-use-cache' to non-nil.")
425
426 (defvar follow-debug nil
427 "*Non-nil when debugging Follow mode.")
428
429
430 ;; Internal variables:
431
432 (defvar follow-internal-force-redisplay nil
433 "True when Follow mode should redisplay the windows.")
434
435 (defvar follow-process-filter-alist '()
436 "The original filters for processes intercepted by Follow mode.")
437
438 (defvar follow-active-menu nil
439 "The menu visible when Follow mode is active.")
440
441 (defvar follow-deactive-menu nil
442 "The menu visible when Follow mode is deactivated.")
443
444 (defvar follow-inside-post-command-hook nil
445 "Non-nil when inside Follow modes `post-command-hook'.
446 Used by `follow-window-size-change'.")
447
448 (defvar follow-windows-start-end-cache nil
449 "Cache used by `follow-window-start-end'.")
450
451 ;;}}}
452 ;;{{{ Debug messages
453
454 ;; This inline function must be as small as possible!
455 ;; Maybe we should define a macro that expands to nil if
456 ;; the variable is not set.
457
458 (defsubst follow-debug-message (&rest args)
459 "Like message, but only active when `follow-debug' is non-nil."
460 (if (and (boundp 'follow-debug) follow-debug)
461 (apply 'message args)))
462
463 ;;}}}
464 ;;{{{ Cache
465
466 (dolist (cmd follow-cache-command-list)
467 (put cmd 'follow-mode-use-cache t))
468
469 ;;}}}
470
471 ;;{{{ The mode
472
473 ;;;###autoload
474 (defun turn-on-follow-mode ()
475 "Turn on Follow mode. Please see the function `follow-mode'."
476 (follow-mode 1))
477
478
479 ;;;###autoload
480 (defun turn-off-follow-mode ()
481 "Turn off Follow mode. Please see the function `follow-mode'."
482 (follow-mode -1))
483
484 (put 'follow-mode 'permanent-local t)
485 ;;;###autoload
486 (define-minor-mode follow-mode
487 "Minor mode that combines windows into one tall virtual window.
488
489 The feeling of a \"virtual window\" has been accomplished by the use
490 of two major techniques:
491
492 * The windows always displays adjacent sections of the buffer.
493 This means that whenever one window is moved, all the
494 others will follow. (Hence the name Follow mode.)
495
496 * Should the point (cursor) end up outside a window, another
497 window displaying that point is selected, if possible. This
498 makes it possible to walk between windows using normal cursor
499 movement commands.
500
501 Follow mode comes to its prime when used on a large screen and two
502 side-by-side windows are used. The user can, with the help of Follow
503 mode, use two full-height windows as though they would have been
504 one. Imagine yourself editing a large function, or section of text,
505 and being able to use 144 lines instead of the normal 72... (your
506 mileage may vary).
507
508 To split one large window into two side-by-side windows, the commands
509 `\\[split-window-horizontally]' or \
510 `M-x follow-delete-other-windows-and-split' can be used.
511
512 Only windows displayed in the same frame follow each other.
513
514 If the variable `follow-intercept-processes' is non-nil, Follow mode
515 will listen to the output of processes and redisplay accordingly.
516 \(This is the default.)
517
518 This command runs the normal hook `follow-mode-hook'.
519
520 Keys specific to Follow mode:
521 \\{follow-mode-map}"
522 :keymap follow-mode-map
523 (when (and follow-mode follow-intercept-processes)
524 (follow-intercept-process-output))
525 (cond (follow-mode ; On
526 ;; XEmacs: If this is non-nil, the window will scroll before
527 ;; the point will have a chance to get into the next window.
528 (when (boundp 'scroll-on-clipped-lines)
529 (setq scroll-on-clipped-lines nil))
530 (force-mode-line-update)
531 (add-hook 'post-command-hook 'follow-post-command-hook t))
532
533 ((not follow-mode) ; Off
534 (force-mode-line-update))))
535
536 ;;}}}
537 ;;{{{ Find file hook
538
539 ;; This will start follow-mode whenever a new file is loaded, if
540 ;; the variable `follow-auto' is non-nil.
541
542 (add-hook 'find-file-hook 'follow-find-file-hook t)
543
544 (defun follow-find-file-hook ()
545 "Find-file hook for Follow mode. See the variable `follow-auto'."
546 (if follow-auto (follow-mode t)))
547
548 ;;}}}
549
550 ;;{{{ User functions
551
552 ;;;
553 ;;; User functions usable when in Follow mode.
554 ;;;
555
556 ;;{{{ Scroll
557
558 ;; `scroll-up' and `-down', but for windows in Follow mode.
559 ;;
560 ;; Almost like the real thing, excpet when the cursor ends up outside
561 ;; the top or bottom... In our case however, we end up outside the
562 ;; window and hence we are recenterd. Should we let `recenter' handle
563 ;; the point position we would never leave the selected window. To do
564 ;; it ourselves we would need to do our own redisplay, which is easier
565 ;; said than done. (Why didn't I do a real display abstraction from
566 ;; the beginning?)
567 ;;
568 ;; We must sometimes set `follow-internal-force-redisplay', otherwise
569 ;; our post-command-hook will move our windows back into the old
570 ;; position... (This would also be corrected if we would have had a
571 ;; good redisplay abstraction.)
572
573 (defun follow-scroll-up (&optional arg)
574 "Scroll text in a Follow mode window chain up.
575
576 If called with no ARG, the `next-screen-context-lines' last lines of
577 the bottom window in the chain will be visible in the top window.
578
579 If called with an argument, scroll ARG lines up.
580 Negative ARG means scroll downward.
581
582 Works like `scroll-up' when not in Follow mode."
583 (interactive "P")
584 (cond ((not (and (boundp 'follow-mode) follow-mode))
585 (scroll-up arg))
586 (arg
587 (save-excursion (scroll-up arg))
588 (setq follow-internal-force-redisplay t))
589 (t
590 (let* ((windows (follow-all-followers))
591 (end (window-end (car (reverse windows)))))
592 (if (eq end (point-max))
593 (signal 'end-of-buffer nil)
594 (select-window (car windows))
595 ;; `window-end' might return nil.
596 (if end
597 (goto-char end))
598 (vertical-motion (- next-screen-context-lines))
599 (set-window-start (car windows) (point)))))))
600
601
602 (defun follow-scroll-down (&optional arg)
603 "Scroll text in a Follow mode window chain down.
604
605 If called with no ARG, the `next-screen-context-lines' top lines of
606 the top window in the chain will be visible in the bottom window.
607
608 If called with an argument, scroll ARG lines down.
609 Negative ARG means scroll upward.
610
611 Works like `scroll-up' when not in Follow mode."
612 (interactive "P")
613 (cond ((not (and (boundp 'follow-mode) follow-mode))
614 (scroll-up arg))
615 (arg
616 (save-excursion (scroll-down arg)))
617 (t
618 (let* ((windows (follow-all-followers))
619 (win (car (reverse windows)))
620 (start (window-start (car windows))))
621 (if (eq start (point-min))
622 (signal 'beginning-of-buffer nil)
623 (select-window win)
624 (goto-char start)
625 (vertical-motion (- (- (window-height win)
626 (if header-line-format 2 1)
627 next-screen-context-lines)))
628 (set-window-start win (point))
629 (goto-char start)
630 (vertical-motion (- next-screen-context-lines 1))
631 (setq follow-internal-force-redisplay t))))))
632
633 ;;}}}
634 ;;{{{ Buffer
635
636 ;;;###autoload
637 (defun follow-delete-other-windows-and-split (&optional arg)
638 "Create two side by side windows and enter Follow mode.
639
640 Execute this command to display as much as possible of the text
641 in the selected window. All other windows, in the current
642 frame, are deleted and the selected window is split in two
643 side-by-side windows. Follow mode is activated, hence the
644 two windows always will display two successive pages.
645 \(If one window is moved, the other one will follow.)
646
647 If ARG is positive, the leftmost window is selected. If negative,
648 the rightmost is selected. If ARG is nil, the leftmost window is
649 selected if the original window is the first one in the frame.
650
651 To bind this command to a hotkey, place the following line
652 in your `~/.emacs' file, replacing [f7] by your favourite key:
653 (global-set-key [f7] 'follow-delete-other-windows-and-split)"
654 (interactive "P")
655 (let ((other (or (and (null arg)
656 (not (eq (selected-window)
657 (frame-first-window (selected-frame)))))
658 (and arg
659 (< (prefix-numeric-value arg) 0))))
660 (start (window-start)))
661 (delete-other-windows)
662 (split-window-horizontally)
663 (if other
664 (progn
665 (other-window 1)
666 (set-window-start (selected-window) start)
667 (setq follow-internal-force-redisplay t)))
668 (follow-mode 1)))
669
670 (defun follow-switch-to-buffer (buffer)
671 "Show BUFFER in all windows in the current Follow mode window chain."
672 (interactive "BSwitch to Buffer: ")
673 (let ((orig-window (selected-window))
674 (windows (follow-all-followers)))
675 (while windows
676 (select-window (car windows))
677 (switch-to-buffer buffer)
678 (setq windows (cdr windows)))
679 (select-window orig-window)))
680
681
682 (defun follow-switch-to-buffer-all (&optional buffer)
683 "Show BUFFER in all windows on this frame.
684 Defaults to current buffer."
685 (interactive (list (read-buffer "Switch to Buffer: "
686 (current-buffer))))
687 (or buffer (setq buffer (current-buffer)))
688 (let ((orig-window (selected-window)))
689 (walk-windows
690 (function
691 (lambda (win)
692 (select-window win)
693 (switch-to-buffer buffer))))
694 (select-window orig-window)
695 (follow-redisplay)))
696
697
698 (defun follow-switch-to-current-buffer-all ()
699 "Show current buffer in all windows on this frame, and enter Follow mode.
700
701 To bind this command to a hotkey place the following line
702 in your `~/.emacs' file:
703 (global-set-key [f7] 'follow-switch-to-current-buffer-all)"
704 (interactive)
705 (or (and (boundp 'follow-mode) follow-mode)
706 (follow-mode 1))
707 (follow-switch-to-buffer-all))
708
709 ;;}}}
710 ;;{{{ Movement
711
712 ;; Note, these functions are not very useful, at least not unless you
713 ;; rebind the rather cumbersome key sequence `C-c . p'.
714
715 (defun follow-next-window ()
716 "Select the next window showing the same buffer."
717 (interactive)
718 (let ((succ (cdr (follow-split-followers (follow-all-followers)))))
719 (if succ
720 (select-window (car succ))
721 (error "%s" "No more windows"))))
722
723
724 (defun follow-previous-window ()
725 "Select the previous window showing the same buffer."
726 (interactive)
727 (let ((pred (car (follow-split-followers (follow-all-followers)))))
728 (if pred
729 (select-window (car pred))
730 (error "%s" "No more windows"))))
731
732
733 (defun follow-first-window ()
734 "Select the first window in the frame showing the same buffer."
735 (interactive)
736 (select-window (car (follow-all-followers))))
737
738
739 (defun follow-last-window ()
740 "Select the last window in the frame showing the same buffer."
741 (interactive)
742 (select-window (car (reverse (follow-all-followers)))))
743
744 ;;}}}
745 ;;{{{ Redraw
746
747 (defun follow-recenter (&optional arg)
748 "Recenter the middle window around point.
749 Rearrange all other windows around the middle window.
750
751 With a positive argument, place the current line ARG lines
752 from the top. With a negative argument, place it -ARG lines
753 from the bottom."
754 (interactive "P")
755 (if arg
756 (let ((p (point))
757 (arg (prefix-numeric-value arg)))
758 (if (>= arg 0)
759 ;; Recenter relative to the top.
760 (progn
761 (follow-first-window)
762 (goto-char p)
763 (recenter arg))
764 ;; Recenter relative to the bottom.
765 (follow-last-window)
766 (goto-char p)
767 (recenter arg)
768 ;; Otherwise, our post-command-hook will move the window
769 ;; right back.
770 (setq follow-internal-force-redisplay t)))
771 ;; Recenter in the middle.
772 (let* ((dest (point))
773 (windows (follow-all-followers))
774 (win (nth (/ (- (length windows) 1) 2) windows)))
775 (select-window win)
776 (goto-char dest)
777 (recenter)
778 ;;(setq follow-internal-force-redisplay t)
779 )))
780
781
782 (defun follow-redraw ()
783 "Arrange windows displaying the same buffer in successor order.
784 This function can be called even if the buffer is not in Follow mode.
785
786 Hopefully, there should be no reason to call this function when in
787 Follow mode since the windows should always be aligned."
788 (interactive)
789 (sit-for 0)
790 (follow-redisplay))
791
792 ;;}}}
793 ;;{{{ End of buffer
794
795 (defun follow-end-of-buffer (&optional arg)
796 "Move point to the end of the buffer, Follow mode style.
797
798 If the end is not visible, it will be displayed in the last possible
799 window in the Follow mode window chain.
800
801 The mark is left at the previous position. With arg N, put point N/10
802 of the way from the true end."
803 (interactive "P")
804 (let ((followers (follow-all-followers))
805 (pos (point)))
806 (cond (arg
807 (select-window (car (reverse followers))))
808 ((follow-select-if-end-visible
809 (follow-windows-start-end followers)))
810 (t
811 (select-window (car (reverse followers)))))
812 (goto-char pos)
813 (with-no-warnings
814 (end-of-buffer arg))))
815
816 ;;}}}
817
818 ;;}}}
819
820 ;;{{{ Display
821
822 ;;;; The display routines
823
824 ;;{{{ Information gathering functions
825
826 (defun follow-all-followers (&optional testwin)
827 "Return all windows displaying the same buffer as the TESTWIN.
828 The list contains only windows displayed in the same frame as TESTWIN.
829 If TESTWIN is nil the selected window is used."
830 (or (window-live-p testwin)
831 (setq testwin (selected-window)))
832 (let* ((top (frame-first-window (window-frame testwin)))
833 (win top)
834 (done nil)
835 (windows '())
836 (buffer (window-buffer testwin)))
837 (while (and (not done) win)
838 (if (eq (window-buffer win) buffer)
839 (setq windows (cons win windows)))
840 (setq win (next-window win 'not))
841 (if (eq win top)
842 (setq done t)))
843 (nreverse windows)))
844
845
846 (defun follow-split-followers (windows &optional win)
847 "Split the WINDOWS into the sets: predecessors and successors.
848 Return `(PRED . SUCC)' where `PRED' and `SUCC' are ordered starting
849 from the selected window."
850 (or win
851 (setq win (selected-window)))
852 (let ((pred '()))
853 (while (not (eq (car windows) win))
854 (setq pred (cons (car windows) pred))
855 (setq windows (cdr windows)))
856 (cons pred (cdr windows))))
857
858
859 ;; This function is optimized function for speed!
860
861 (defun follow-calc-win-end (&optional win)
862 "Calculate the presumed window end for WIN.
863
864 Actually, the position returned is the start of the next
865 window, normally is the end plus one.
866
867 If WIN is nil, the selected window is used.
868
869 Returns (end-pos end-of-buffer-p)"
870 (if (featurep 'xemacs)
871 ;; XEmacs can calculate the end of the window by using
872 ;; the 'guarantee options. GOOD!
873 (let ((end (window-end win t)))
874 (if (= end (funcall (symbol-function 'point-max)
875 (window-buffer win)))
876 (list end t)
877 (list (+ end 1) nil)))
878 ;; Emacs: We have to calculate the end by ourselves.
879 ;; This code works on both XEmacs and Emacs, but now
880 ;; that XEmacs has got custom-written code, this could
881 ;; be optimized for Emacs.
882 (let (height buffer-end-p)
883 (with-selected-window (or win (selected-window))
884 (save-excursion
885 (goto-char (window-start))
886 (setq height
887 (- (window-height)
888 (if header-line-format 2 1)))
889 (setq buffer-end-p
890 (if (bolp)
891 (not (= height (vertical-motion height)))
892 (save-restriction
893 ;; Fix a mis-feature in `vertical-motion':
894 ;; The start of the window is assumed to
895 ;; coinside with the start of a line.
896 (narrow-to-region (point) (point-max))
897 (not (= height (vertical-motion height))))))
898 (list (point) buffer-end-p))))))
899
900
901 ;; Can't use `save-window-excursion' since it triggers a redraw.
902 (defun follow-calc-win-start (windows pos win)
903 "Calculate where WIN will start if the first in WINDOWS start at POS.
904
905 If WIN is nil the point below all windows is returned."
906 (let (start)
907 (while (and windows (not (eq (car windows) win)))
908 (setq start (window-start (car windows)))
909 (set-window-start (car windows) pos 'noforce)
910 (setq pos (car (follow-calc-win-end (car windows))))
911 (set-window-start (car windows) start 'noforce)
912 (setq windows (cdr windows)))
913 pos))
914
915
916 ;; The result from `follow-windows-start-end' is cached when using
917 ;; a handful simple commands, like cursor movement commands.
918
919 (defsubst follow-cache-valid-p (windows)
920 "Test if the cached value of `follow-windows-start-end' can be used.
921 Note that this handles the case when the cache has been set to nil."
922 (let ((res t)
923 (cache follow-windows-start-end-cache))
924 (while (and res windows cache)
925 (setq res (and (eq (car windows)
926 (car (car cache)))
927 (eq (window-start (car windows))
928 (car (cdr (car cache))))))
929 (setq windows (cdr windows))
930 (setq cache (cdr cache)))
931 (and res (null windows) (null cache))))
932
933
934 (defsubst follow-invalidate-cache ()
935 "Force `follow-windows-start-end' to recalculate the end of the window."
936 (setq follow-windows-start-end-cache nil))
937
938
939 ;; Build a list of windows and their start and end positions.
940 ;; Useful to avoid calculating start/end position whenever they are needed.
941 ;; The list has the format:
942 ;; ((Win Start End End-of-buffer-visible-p) ...)
943
944 ;; Used to have a `save-window-excursion', but it obviously triggered
945 ;; redraws of the display. Check if I used it for anything.
946
947
948 (defun follow-windows-start-end (windows)
949 "Builds a list of (WIN START END BUFFER-END-P) for every window in WINDOWS."
950 (if (follow-cache-valid-p windows)
951 follow-windows-start-end-cache
952 (let ((orig-win (selected-window))
953 win-start-end)
954 (dolist (w windows)
955 (select-window w)
956 (push (cons w (cons (window-start) (follow-calc-win-end)))
957 win-start-end))
958 (select-window orig-win)
959 (setq follow-windows-start-end-cache (nreverse win-start-end)))))
960
961
962 (defsubst follow-pos-visible (pos win win-start-end)
963 "Non-nil when POS is visible in WIN."
964 (let ((wstart-wend-bend (cdr (assq win win-start-end))))
965 (and (>= pos (car wstart-wend-bend))
966 (or (< pos (cadr wstart-wend-bend))
967 (nth 2 wstart-wend-bend)))))
968
969
970 ;; By `aligned' we mean that for all adjacent windows, the end of the
971 ;; first is equal with the start of the successor. The first window
972 ;; should start at a full screen line.
973
974 (defsubst follow-windows-aligned-p (win-start-end)
975 "Non-nil if the follower windows are aligned."
976 (let ((res t))
977 (save-excursion
978 (goto-char (window-start (caar win-start-end)))
979 (unless (bolp)
980 (vertical-motion 0 (caar win-start-end))
981 (setq res (eq (point) (window-start (caar win-start-end))))))
982 (while (and res (cdr win-start-end))
983 ;; At least two followers left
984 (setq res (eq (car (cdr (cdr (car win-start-end))))
985 (car (cdr (car (cdr win-start-end))))))
986 (setq win-start-end (cdr win-start-end)))
987 res))
988
989
990 ;; Check if the point is visible in all windows. (So that
991 ;; no one will be recentered.)
992
993 (defun follow-point-visible-all-windows-p (win-start-end)
994 "Non-nil when the `window-point' is visible in all windows."
995 (let ((res t))
996 (while (and res win-start-end)
997 (setq res (follow-pos-visible (window-point (car (car win-start-end)))
998 (car (car win-start-end))
999 win-start-end))
1000 (setq win-start-end (cdr win-start-end)))
1001 res))
1002
1003
1004 ;; Make sure WIN always starts at the beginning of an whole screen
1005 ;; line. If WIN is not aligned the start is updated which probably
1006 ;; will lead to a redisplay of the screen later on.
1007 ;;
1008 ;; This is used with the first window in a follow chain. The reason
1009 ;; is that we want to detect that the point is outside the window.
1010 ;; (Without the update, the start of the window will move as the
1011 ;; user presses BackSpace, and the other window redisplay routines
1012 ;; will move the start of the window in the wrong direction.)
1013
1014 (defun follow-update-window-start (win)
1015 "Make sure that the start of WIN starts at a full screen line."
1016 (save-excursion
1017 (goto-char (window-start win))
1018 (unless (bolp)
1019 (vertical-motion 0 win)
1020 (unless (eq (point) (window-start win))
1021 (vertical-motion 1 win)
1022 (set-window-start win (point) 'noforce)))))
1023
1024 ;;}}}
1025 ;;{{{ Selection functions
1026
1027 ;; Make a window in WINDOWS selected if it currently
1028 ;; is displaying the position DEST.
1029 ;;
1030 ;; We don't select a window if it just has been moved.
1031
1032 (defun follow-select-if-visible (dest win-start-end)
1033 "Select and return a window, if DEST is visible in it.
1034 Return the selected window."
1035 (let (win win-end)
1036 (while (and (not win) win-start-end)
1037 ;; Don't select a window that was just moved. This makes it
1038 ;; possible to later select the last window after a `end-of-buffer'
1039 ;; command.
1040 (when (follow-pos-visible dest (caar win-start-end) win-start-end)
1041 (setq win (caar win-start-end)
1042 win-end (car (cddr (car win-start-end))))
1043 (select-window win))
1044 (setq win-start-end (cdr win-start-end)))
1045 ;; The last line of the window may be partially visible; if so,
1046 ;; and if point is visible in the next window, select the next
1047 ;; window instead.
1048 (and win
1049 (/= dest (point-max))
1050 win-start-end
1051 (follow-pos-visible dest (caar win-start-end) win-start-end)
1052 (save-excursion
1053 (goto-char dest)
1054 (vertical-motion 1 win)
1055 (>= (point) win-end))
1056 (setq win (caar win-start-end))
1057 (select-window win))
1058 win))
1059
1060
1061 ;; Lets select a window showing the end. Make sure we only select it if it
1062 ;; it wasn't just moved here. (i.e. M-> shall not unconditionally place
1063 ;; the point in the selected window.)
1064 ;;
1065 ;; (Compability cludge: in Emacs `window-end' is equal to `point-max';
1066 ;; in XEmacs, it is equal to `point-max + 1'. Should I really bother
1067 ;; checking `window-end' now when I check `end-of-buffer' explicitly?)
1068
1069 (defun follow-select-if-end-visible (win-start-end)
1070 "Select and return a window, if end is visible in it."
1071 (let ((win nil))
1072 (while (and (not win) win-start-end)
1073 ;; Don't select a window that was just moved. This makes it
1074 ;; possible to later select the last window after a `end-of-buffer'
1075 ;; command.
1076 (if (and (eq (point-max) (nth 2 (car win-start-end)))
1077 (nth 3 (car win-start-end))
1078 ;; `window-end' might return nil.
1079 (let ((end (window-end (car (car win-start-end)))))
1080 (and end
1081 (eq (point-max) (min (point-max) end)))))
1082 (progn
1083 (setq win (car (car win-start-end)))
1084 (select-window win)))
1085 (setq win-start-end (cdr win-start-end)))
1086 win))
1087
1088
1089 ;; Select a window that will display the point if the windows would
1090 ;; be redisplayed with the first window fixed. This is useful for
1091 ;; example when the user has pressed return at the bottom of a window
1092 ;; as the point is not visible in any window.
1093
1094 (defun follow-select-if-visible-from-first (dest windows)
1095 "Try to select one of WINDOWS without repositioning the topmost window.
1096 If one of the windows in WINDOWS contains DEST, select it, call
1097 `follow-redisplay', move point to DEST, and return that window.
1098 Otherwise, return nil."
1099 (let (win end-pos-end-p)
1100 (save-excursion
1101 (goto-char (window-start (car windows)))
1102 ;; Make sure the line start in the beginning of a real screen
1103 ;; line.
1104 (vertical-motion 0 (car windows))
1105 (when (>= dest (point))
1106 ;; At or below the start. Check the windows.
1107 (save-window-excursion
1108 (let ((windows windows))
1109 (while (and (not win) windows)
1110 (set-window-start (car windows) (point) 'noforce)
1111 (setq end-pos-end-p (follow-calc-win-end (car windows)))
1112 (goto-char (car end-pos-end-p))
1113 ;; Visible, if dest above end, or if eob is visible inside
1114 ;; the window.
1115 (if (or (car (cdr end-pos-end-p))
1116 (< dest (point)))
1117 (setq win (car windows))
1118 (setq windows (cdr windows))))))))
1119 (when win
1120 (select-window win)
1121 (follow-redisplay windows (car windows))
1122 (goto-char dest))
1123 win))
1124
1125
1126 ;;}}}
1127 ;;{{{ Redisplay
1128
1129 ;; Redraw all the windows on the screen, starting with the top window.
1130 ;; The window used as as marker is WIN, or the selcted window if WIN
1131 ;; is nil. Start every window directly after the end of the previous
1132 ;; window, to make sure long lines are displayed correctly.
1133
1134 (defun follow-redisplay (&optional windows win preserve-win)
1135 "Reposition the WINDOWS around WIN.
1136 Should the point be too close to the roof we redisplay everything
1137 from the top. WINDOWS should contain a list of windows to
1138 redisplay, it is assumed that WIN is a member of the list.
1139 Should WINDOWS be nil, the windows displaying the
1140 same buffer as WIN, in the current frame, are used.
1141 Should WIN be nil, the selected window is used.
1142 If PRESERVE-WIN is non-nil, keep WIN itself unchanged while
1143 repositioning the other windows."
1144 (or win (setq win (selected-window)))
1145 (or windows (setq windows (follow-all-followers win)))
1146 ;; Calculate the start of the first window.
1147 (let* ((old-win-start (window-start win))
1148 (try-first-start (follow-estimate-first-window-start
1149 windows win old-win-start))
1150 (try-win-start (follow-calc-win-start
1151 windows try-first-start win))
1152 (start (cond ((= try-win-start old-win-start)
1153 (follow-debug-message "exact")
1154 try-first-start)
1155 ((< try-win-start old-win-start)
1156 (follow-debug-message "above")
1157 (follow-calculate-first-window-start-from-above
1158 windows try-first-start win old-win-start))
1159 (t
1160 (follow-debug-message "below")
1161 (follow-calculate-first-window-start-from-below
1162 windows try-first-start win old-win-start)))))
1163 (dolist (w windows)
1164 (unless (and preserve-win (eq w win))
1165 (set-window-start w start))
1166 (setq start (car (follow-calc-win-end w))))))
1167
1168
1169 (defun follow-estimate-first-window-start (windows win start)
1170 "Estimate the position of the first window.
1171 The estimate is computed by assuming that the window WIN, which
1172 should be a member of WINDOWS, starts at position START."
1173 (let ((windows-before (car (follow-split-followers windows win))))
1174 (save-excursion
1175 (goto-char start)
1176 (vertical-motion 0 win)
1177 (dolist (w windows-before)
1178 (vertical-motion (- 1 (window-text-height w)) w))
1179 (point))))
1180
1181
1182 ;; Find the starting point, start at GUESS and search downward.
1183 ;; The returned point is always a point below GUESS.
1184
1185 (defun follow-calculate-first-window-start-from-above
1186 (windows guess win start)
1187 (save-excursion
1188 (let ((done nil)
1189 win-start
1190 res)
1191 (goto-char guess)
1192 (while (not done)
1193 (if (not (= (vertical-motion 1 (car windows)) 1))
1194 ;; Hit bottom! (Can we really do this?)
1195 ;; We'll keep it, since it ensures termination.
1196 (progn
1197 (setq done t)
1198 (setq res (point-max)))
1199 (setq win-start (follow-calc-win-start windows (point) win))
1200 (if (>= win-start start)
1201 (setq done t res (point)))))
1202 res)))
1203
1204
1205 ;; Find the starting point, start at GUESS and search upward. Return
1206 ;; a point on the same line as GUESS, or above.
1207 ;;
1208 ;; (Is this ever used? I must make sure it works just in case it is
1209 ;; ever called.)
1210
1211 (defun follow-calculate-first-window-start-from-below
1212 (windows guess &optional win start)
1213 (setq win (or win (selected-window)))
1214 (setq start (or start (window-start win)))
1215 (save-excursion
1216 (let (done win-start res opoint)
1217 ;; Always calculate what happens when no line is displayed in the first
1218 ;; window. (The `previous' res is needed below!)
1219 (goto-char guess)
1220 (vertical-motion 0 (car windows))
1221 (setq res (point))
1222 (while (not done)
1223 (setq opoint (point))
1224 (if (not (= (vertical-motion -1 (car windows)) -1))
1225 ;; Hit roof!
1226 (setq done t res (point-min))
1227 (setq win-start (follow-calc-win-start windows (point) win))
1228 (cond ((>= (point) opoint)
1229 ;; In some pathological cases, vertical-motion may
1230 ;; return -1 even though point has not decreased. In
1231 ;; that case, avoid looping forever.
1232 (setq done t res (point)))
1233 ((= win-start start) ; Perfect match, use this value
1234 (setq done t res (point)))
1235 ((< win-start start) ; Walked to far, use preious result
1236 (setq done t))
1237 (t ; Store result for next iteration
1238 (setq res (point))))))
1239 res)))
1240
1241 ;;}}}
1242 ;;{{{ Avoid tail recenter
1243
1244 ;; This sets the window internal flag `force_start'. The effect is that
1245 ;; windows only displaying the tail isn't recentered.
1246 ;; Has to be called before every redisplay... (Great isn't it?)
1247 ;;
1248 ;; XEmacs doesn't recenter the tail, GOOD!
1249 ;;
1250 ;; A window displaying only the tail, is a windows whose
1251 ;; window-start position is equal to (point-max) of the buffer it
1252 ;; displays.
1253 ;;
1254 ;; This function is also added to `post-command-idle-hook', introduced
1255 ;; in Emacs 19.30. This is needed since the vaccine injected by the
1256 ;; call from `post-command-hook' only works until the next redisplay.
1257 ;; It is possible that the functions in the `post-command-idle-hook'
1258 ;; can cause a redisplay, and hence a new vaccine is needed.
1259 ;;
1260 ;; Sometimes, calling this function could actually cause a redisplay,
1261 ;; especially if it is placed in the debug filter section. I must
1262 ;; investigate this further...
1263
1264 (defun follow-avoid-tail-recenter (&rest rest)
1265 "Make sure windows displaying the end of a buffer aren't recentered.
1266
1267 This is done by reading and rewriting the start position of
1268 non-first windows in Follow mode."
1269 (if follow-avoid-tail-recenter-p
1270 (let* ((orig-buffer (current-buffer))
1271 (top (frame-first-window (selected-frame)))
1272 (win top)
1273 (who '()) ; list of (buffer . frame)
1274 start
1275 pair) ; (buffer . frame)
1276 ;; If the only window in the frame is a minibuffer
1277 ;; window, `next-window' will never find it again...
1278 (if (window-minibuffer-p top)
1279 nil
1280 (while ;; look, no body!
1281 (progn
1282 (setq start (window-start win))
1283 (set-buffer (window-buffer win))
1284 (setq pair (cons (window-buffer win) (window-frame win)))
1285 (if (member pair who)
1286 (if (and (boundp 'follow-mode) follow-mode
1287 (eq (point-max) start))
1288 ;; Write the same window start back, but don't
1289 ;; set the NOFORCE flag.
1290 (set-window-start win start))
1291 (setq who (cons pair who)))
1292 (setq win (next-window win 'not t))
1293 (not (eq win top)))) ;; Loop while this is true.
1294 (set-buffer orig-buffer)))))
1295
1296 ;;}}}
1297
1298 ;;}}}
1299 ;;{{{ Post Command Hook
1300
1301 ;; The magic little box. This function is called after every command.
1302
1303 ;; This is not as complicated as it seems. It is simply a list of common
1304 ;; display situations and the actions to take, plus commands for redrawing
1305 ;; the screen if it should be unaligned.
1306 ;;
1307 ;; We divide the check into two parts; whether we are at the end or not.
1308 ;; This is due to the fact that the end can actually be visible
1309 ;; in several window even though they are aligned.
1310
1311 (defun follow-post-command-hook ()
1312 "Ensure that the windows in Follow mode are adjacent after each command."
1313 (unless (input-pending-p)
1314 (let ((follow-inside-post-command-hook t)
1315 (win (selected-window)))
1316 ;; Work in the selected window, not in the current buffer.
1317 (with-current-buffer (window-buffer win)
1318 (unless (and (symbolp this-command)
1319 (get this-command 'follow-mode-use-cache))
1320 (follow-invalidate-cache))
1321 (when (and follow-mode
1322 (not (window-minibuffer-p win)))
1323 ;; The buffer shown in the selected window is in follow
1324 ;; mode. Find the current state of the display.
1325 (let* ((windows (follow-all-followers win))
1326 (dest (point))
1327 (win-start-end (progn
1328 (follow-update-window-start (car windows))
1329 (follow-windows-start-end windows)))
1330 (aligned (follow-windows-aligned-p win-start-end))
1331 (visible (follow-pos-visible dest win win-start-end))
1332 selected-window-up-to-date)
1333 (unless (and aligned visible)
1334 (follow-invalidate-cache))
1335 (follow-avoid-tail-recenter)
1336 ;; Select a window to display point.
1337 (unless follow-internal-force-redisplay
1338 (if (eq dest (point-max))
1339 ;; At point-max, we have to be careful since the
1340 ;; display can be aligned while `dest' can be
1341 ;; visible in several windows.
1342 (cond
1343 ;; Select the current window, but only when the
1344 ;; display is correct. (When inserting characters
1345 ;; in a tail window, the display is not correct, as
1346 ;; they are shown twice.)
1347 ;;
1348 ;; Never stick to the current window after a
1349 ;; deletion. The reason is cosmetic: when typing
1350 ;; `DEL' in a window showing only the end of the
1351 ;; file, a character would be removed from the
1352 ;; window above, which is very unintuitive.
1353 ((and visible
1354 aligned
1355 (not (memq this-command
1356 '(backward-delete-char
1357 delete-backward-char
1358 backward-delete-char-untabify
1359 kill-region))))
1360 (follow-debug-message "Max: same"))
1361 ;; If the end is visible, and the window doesn't
1362 ;; seems like it just has been moved, select it.
1363 ((follow-select-if-end-visible win-start-end)
1364 (follow-debug-message "Max: end visible")
1365 (setq visible t aligned nil)
1366 (goto-char dest))
1367 ;; Just show the end...
1368 (t
1369 (follow-debug-message "Max: default")
1370 (select-window (car (reverse windows)))
1371 (goto-char dest)
1372 (setq visible nil aligned nil)))
1373
1374 ;; We're not at the end, here life is much simpler.
1375 (cond
1376 ;; This is the normal case!
1377 ;; It should be optimized for speed.
1378 ((and visible aligned)
1379 (follow-debug-message "same"))
1380 ;; Pick a position in any window. If the display is
1381 ;; ok, this will pick the `correct' window.
1382 ((follow-select-if-visible dest win-start-end)
1383 (follow-debug-message "visible")
1384 (goto-char dest)
1385 ;; We have to perform redisplay, since scrolling is
1386 ;; needed in case the line is partially visible.
1387 (setq visible nil))
1388 ;; Not visible anywhere else, lets pick this one.
1389 ;; (Is this case used?)
1390 (visible
1391 (follow-debug-message "visible in selected."))
1392 ;; Far out!
1393 ((eq dest (point-min))
1394 (follow-debug-message "min")
1395 (select-window (car windows))
1396 (goto-char dest)
1397 (set-window-start (selected-window) (point-min))
1398 (setq win-start-end (follow-windows-start-end windows))
1399 (follow-invalidate-cache)
1400 (setq visible t aligned nil))
1401 ;; If we can position the cursor without moving the first
1402 ;; window, do it. This is the case that catches `RET'
1403 ;; at the bottom of a window.
1404 ((follow-select-if-visible-from-first dest windows)
1405 (follow-debug-message "Below first")
1406 (setq visible t aligned t))
1407 ;; None of the above. For simplicity, we stick to the
1408 ;; selected window.
1409 (t
1410 (follow-debug-message "None")
1411 (setq visible nil aligned nil))))
1412 ;; If a new window has been selected, make sure that the
1413 ;; old is not scrolled when the point is outside the
1414 ;; window.
1415 (unless (eq win (selected-window))
1416 (let ((p (window-point win)))
1417 (set-window-start win (window-start win) nil)
1418 (set-window-point win p))))
1419 (unless visible
1420 ;; If point may not be visible in the selected window,
1421 ;; perform a redisplay; this ensures scrolling.
1422 (redisplay)
1423 (setq selected-window-up-to-date t)
1424 (follow-avoid-tail-recenter)
1425 (setq win-start-end (follow-windows-start-end windows))
1426 (follow-invalidate-cache)
1427 (setq aligned nil))
1428 ;; Now redraw the windows around the selected window.
1429 (unless (and (not follow-internal-force-redisplay)
1430 (or aligned
1431 (follow-windows-aligned-p win-start-end))
1432 (follow-point-visible-all-windows-p
1433 win-start-end))
1434 (setq follow-internal-force-redisplay nil)
1435 (follow-redisplay windows (selected-window)
1436 selected-window-up-to-date)
1437 (setq win-start-end (follow-windows-start-end windows))
1438 (follow-invalidate-cache)
1439 ;; When the point ends up in another window. This
1440 ;; happens when dest is in the beginning of the file and
1441 ;; the selected window is not the first. It can also,
1442 ;; in rare situations happen when long lines are used
1443 ;; and there is a big difference between the width of
1444 ;; the windows. (When scrolling one line in a wide
1445 ;; window which will cause a move larger that an entire
1446 ;; small window.)
1447 (unless (follow-pos-visible dest win win-start-end)
1448 (follow-select-if-visible dest win-start-end)
1449 (goto-char dest)))
1450
1451 ;; If the region is visible, make it look good when spanning
1452 ;; multiple windows.
1453 (when (region-active-p)
1454 (follow-maximize-region
1455 (selected-window) windows win-start-end))))
1456 ;; Whether or not the buffer was in follow mode, we must
1457 ;; update the windows displaying the tail so that Emacs won't
1458 ;; recenter them.
1459 (follow-avoid-tail-recenter)))))
1460
1461 ;;}}}
1462 ;;{{{ The region
1463
1464 ;; Tries to make the highlighted area representing the region look
1465 ;; good when spanning several windows.
1466 ;;
1467 ;; Not perfect, as the point can't be placed at window end, only at
1468 ;; end-1. This will highlight a little bit in windows above
1469 ;; the current.
1470
1471 (defun follow-maximize-region (win windows win-start-end)
1472 "Make a highlighted region stretching multiple windows look good."
1473 (let* ((all (follow-split-followers windows win))
1474 (pred (car all))
1475 (succ (cdr all))
1476 data)
1477 (while pred
1478 (setq data (assq (car pred) win-start-end))
1479 (set-window-point (car pred) (max (nth 1 data) (- (nth 2 data) 1)))
1480 (setq pred (cdr pred)))
1481 (while succ
1482 (set-window-point (car succ) (nth 1 (assq (car succ) win-start-end)))
1483 (setq succ (cdr succ)))))
1484
1485 ;;}}}
1486 ;;{{{ Scroll bar
1487
1488 ;;;; Scroll-bar support code.
1489
1490 ;; Why is it needed? Well, if the selected window is in follow mode,
1491 ;; all its follower stick to it blindly. If one of them is scrolled,
1492 ;; it immediately returns to the original position when the mouse is
1493 ;; released. If the selected window is not a follower of the dragged
1494 ;; window the windows will be unaligned.
1495
1496 ;; The advices doesn't get compiled. Aestetically, this might be a
1497 ;; problem but in practical life it isn't.
1498
1499 ;; Discussion: Now when the other windows in the chain follow the
1500 ;; dragged, should we really select it?
1501
1502 (cond ((fboundp 'scroll-bar-drag)
1503 ;;;
1504 ;;; Emacs style scrollbars.
1505 ;;;
1506
1507 ;; Select the dragged window if it is a follower of the
1508 ;; selected window.
1509 ;;
1510 ;; Generate advices of the form:
1511 ;; (defadvice scroll-bar-drag (after follow-scroll-bar-drag activate)
1512 ;; "Adviced by `follow-mode'."
1513 ;; (follow-redraw-after-event (ad-get-arg 0)))
1514 (let ((cmds '(scroll-bar-drag
1515 scroll-bar-drag-1 ; Executed at every move.
1516 scroll-bar-scroll-down
1517 scroll-bar-scroll-up
1518 scroll-bar-set-window-start)))
1519 (while cmds
1520 (eval
1521 `(defadvice ,(intern (symbol-name (car cmds)))
1522 (after
1523 ,(intern (concat "follow-" (symbol-name (car cmds))))
1524 activate)
1525 "Adviced by Follow mode."
1526 (follow-redraw-after-event (ad-get-arg 0))))
1527 (setq cmds (cdr cmds))))
1528
1529
1530 (defun follow-redraw-after-event (event)
1531 "Adviced by Follow mode."
1532 (condition-case nil
1533 (let* ((orig-win (selected-window))
1534 (win (nth 0 (funcall
1535 (symbol-function 'event-start) event)))
1536 (fmode (assq 'follow-mode
1537 (buffer-local-variables
1538 (window-buffer win)))))
1539 (if (and fmode (cdr fmode))
1540 ;; The selected window is in follow-mode
1541 (progn
1542 ;; Recenter around the dragged window.
1543 (select-window win)
1544 (follow-redisplay)
1545 (select-window orig-win))))
1546 (error nil))))
1547
1548
1549 ((fboundp 'scrollbar-vertical-drag)
1550 ;;;
1551 ;;; XEmacs style scrollbars.
1552 ;;;
1553
1554 ;; Advice all scrollbar functions on the form:
1555 ;;
1556 ;; (defadvice scrollbar-line-down
1557 ;; (after follow-scrollbar-line-down activate)
1558 ;; (follow-xemacs-scrollbar-support (ad-get-arg 0)))
1559
1560 (let ((cmds '(scrollbar-line-down ; Window
1561 scrollbar-line-up
1562 scrollbar-page-down ; Object
1563 scrollbar-page-up
1564 scrollbar-to-bottom ; Window
1565 scrollbar-to-top
1566 scrollbar-vertical-drag ; Object
1567 )))
1568
1569 (while cmds
1570 (eval
1571 `(defadvice ,(intern (symbol-name (car cmds)))
1572 (after
1573 ,(intern (concat "follow-" (symbol-name (car cmds))))
1574 activate)
1575 "Adviced by `follow-mode'."
1576 (follow-xemacs-scrollbar-support (ad-get-arg 0))))
1577 (setq cmds (cdr cmds))))
1578
1579
1580 (defun follow-xemacs-scrollbar-support (window)
1581 "Redraw windows showing the same buffer as shown in WINDOW.
1582 WINDOW is either the dragged window, or a cons containing the
1583 window as its first element. This is called while the user drags
1584 the scrollbar.
1585
1586 WINDOW can be an object or a window."
1587 (condition-case nil
1588 (progn
1589 (if (consp window)
1590 (setq window (car window)))
1591 (let ((fmode (assq 'follow-mode
1592 (buffer-local-variables
1593 (window-buffer window))))
1594 (orig-win (selected-window)))
1595 (if (and fmode (cdr fmode))
1596 (progn
1597 ;; Recenter around the dragged window.
1598 (select-window window)
1599 (follow-redisplay)
1600 (select-window orig-win)))))
1601 (error nil)))))
1602
1603 ;;}}}
1604 ;;{{{ Process output
1605
1606 ;; The following sections installs a spy that listens to process
1607 ;; output and tries to reposition the windows whose buffers are in
1608 ;; Follow mode. We play safe as much as possible...
1609 ;;
1610 ;; When follow-mode is activated all active processes are
1611 ;; intercepted. All new processes that change their filter function
1612 ;; using `set-process-filter' are also intercepted. The reason is
1613 ;; that a process can cause a redisplay recentering "tail" windows.
1614 ;; Note that it doesn't hurt to spy on more processes than needed.
1615 ;;
1616 ;; Technically, we set the process filter to `follow-generic-filter'.
1617 ;; The original filter is stored in `follow-process-filter-alist'.
1618 ;; Our generic filter calls the original filter, or inserts the
1619 ;; output into the buffer, if the buffer originally didn't have an
1620 ;; output filter. It also makes sure that the windows connected to
1621 ;; the buffer are aligned.
1622 ;;
1623 ;; Discussion: How do we find processes that don't call
1624 ;; `set-process-filter'? (How often are processes created in a
1625 ;; buffer after Follow mode are activated?)
1626 ;;
1627 ;; Discussion: Should we also advice `process-filter' to make our
1628 ;; filter invisible to others?
1629
1630 ;;{{{ Advice for `set-process-filter'
1631
1632 ;; Do not call this with 'follow-generic-filter as the name of the
1633 ;; filter...
1634
1635 (defadvice set-process-filter (before follow-set-process-filter activate)
1636 "Ensure process output will be displayed correctly in Follow mode buffers.
1637
1638 Follow mode inserts its own process filter to do its
1639 magic stuff before the real process filter is called."
1640 (if follow-intercept-processes
1641 (progn
1642 (setq follow-process-filter-alist
1643 (delq (assq (ad-get-arg 0) follow-process-filter-alist)
1644 follow-process-filter-alist))
1645 (follow-tidy-process-filter-alist)
1646 (cond ((eq (ad-get-arg 1) t))
1647 ((eq (ad-get-arg 1) nil)
1648 (ad-set-arg 1 'follow-generic-filter))
1649 (t
1650 (setq follow-process-filter-alist
1651 (cons (cons (ad-get-arg 0) (ad-get-arg 1))
1652 follow-process-filter-alist))
1653 (ad-set-arg 1 'follow-generic-filter))))))
1654
1655
1656 (defun follow-call-set-process-filter (proc filter)
1657 "Call original `set-process-filter' without the Follow mode advice."
1658 (ad-disable-advice 'set-process-filter 'before
1659 'follow-set-process-filter)
1660 (ad-activate 'set-process-filter)
1661 (prog1
1662 (set-process-filter proc filter)
1663 (ad-enable-advice 'set-process-filter 'before
1664 'follow-set-process-filter)
1665 (ad-activate 'set-process-filter)))
1666
1667
1668 (defadvice process-filter (after follow-process-filter activate)
1669 "Return the original process filter, not `follow-generic-filter'."
1670 (cond ((eq ad-return-value 'follow-generic-filter)
1671 (setq ad-return-value
1672 (cdr-safe (assq (ad-get-arg 0)
1673 follow-process-filter-alist))))))
1674
1675
1676 (defun follow-call-process-filter (proc)
1677 "Call original `process-filter' without the Follow mode advice."
1678 (ad-disable-advice 'process-filter 'after
1679 'follow-process-filter)
1680 (ad-activate 'process-filter)
1681 (prog1
1682 (process-filter proc)
1683 (ad-enable-advice 'process-filter 'after
1684 'follow-process-filter)
1685 (ad-activate 'process-filter)))
1686
1687
1688 (defun follow-tidy-process-filter-alist ()
1689 "Remove old processes from `follow-process-filter-alist'."
1690 (let ((alist follow-process-filter-alist)
1691 (ps (process-list))
1692 (new ()))
1693 (while alist
1694 (if (and (not (memq (process-status (car (car alist)))
1695 '(exit signal closed nil)))
1696 (memq (car (car alist)) ps))
1697 (setq new (cons (car alist) new)))
1698 (setq alist (cdr alist)))
1699 (setq follow-process-filter-alist new)))
1700
1701 ;;}}}
1702 ;;{{{ Start/stop interception of processes.
1703
1704 ;; Normally, all new processed are intercepted by our `set-process-filter'.
1705 ;; This is needed to intercept old processed that were started before we were
1706 ;; loaded, and processes we have forgotten by calling
1707 ;; `follow-stop-intercept-process-output'.
1708
1709 (defun follow-intercept-process-output ()
1710 "Intercept all active processes.
1711
1712 This is needed so that Follow mode can track all display events in the
1713 system. (See `follow-mode'.)"
1714 (interactive)
1715 (let ((list (process-list)))
1716 (while list
1717 (if (eq (process-filter (car list)) 'follow-generic-filter)
1718 nil
1719 ;; The custom `set-process-filter' defined above.
1720 (set-process-filter (car list) (process-filter (car list))))
1721 (setq list (cdr list))))
1722 (setq follow-intercept-processes t))
1723
1724
1725 (defun follow-stop-intercept-process-output ()
1726 "Stop Follow mode from spying on processes.
1727
1728 All current spypoints are removed and no new will be added.
1729
1730 The effect is that Follow mode won't be able to handle buffers
1731 connected to processes.
1732
1733 The only reason to call this function is if the Follow mode spy filter
1734 would interfere with some other package. If this happens, please
1735 report this using the `report-emacs-bug' function."
1736 (interactive)
1737 (follow-tidy-process-filter-alist)
1738 (dolist (process (process-list))
1739 (when (eq (follow-call-process-filter process) 'follow-generic-filter)
1740 (follow-call-set-process-filter
1741 process
1742 (cdr-safe (assq process follow-process-filter-alist)))
1743 (setq follow-process-filter-alist
1744 (delq (assq process follow-process-filter-alist)
1745 follow-process-filter-alist))))
1746 (setq follow-intercept-processes nil))
1747
1748 ;;}}}
1749 ;;{{{ The filter
1750
1751 ;; The following section is a naive method to make buffers with
1752 ;; process output to work with Follow mode. Whenever the start of the
1753 ;; window displaying the buffer is moved, we moves it back to its
1754 ;; original position and try to select a new window. (If we fail,
1755 ;; the normal redisplay functions of Emacs will scroll it right
1756 ;; back!)
1757
1758 (defun follow-generic-filter (proc output)
1759 "Process output filter for process connected to buffers in Follow mode."
1760 (let* ((old-buffer (current-buffer))
1761 (orig-win (selected-window))
1762 (buf (process-buffer proc))
1763 (win (and buf (if (eq buf (window-buffer orig-win))
1764 orig-win
1765 (get-buffer-window buf t))))
1766 (return-to-orig-win (and win (not (eq win orig-win))))
1767 (orig-window-start (and win (window-start win))))
1768
1769 ;; If input is pending, the `sit-for' below won't redraw the
1770 ;; display. In that case, calling `follow-avoid-tail-recenter' may
1771 ;; provoke the process hadnling code to sceduling a redisplay.
1772 ;(or (input-pending-p)
1773 ; (follow-avoid-tail-recenter))
1774
1775 ;; Output the `output'.
1776 (let ((filter (cdr-safe (assq proc follow-process-filter-alist))))
1777 (cond
1778 ;; Call the original filter function
1779 (filter
1780 (funcall filter proc output))
1781
1782 ;; No filter, but we've got a buffer. Just output into it.
1783 (buf
1784 (set-buffer buf)
1785 (if (not (marker-buffer (process-mark proc)))
1786 (set-marker (process-mark proc) (point-max)))
1787 (let ((moving (= (point) (process-mark proc)))
1788 deactivate-mark
1789 (inhibit-read-only t))
1790 (save-excursion
1791 (goto-char (process-mark proc))
1792 ;; `insert-before-markers' just in case the users next
1793 ;; command is M-y.
1794 (insert-before-markers output)
1795 (set-marker (process-mark proc) (point)))
1796 (if moving (goto-char (process-mark proc)))))))
1797
1798 ;; If we're in follow mode, do our stuff. Select a new window and
1799 ;; redisplay. (Actually, it is redundant to check `buf', but I
1800 ;; feel it's more correct.)
1801 (if (and buf (window-live-p win))
1802 (progn
1803 (set-buffer buf)
1804 (if (and (boundp 'follow-mode) follow-mode)
1805 (progn
1806 (select-window win)
1807 (let* ((windows (follow-all-followers win))
1808 (win-start-end (follow-windows-start-end windows))
1809 (new-window-start (window-start win))
1810 (new-window-point (window-point win)))
1811 (cond
1812 ;; The start of the selected window was repositioned.
1813 ;; Try to use the original start position and continue
1814 ;; working with a window to the "right" in the window
1815 ;; chain. This will create the effect that the output
1816 ;; starts in one window and continues into the next.
1817
1818 ;; If the display has changed so much that it is not
1819 ;; possible to keep the original window fixed and still
1820 ;; display the point then we give up and use the new
1821 ;; window start.
1822
1823 ;; This case is typically used when the process filter
1824 ;; tries to reposition the start of the window in order
1825 ;; to view the tail of the output.
1826 ((not (eq orig-window-start new-window-start))
1827 (follow-debug-message "filter: Moved")
1828 (set-window-start win orig-window-start)
1829 (follow-redisplay windows win)
1830 (setq win-start-end (follow-windows-start-end windows))
1831 (follow-select-if-visible new-window-point
1832 win-start-end)
1833 (goto-char new-window-point)
1834 (if (eq win (selected-window))
1835 (set-window-start win new-window-start))
1836 (setq win-start-end (follow-windows-start-end windows)))
1837 ;; Stick to this window, if point is visible in it.
1838 ((pos-visible-in-window-p new-window-point)
1839 (follow-debug-message "filter: Visible in window"))
1840 ;; Avoid redisplaying the first window. If the
1841 ;; point is visible at a window below,
1842 ;; redisplay and select it.
1843 ((follow-select-if-visible-from-first
1844 new-window-point windows)
1845 (follow-debug-message "filter: Seen from first")
1846 (setq win-start-end
1847 (follow-windows-start-end windows)))
1848 ;; None of the above. We stick to the current window.
1849 (t
1850 (follow-debug-message "filter: nothing")))
1851
1852 ;; Here we have slected a window. Make sure the
1853 ;; windows are aligned and the point is visible
1854 ;; in the selected window.
1855 (if (and (not (follow-pos-visible
1856 (point) (selected-window) win-start-end))
1857 (not return-to-orig-win))
1858 (progn
1859 (sit-for 0)
1860 (setq win-start-end
1861 (follow-windows-start-end windows))))
1862
1863 (if (or follow-internal-force-redisplay
1864 (not (follow-windows-aligned-p win-start-end)))
1865 (follow-redisplay windows)))))))
1866
1867 ;; return to the original window.
1868 (if return-to-orig-win
1869 (select-window orig-win))
1870 ;; Restore the orignal buffer, unless the filter explicitly
1871 ;; changed buffer or killed the old buffer.
1872 (if (and (eq buf (current-buffer))
1873 (buffer-name old-buffer))
1874 (set-buffer old-buffer)))
1875
1876 (follow-invalidate-cache)
1877
1878 ;; Normally, if the display has been changed, it is redrawn. All
1879 ;; windows showing only the end of a buffer are unconditionally
1880 ;; recentered; we can't prevent that by calling
1881 ;; `follow-avoid-tail-recenter'.
1882 ;;
1883 ;; We force a redisplay here on our own, so Emacs does need to.
1884 ;; (However, redisplaying when there's input available just seems
1885 ;; to make things worse, so we exclude that case.)
1886 (if (and follow-avoid-tail-recenter-p
1887 (not (input-pending-p)))
1888 (sit-for 0)))
1889
1890 ;;}}}
1891
1892 ;;}}}
1893 ;;{{{ Window size change
1894
1895 ;; In Emacs 19.29, the functions in `window-size-change-functions' are
1896 ;; called every time a window in a frame changes size. Most notably, it
1897 ;; is called after the frame has been resized.
1898 ;;
1899 ;; We basically call our post-command-hook for every buffer that is
1900 ;; visible in any window in the resized frame, which is in follow-mode.
1901 ;;
1902 ;; Since this function can be called indirectly from
1903 ;; `follow-post-command-hook' we have a potential infinite loop. We
1904 ;; handle this problem by simply not doing anything at all in this
1905 ;; situation. The variable `follow-inside-post-command-hook' contains
1906 ;; information about whether the execution actually is inside the
1907 ;; post-command-hook or not.
1908
1909 (if (boundp 'window-size-change-functions)
1910 (add-hook 'window-size-change-functions 'follow-window-size-change))
1911
1912
1913 (defun follow-window-size-change (frame)
1914 "Redraw all windows in FRAME, when in Follow mode."
1915 ;; Below, we call `post-command-hook'. This makes sure that we
1916 ;; don't start a mutually recursive endless loop.
1917 (if follow-inside-post-command-hook
1918 nil
1919 (let ((buffers '())
1920 (orig-window (selected-window))
1921 (orig-buffer (current-buffer))
1922 (orig-frame (selected-frame))
1923 windows
1924 buf)
1925 (select-frame frame)
1926 (unwind-protect
1927 (walk-windows
1928 (function
1929 (lambda (win)
1930 (setq buf (window-buffer win))
1931 (if (memq buf buffers)
1932 nil
1933 (set-buffer buf)
1934 (if (and (boundp 'follow-mode)
1935 follow-mode)
1936 (progn
1937 (setq windows (follow-all-followers win))
1938 (if (memq orig-window windows)
1939 (progn
1940 ;; Make sure we're redrawing around the
1941 ;; selected window.
1942 ;;
1943 ;; We must be really careful not to do this
1944 ;; when we are (indirectly) called by
1945 ;; `post-command-hook'.
1946 (select-window orig-window)
1947 (follow-post-command-hook)
1948 (setq orig-window (selected-window)))
1949 (follow-redisplay windows win))
1950 (setq buffers (cons buf buffers))))))))
1951 (select-frame orig-frame)
1952 (set-buffer orig-buffer)
1953 (select-window orig-window)))))
1954
1955 ;;}}}
1956
1957 ;;{{{ XEmacs isearch
1958
1959 ;; In XEmacs, isearch often finds matches in other windows than the
1960 ;; currently selected. However, when exiting the old window
1961 ;; configuration is restored, with the exception of the beginning of
1962 ;; the start of the window for the selected window. This is not much
1963 ;; help for us.
1964 ;;
1965 ;; We overwrite the stored window configuration with the current,
1966 ;; unless we are in `slow-search-mode', i.e. only a few lines
1967 ;; of text is visible.
1968
1969 (if (featurep 'xemacs)
1970 (defadvice isearch-done (before follow-isearch-done activate)
1971 (if (and (boundp 'follow-mode)
1972 follow-mode
1973 (boundp 'isearch-window-configuration)
1974 isearch-window-configuration
1975 (boundp 'isearch-slow-terminal-mode)
1976 (not isearch-slow-terminal-mode))
1977 (let ((buf (current-buffer)))
1978 (setq isearch-window-configuration
1979 (current-window-configuration))
1980 (set-buffer buf)))))
1981
1982 ;;}}}
1983 ;;{{{ Tail window handling
1984
1985 ;; In Emacs (not XEmacs) windows showing nothing are sometimes
1986 ;; recentered. When in Follow mode, this is not desirable for
1987 ;; non-first windows in the window chain. This section tries to
1988 ;; make the windows stay where they should be.
1989 ;;
1990 ;; If the display is updated, all windows starting at (point-max) are
1991 ;; going to be recentered at the next redisplay, unless we do a
1992 ;; read-and-write cycle to update the `force' flag inside the windows.
1993 ;;
1994 ;; In 19.30, a new varible `window-scroll-functions' is called every
1995 ;; time a window is recentered. It is not perfect for our situation,
1996 ;; since when it is called for a tail window, it is to late. However,
1997 ;; if it is called for another window, we can try to update our
1998 ;; windows.
1999 ;;
2000 ;; By patching `sit-for' we can make sure that to catch all explicit
2001 ;; updates initiated by lisp programs. Internal calls, on the other
2002 ;; hand, are not handled.
2003 ;;
2004 ;; Please note that the function `follow-avoid-tail-recenter' is also
2005 ;; called from other places, e.g. `post-command-hook' and
2006 ;; `post-command-idle-hook'.
2007
2008 ;; If this function is called it is too late for this window, but
2009 ;; we might save other windows from being recentered.
2010
2011 (if (and follow-avoid-tail-recenter-p (boundp 'window-scroll-functions))
2012 (add-hook 'window-scroll-functions 'follow-avoid-tail-recenter t))
2013
2014
2015 ;; This prevents all packages that calls `sit-for' directly
2016 ;; to recenter tail windows.
2017
2018 (if follow-avoid-tail-recenter-p
2019 (defadvice sit-for (before follow-sit-for activate)
2020 "Adviced by Follow mode.
2021
2022 Avoid to recenter windows displaying only the end of a file as when
2023 displaying a short file in two windows, using Follow mode."
2024 (follow-avoid-tail-recenter)))
2025
2026
2027 ;; Without this advice, `mouse-drag-region' would start to recenter
2028 ;; tail windows.
2029
2030 (if (and follow-avoid-tail-recenter-p
2031 (fboundp 'move-overlay))
2032 (defadvice move-overlay (before follow-move-overlay activate)
2033 "Adviced by Follow mode.
2034 Don't recenter windows showing only the end of a buffer.
2035 This prevents `mouse-drag-region' from messing things up."
2036 (follow-avoid-tail-recenter)))
2037
2038 ;;}}}
2039 ;;{{{ profile support
2040
2041 ;; The following (non-evaluated) section can be used to
2042 ;; profile this package using `elp'.
2043 ;;
2044 ;; Invalid indentation on purpose!
2045
2046 (cond (nil
2047 (setq elp-function-list
2048 '(window-end
2049 vertical-motion
2050 ; sit-for ;; elp can't handle advices...
2051 follow-mode
2052 follow-all-followers
2053 follow-split-followers
2054 follow-redisplay
2055 follow-estimate-first-window-start
2056 follow-calculate-first-window-start-from-above
2057 follow-calculate-first-window-start-from-below
2058 follow-calc-win-end
2059 follow-calc-win-start
2060 follow-pos-visible
2061 follow-windows-start-end
2062 follow-cache-valid-p
2063 follow-select-if-visible
2064 follow-select-if-visible-from-first
2065 follow-windows-aligned-p
2066 follow-point-visible-all-windows-p
2067 follow-avoid-tail-recenter
2068 follow-update-window-start
2069 follow-post-command-hook
2070 ))))
2071
2072 ;;}}}
2073
2074 ;;{{{ The end
2075
2076 (defun follow-unload-function ()
2077 "Unload Follow mode library."
2078 (easy-menu-remove-item nil '("Tools") "Follow")
2079 (follow-stop-intercept-process-output)
2080 (dolist (group '((before
2081 ;; XEmacs
2082 isearch-done
2083 ;; both
2084 set-process-filter sit-for move-overlay)
2085 (after
2086 ;; Emacs
2087 scroll-bar-drag scroll-bar-drag-1 scroll-bar-scroll-down
2088 scroll-bar-scroll-up scroll-bar-set-window-start
2089 ;; XEmacs
2090 scrollbar-line-down scrollbar-line-up scrollbar-page-down
2091 scrollbar-page-up scrollbar-to-bottom scrollbar-to-top
2092 scrollbar-vertical-drag
2093 ;; both
2094 process-filter)))
2095 (let ((class (car group)))
2096 (dolist (fun (cdr group))
2097 (when (functionp fun)
2098 (condition-case nil
2099 (progn
2100 (ad-remove-advice fun class
2101 (intern (concat "follow-" (symbol-name fun))))
2102 (ad-update fun))
2103 (error nil))))))
2104 ;; continue standard processing
2105 nil)
2106
2107 ;;
2108 ;; We're done!
2109 ;;
2110
2111 (provide 'follow)
2112
2113 ;;}}}
2114
2115 ;; /------------------------------------------------------------------------\
2116 ;; | "I [..] am rarely happier then when spending an entire day programming |
2117 ;; | my computer to perform automatically a task that it would otherwise |
2118 ;; | take me a good ten seconds to do by hand. Ten seconds, I tell myself, |
2119 ;; | is ten seconds. Time is valuable and ten seconds' worth of it is well |
2120 ;; | worth the investment of a day's happy activity working out a way to |
2121 ;; | save it". -- Douglas Adams, "Last Chance to See" |
2122 ;; \------------------------------------------------------------------------/
2123
2124 ;;; follow.el ends here