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