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