1 ;;; follow.el --- synchronize windows showing the same buffer
3 ;; Copyright (C) 1995-1997, 1999, 2001-2012 Free Software Foundation, Inc.
5 ;; Author: Anders Lindgren <andersl@andersl.com>
6 ;; Maintainer: FSF (Anders' email bounces, Sep 2005)
8 ;; Keywords: display, window, minor-mode, convenience
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
29 ;; `Follow mode' is a minor mode for Emacs and XEmacs that
30 ;; combines windows into one tall virtual window.
32 ;; The feeling of a "virtual window" has been accomplished by the use
33 ;; of two major techniques:
35 ;; * The windows always display adjacent sections of the buffer.
36 ;; This means that whenever one window is moved, all the
37 ;; others will follow. (Hence the name Follow mode.)
39 ;; * Should the point (cursor) end up outside a window, another
40 ;; window displaying that point is selected, if possible. This
41 ;; makes it possible to walk between windows using normal cursor
44 ;; Follow mode comes to its prime when a large screen and two
45 ;; side-by-side window are used. The user can, with the help of Follow
46 ;; mode, use two full-height windows as though they are one.
47 ;; Imagine yourself editing a large function, or section of text,
48 ;; and being able to use 144 lines instead of the normal 72... (your
51 ;; To test this package, make sure `follow' is loaded, or will be
52 ;; autoloaded when activated (see below). Then do the following:
54 ;; * Find your favorite file (preferably a long one).
56 ;; * Resize Emacs so that it will be wide enough for two full size
57 ;; columns. Delete the other windows and split the window with
58 ;; the commands `C-x 1 C-x 3'.
60 ;; * Give the command:
61 ;; M-x follow-mode <RETURN>
63 ;; * Now the display should look something like (assuming the text "71"
66 ;; +----------+----------+
73 ;; +----------+----------+
75 ;; As you can see, the right-hand window starts at line 73, the line
76 ;; immediately below the end of the left-hand window. As long as
77 ;; `follow-mode' is active, the two windows will follow each other!
79 ;; * Play around and enjoy! Scroll one window and watch the other.
80 ;; Jump to the beginning or end. Press `Cursor down' at the last
81 ;; line of the left-hand window. Enter new lines into the
82 ;; text. Enter long lines spanning several lines, or several
85 ;; * Should you find `Follow' mode annoying, just type
86 ;; M-x follow-mode <RETURN>
90 ;; The command `follow-delete-other-windows-and-split' maximizes the
91 ;; visible area of the current buffer.
93 ;; I recommend adding it, and `follow-mode', to hotkeys in the global
94 ;; key map. To do so, add the following lines (replacing `[f7]' and
95 ;; `[f8]' with your favorite keys) to the init file:
97 ;; (global-set-key [f8] 'follow-mode)
98 ;; (global-set-key [f7] 'follow-delete-other-windows-and-split)
101 ;; There exist two system variables that control the appearance of
102 ;; lines wider than the window containing them. The default is to
103 ;; truncate long lines whenever a window isn't as wide as the frame.
105 ;; To make sure lines are never truncated, please place the following
106 ;; lines in your init file:
108 ;; (setq truncate-lines nil)
109 ;; (setq truncate-partial-width-windows nil)
112 ;; Since the display of XEmacs is pixel-oriented, a line could be
113 ;; clipped in half at the bottom of the window.
115 ;; To make XEmacs avoid clipping (normal) lines, please place the
116 ;; following line in your init-file:
118 ;; (setq pixel-vertical-clip-threshold 30)
121 ;; The correct way to configure Follow mode, or any other mode for
122 ;; that matter, is to create one or more functions that do
123 ;; whatever you would like to do. These functions are then added to
126 ;; When `Follow' mode is activated, functions stored in the hook
127 ;; `follow-mode-hook' are called. When it is deactivated
128 ;; `follow-mode-off-hook' is run.
130 ;; The keymap `follow-key-map' contains key bindings activated by
134 ;; (add-hook 'follow-mode-hook 'my-follow-mode-hook)
136 ;; (defun my-follow-mode-hook ()
137 ;; (define-key follow-mode-map "\C-ca" 'your-favorite-function)
138 ;; (define-key follow-mode-map "\C-cb" 'another-function))
143 ;; To activate, issue the command "M-x follow-mode"
144 ;; and press Return. To deactivate, do it again.
146 ;; The following is a list of commands useful when follow-mode is active.
148 ;; follow-scroll-up C-c . C-v
149 ;; Scroll text in a Follow mode window chain up.
151 ;; follow-scroll-down C-c . v
152 ;; Like `follow-scroll-up', but in the other direction.
154 ;; follow-delete-other-windows-and-split C-c . 1
155 ;; Maximize the visible area of the current buffer,
156 ;; and enter Follow mode. This is a very convenient
157 ;; way to start Follow mode, hence we recommend that
158 ;; this command be added to the global keymap.
160 ;; follow-recenter C-c . C-l
161 ;; Place the point in the center of the middle window,
162 ;; or a specified number of lines from either top or bottom.
164 ;; follow-switch-to-buffer C-c . b
165 ;; Switch buffer in all windows displaying the current buffer
168 ;; follow-switch-to-buffer-all C-c . C-b
169 ;; Switch buffer in all windows in the selected frame.
171 ;; follow-switch-to-current-buffer-all
172 ;; Show the current buffer in all windows on the current
173 ;; frame and turn on `follow-mode'.
175 ;; follow-first-window C-c . <
176 ;; Select the first window in the frame showing the same buffer.
178 ;; follow-last-window C-c . >
179 ;; Select the last window in the frame showing the same buffer.
181 ;; follow-next-window C-c . n
182 ;; Select the next window in the frame showing the same buffer.
184 ;; follow-previous-window C-c . p
185 ;; Select the previous window showing the same buffer.
188 ;; Well, it seems ok, but what if I really want to look at two different
189 ;; positions in the text? Here are two simple methods to use:
191 ;; 1) Use multiple frames; `follow' mode only affects windows displayed
192 ;; in the same frame. (My apologies to you who can't use frames.)
194 ;; 2) Bind `follow-mode' to key so you can turn it off whenever
195 ;; you want to view two locations. Of course, `follow' mode can
196 ;; be reactivated by hitting the same key again.
198 ;; Example from my ~/.emacs:
199 ;; (global-set-key [f8] 'follow-mode)
204 ;; In an ideal world, follow mode would have been implemented in the
205 ;; kernel of the display routines, making sure that the windows (using
206 ;; follow mode) ALWAYS are aligned. On planet Earth, however, we must
207 ;; accept a solution where we ALMOST ALWAYS can make sure that the
208 ;; windows are aligned.
210 ;; Follow mode does this in three places:
211 ;; 1) After each user command.
212 ;; 2) After a process output has been performed.
213 ;; 3) When a scrollbar has been moved.
215 ;; This will cover most situations. (Let me know if there are other
216 ;; situations that should be covered.)
218 ;; Note that only the selected window is checked, for the reason of
219 ;; efficiency and code complexity. (I.e. it is possible to make a
220 ;; non-selected window unaligned. It will, however, pop right back
221 ;; when it is selected.)
229 ;; Make the compiler shut up!
230 ;; There are two strategies:
231 ;; 1) Shut warnings off completely.
232 ;; 2) Handle each warning separately.
234 ;; Since I would like to see real errors, I've selected the latter
237 ;; The problem with undefined variables and functions has been solved
238 ;; by using `set', `symbol-value' and `symbol-function' rather than
239 ;; `setq' and direct references to variables and functions.
242 ;; (if (boundp 'foo) ... (symbol-value 'foo) )
243 ;; (set 'foo ...) <-- XEmacs doesn't fall for this one.
244 ;; (funcall (symbol-function 'set) 'bar ...)
246 ;; Note: When this file is interpreted, `eval-when-compile' is
247 ;; evaluated. Since it doesn't hurt to evaluate it, but it is a bit
248 ;; annoying, we test if the byte-compiler has been loaded. This can,
249 ;; of course, lead to some occasional unintended evaluation...
251 ;; Should someone come up with a better solution, please let me
257 (if (or (featurep 'bytecomp
)
258 (featurep 'byte-compile
))
259 (cond ((featurep 'xemacs
)
260 ;; Make XEmacs shut up! I'm using standard Emacs
261 ;; functions, they are NOT obsolete!
262 (if (eq (get 'force-mode-line-update
'byte-compile
)
263 'byte-compile-obsolete
)
264 (put 'force-mode-line-update
'byte-compile
'nil
))
265 (if (eq (get 'frame-first-window
'byte-compile
)
266 'byte-compile-obsolete
)
267 (put 'frame-first-window
'byte-compile
'nil
))))))
273 "Synchronize windows showing the same buffer."
278 (defcustom follow-mode-hook nil
279 "Normal hook run by `follow-mode'."
283 (defcustom follow-mode-off-hook nil
284 "Hooks to run when Follow mode is turned off."
287 (make-obsolete-variable 'follow-mode-off-hook
'follow-mode-hook
"22.2")
291 ;; Define keys for the follow-mode minor mode map and replace some
292 ;; functions in the global map. All `follow' mode special functions
293 ;; can be found on (the somewhat cumbersome) "C-c . <key>"
294 ;; (Control-C dot <key>). (As of Emacs 19.29 the keys
295 ;; C-c <punctuation character> are reserved for minor modes.)
297 ;; To change the prefix, redefine `follow-mode-prefix' before
298 ;; `follow' is loaded, or see the section on `follow-mode-hook'
299 ;; above for an example of how to bind the keys the way you like.
301 ;; Please note that the keymap is defined the first time this file is
302 ;; loaded. Also note that the only valid way to manipulate the
303 ;; keymap is to use `define-key'. Don't change it using `setq' or
306 (defcustom follow-mode-prefix
"\C-c."
307 "Prefix key to use for follow commands in Follow mode.
308 The value of this variable is checked as part of loading Follow mode.
309 After that, changing the prefix key requires manipulating keymaps."
313 (defvar follow-mode-map
314 (let ((mainmap (make-sparse-keymap))
315 (map (make-sparse-keymap)))
316 (define-key map
"\C-v" 'follow-scroll-up
)
317 (define-key map
"\M-v" 'follow-scroll-down
)
318 (define-key map
"v" 'follow-scroll-down
)
319 (define-key map
"1" 'follow-delete-other-windows-and-split
)
320 (define-key map
"b" 'follow-switch-to-buffer
)
321 (define-key map
"\C-b" 'follow-switch-to-buffer-all
)
322 (define-key map
"\C-l" 'follow-recenter
)
323 (define-key map
"<" 'follow-first-window
)
324 (define-key map
">" 'follow-last-window
)
325 (define-key map
"n" 'follow-next-window
)
326 (define-key map
"p" 'follow-previous-window
)
328 (define-key mainmap follow-mode-prefix map
)
330 ;; Replace the standard `end-of-buffer', when in Follow mode. (I
331 ;; don't see the point in trying to replace every function that
332 ;; could be enhanced in Follow mode. End-of-buffer is a special
333 ;; case since it is very simple to define and it greatly enhances
334 ;; the look and feel of Follow mode.)
335 (define-key mainmap
[remap end-of-buffer
] 'follow-end-of-buffer
)
338 "Minor mode keymap for Follow mode.")
340 ;; When the mode is not activated, only one item is visible to activate
342 (defun follow-menu-filter (menu)
343 (if (bound-and-true-p follow-mode
)
345 '(["Follow mode" follow-mode
346 :style toggle
:selected follow-mode
])))
348 ;; If there is a `tools' menu, we use it. However, we can't add a
349 ;; minor-mode specific item to it (it's broken), so we make the
350 ;; contents ghosted when not in use, and add ourselves to the
352 (easy-menu-add-item nil
'("Tools")
354 ;; The Emacs code used to just gray out operations when follow-mode was
355 ;; not enabled, whereas the XEmacs code used to remove it altogether.
356 ;; Not sure which is preferable, but clearly the preference should not
357 ;; depend on the flavor.
358 :filter follow-menu-filter
359 ["Scroll Up" follow-scroll-up follow-mode
]
360 ["Scroll Down" follow-scroll-down follow-mode
]
362 ["Delete Other Windows and Split" follow-delete-other-windows-and-split follow-mode
]
364 ["Switch To Buffer" follow-switch-to-buffer follow-mode
]
365 ["Switch To Buffer (all windows)" follow-switch-to-buffer-all follow-mode
]
367 ["First Window" follow-first-window follow-mode
]
368 ["Last Window" follow-last-window follow-mode
]
369 ["Next Window" follow-next-window follow-mode
]
370 ["Previous Window" follow-previous-window follow-mode
]
372 ["Recenter" follow-recenter follow-mode
]
374 ["Follow mode" follow-mode
:style toggle
:selected follow-mode
]))
378 (defcustom follow-mode-line-text
" Follow"
379 "Text shown in the mode line when Follow mode is active.
380 Defaults to \" Follow\". Examples of other values
381 are \" Fw\", or simply \"\"."
385 (defcustom follow-auto nil
386 "Non-nil activates Follow mode whenever a file is loaded."
390 (defcustom follow-intercept-processes
(fboundp 'start-process
)
391 "When non-nil, Follow mode will monitor process output."
395 (defvar follow-avoid-tail-recenter-p
(not (featurep 'xemacs
))
396 "*When non-nil, patch Emacs so that tail windows won't be recentered.
398 A \"tail window\" is a window that displays only the end of
399 the buffer. Normally it is practical for the user that empty
400 windows are recentered automatically. However, when using
401 Follow mode it breaks the display when the end is displayed
402 in a window \"above\" the last window. This is for
403 example the case when displaying a short page in info.
405 Must be set before Follow mode is loaded.
407 Please note that it is not possible to fully prevent Emacs from
408 recentering empty windows. Please report if you find a repeatable
409 situation in which Emacs recenters empty windows.
411 XEmacs, as of 19.12, does not recenter windows, good!")
413 (defvar follow-cache-command-list
414 '(next-line previous-line forward-char backward-char
)
415 "List of commands that don't require recalculation.
417 In order to be able to use the cache, a command should not change the
418 contents of the buffer, nor should it change selected window or current
421 The commands in this list are checked at load time.
423 To mark other commands as suitable for caching, set the symbol
424 property `follow-mode-use-cache' to non-nil.")
426 (defvar follow-debug nil
427 "*Non-nil when debugging Follow mode.")
430 ;; Internal variables:
432 (defvar follow-internal-force-redisplay nil
433 "True when Follow mode should redisplay the windows.")
435 (defvar follow-process-filter-alist
'()
436 "The original filters for processes intercepted by Follow mode.")
438 (defvar follow-active-menu nil
439 "The menu visible when Follow mode is active.")
441 (defvar follow-deactive-menu nil
442 "The menu visible when Follow mode is deactivated.")
444 (defvar follow-inside-post-command-hook nil
445 "Non-nil when inside Follow modes `post-command-hook'.
446 Used by `follow-window-size-change'.")
448 (defvar follow-windows-start-end-cache nil
449 "Cache used by `follow-window-start-end'.")
454 ;; This inline function must be as small as possible!
455 ;; Maybe we should define a macro that expands to nil if
456 ;; the variable is not set.
458 (defsubst follow-debug-message
(&rest args
)
459 "Like `message', but only active when `follow-debug' is non-nil."
460 (if (and (boundp 'follow-debug
) follow-debug
)
461 (apply 'message args
)))
466 (dolist (cmd follow-cache-command-list
)
467 (put cmd
'follow-mode-use-cache t
))
474 (defun turn-on-follow-mode ()
475 "Turn on Follow mode. Please see the function `follow-mode'."
480 (defun turn-off-follow-mode ()
481 "Turn off Follow mode. Please see the function `follow-mode'."
484 (put 'follow-mode
'permanent-local t
)
486 (define-minor-mode follow-mode
488 With a prefix argument ARG, enable Follow mode if ARG is
489 positive, and disable it otherwise. If called from Lisp, enable
490 the mode if ARG is omitted or nil.
492 Follow mode is a minor mode that combines windows into one tall
493 virtual window. This is accomplished by two main techniques:
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.)
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
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
511 To split one large window into two side-by-side windows, the commands
512 `\\[split-window-right]' or \
513 `M-x follow-delete-other-windows-and-split' can be used.
515 Only windows displayed in the same frame follow each other.
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.)
521 This command runs the normal hook `follow-mode-hook'.
523 Keys specific to Follow mode:
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
))
536 ((not follow-mode
) ; Off
537 (force-mode-line-update))))
542 ;; This will start follow-mode whenever a new file is loaded, if
543 ;; the variable `follow-auto' is non-nil.
545 (add-hook 'find-file-hook
'follow-find-file-hook t
)
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
)))
556 ;;; User functions usable when in Follow mode.
561 ;; `scroll-up' and `-down', but for windows in Follow mode.
563 ;; Almost like the real thing, except 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 recentered. 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
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.)
576 (defun follow-scroll-up (&optional arg
)
577 "Scroll text in a Follow mode window chain up.
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.
582 If called with an argument, scroll ARG lines up.
583 Negative ARG means scroll downward.
585 Works like `scroll-up' when not in Follow mode."
587 (cond ((not (and (boundp 'follow-mode
) follow-mode
))
590 (save-excursion (scroll-up arg
))
591 (setq follow-internal-force-redisplay 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.
601 (vertical-motion (- next-screen-context-lines
))
602 (set-window-start (car windows
) (point)))))))
605 (defun follow-scroll-down (&optional arg
)
606 "Scroll text in a Follow mode window chain down.
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.
611 If called with an argument, scroll ARG lines down.
612 Negative ARG means scroll upward.
614 Works like `scroll-up' when not in Follow mode."
616 (cond ((not (and (boundp 'follow-mode
) follow-mode
))
619 (save-excursion (scroll-down arg
)))
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
)
628 (vertical-motion (- (- (window-height win
)
629 (if header-line-format
2 1)
630 next-screen-context-lines
)))
631 (set-window-start win
(point))
633 (vertical-motion (- next-screen-context-lines
1))
634 (setq follow-internal-force-redisplay t
))))))
640 (defun follow-delete-other-windows-and-split (&optional arg
)
641 "Create two side by side windows and enter Follow mode.
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.)
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.
654 To bind this command to a hotkey, place the following line
655 in your `~/.emacs' file, replacing [f7] by your favorite key:
656 (global-set-key [f7] 'follow-delete-other-windows-and-split)"
658 (let ((other (or (and (null arg
)
659 (not (eq (selected-window)
660 (frame-first-window (selected-frame)))))
662 (< (prefix-numeric-value arg
) 0))))
663 (start (window-start)))
664 (delete-other-windows)
669 (set-window-start (selected-window) start
)
670 (setq follow-internal-force-redisplay t
)))
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)))
679 (select-window (car windows
))
680 (switch-to-buffer buffer
)
681 (setq windows
(cdr windows
)))
682 (select-window orig-window
)))
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: "
690 (or buffer
(setq buffer
(current-buffer)))
691 (let ((orig-window (selected-window)))
696 (switch-to-buffer buffer
))))
697 (select-window orig-window
)
701 (defun follow-switch-to-current-buffer-all ()
702 "Show current buffer in all windows on this frame, and enter Follow mode.
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)"
708 (or (and (boundp 'follow-mode
) follow-mode
)
710 (follow-switch-to-buffer-all))
715 ;; Note, these functions are not very useful, at least not unless you
716 ;; rebind the rather cumbersome key sequence `C-c . p'.
718 (defun follow-next-window ()
719 "Select the next window showing the same buffer."
721 (let ((succ (cdr (follow-split-followers (follow-all-followers)))))
723 (select-window (car succ
))
724 (error "%s" "No more windows"))))
727 (defun follow-previous-window ()
728 "Select the previous window showing the same buffer."
730 (let ((pred (car (follow-split-followers (follow-all-followers)))))
732 (select-window (car pred
))
733 (error "%s" "No more windows"))))
736 (defun follow-first-window ()
737 "Select the first window in the frame showing the same buffer."
739 (select-window (car (follow-all-followers))))
742 (defun follow-last-window ()
743 "Select the last window in the frame showing the same buffer."
745 (select-window (car (reverse (follow-all-followers)))))
750 (defun follow-recenter (&optional arg
)
751 "Recenter the middle window around point.
752 Rearrange all other windows around the middle window.
754 With a positive argument, place the current line ARG lines
755 from the top. With a negative argument, place it -ARG lines
760 (arg (prefix-numeric-value arg
)))
762 ;; Recenter relative to the top.
764 (follow-first-window)
767 ;; Recenter relative to the bottom.
771 ;; Otherwise, our post-command-hook will move the window
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
)))
781 ;;(setq follow-internal-force-redisplay t)
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.
789 Hopefully, there should be no reason to call this function when in
790 Follow mode since the windows should always be aligned."
798 (defun follow-end-of-buffer (&optional arg
)
799 "Move point to the end of the buffer, Follow mode style.
801 If the end is not visible, it will be displayed in the last possible
802 window in the Follow mode window chain.
804 The mark is left at the previous position. With arg N, put point N/10
805 of the way from the true end."
807 (let ((followers (follow-all-followers))
810 (select-window (car (reverse followers
))))
811 ((follow-select-if-end-visible
812 (follow-windows-start-end followers
)))
814 (select-window (car (reverse followers
)))))
817 (end-of-buffer arg
))))
825 ;;;; The display routines
827 ;;{{{ Information gathering functions
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
)))
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
))
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."
854 (setq win
(selected-window)))
856 (while (not (eq (car windows
) win
))
857 (setq pred
(cons (car windows
) pred
))
858 (setq windows
(cdr windows
)))
859 (cons pred
(cdr windows
))))
862 ;; This function is optimized function for speed!
864 (defun follow-calc-win-end (&optional win
)
865 "Calculate the presumed window end for WIN.
867 Actually, the position returned is the start of the next
868 window, normally is the end plus one.
870 If WIN is nil, the selected window is used.
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
(point-max (window-buffer win
)))
879 (list (+ end
1) nil
)))
880 ;; Emacs: We have to calculate the end by ourselves.
881 ;; This code works on both XEmacs and Emacs, but now
882 ;; that XEmacs has got custom-written code, this could
883 ;; be optimized for Emacs.
884 (let (height buffer-end-p
)
885 (with-selected-window (or win
(selected-window))
887 (goto-char (window-start))
890 (if header-line-format
2 1)))
893 (not (= height
(vertical-motion height
)))
895 ;; Fix a mis-feature in `vertical-motion':
896 ;; The start of the window is assumed to
897 ;; coincide with the start of a line.
898 (narrow-to-region (point) (point-max))
899 (not (= height
(vertical-motion height
))))))
900 (list (point) buffer-end-p
))))))
903 ;; Can't use `save-window-excursion' since it triggers a redraw.
904 (defun follow-calc-win-start (windows pos win
)
905 "Calculate where WIN will start if the first in WINDOWS start at POS.
907 If WIN is nil the point below all windows is returned."
909 (while (and windows
(not (eq (car windows
) win
)))
910 (setq start
(window-start (car windows
)))
911 (set-window-start (car windows
) pos
'noforce
)
912 (setq pos
(car (follow-calc-win-end (car windows
))))
913 (set-window-start (car windows
) start
'noforce
)
914 (setq windows
(cdr windows
)))
918 ;; The result from `follow-windows-start-end' is cached when using
919 ;; a handful simple commands, like cursor movement commands.
921 (defsubst follow-cache-valid-p
(windows)
922 "Test if the cached value of `follow-windows-start-end' can be used.
923 Note that this handles the case when the cache has been set to nil."
925 (cache follow-windows-start-end-cache
))
926 (while (and res windows cache
)
927 (setq res
(and (eq (car windows
)
929 (eq (window-start (car windows
))
930 (car (cdr (car cache
))))))
931 (setq windows
(cdr windows
))
932 (setq cache
(cdr cache
)))
933 (and res
(null windows
) (null cache
))))
936 (defsubst follow-invalidate-cache
()
937 "Force `follow-windows-start-end' to recalculate the end of the window."
938 (setq follow-windows-start-end-cache nil
))
941 ;; Build a list of windows and their start and end positions.
942 ;; Useful to avoid calculating start/end position whenever they are needed.
943 ;; The list has the format:
944 ;; ((Win Start End End-of-buffer-visible-p) ...)
946 ;; Used to have a `save-window-excursion', but it obviously triggered
947 ;; redraws of the display. Check if I used it for anything.
950 (defun follow-windows-start-end (windows)
951 "Builds a list of (WIN START END BUFFER-END-P) for every window in WINDOWS."
952 (if (follow-cache-valid-p windows
)
953 follow-windows-start-end-cache
954 (let ((orig-win (selected-window))
958 (push (cons w
(cons (window-start) (follow-calc-win-end)))
960 (select-window orig-win
)
961 (setq follow-windows-start-end-cache
(nreverse win-start-end
)))))
964 (defsubst follow-pos-visible
(pos win win-start-end
)
965 "Non-nil when POS is visible in WIN."
966 (let ((wstart-wend-bend (cdr (assq win win-start-end
))))
967 (and (>= pos
(car wstart-wend-bend
))
968 (or (< pos
(cadr wstart-wend-bend
))
969 (nth 2 wstart-wend-bend
)))))
972 ;; By `aligned' we mean that for all adjacent windows, the end of the
973 ;; first is equal with the start of the successor. The first window
974 ;; should start at a full screen line.
976 (defsubst follow-windows-aligned-p
(win-start-end)
977 "Non-nil if the follower windows are aligned."
980 (goto-char (window-start (caar win-start-end
)))
982 (vertical-motion 0 (caar win-start-end
))
983 (setq res
(eq (point) (window-start (caar win-start-end
))))))
984 (while (and res
(cdr win-start-end
))
985 ;; At least two followers left
986 (setq res
(eq (car (cdr (cdr (car win-start-end
))))
987 (car (cdr (car (cdr win-start-end
))))))
988 (setq win-start-end
(cdr win-start-end
)))
992 ;; Check if the point is visible in all windows. (So that
993 ;; no one will be recentered.)
995 (defun follow-point-visible-all-windows-p (win-start-end)
996 "Non-nil when the `window-point' is visible in all windows."
998 (while (and res win-start-end
)
999 (setq res
(follow-pos-visible (window-point (car (car win-start-end
)))
1000 (car (car win-start-end
))
1002 (setq win-start-end
(cdr win-start-end
)))
1006 ;; Make sure WIN always starts at the beginning of a whole screen
1007 ;; line. If WIN is not aligned the start is updated which probably
1008 ;; will lead to a redisplay of the screen later on.
1010 ;; This is used with the first window in a follow chain. The reason
1011 ;; is that we want to detect that the point is outside the window.
1012 ;; (Without the update, the start of the window will move as the
1013 ;; user presses BackSpace, and the other window redisplay routines
1014 ;; will move the start of the window in the wrong direction.)
1016 (defun follow-update-window-start (win)
1017 "Make sure that the start of WIN starts at a full screen line."
1019 (goto-char (window-start win
))
1021 (vertical-motion 0 win
)
1022 (unless (eq (point) (window-start win
))
1023 (vertical-motion 1 win
)
1024 (set-window-start win
(point) 'noforce
)))))
1027 ;;{{{ Selection functions
1029 ;; Make a window in WINDOWS selected if it currently
1030 ;; is displaying the position DEST.
1032 ;; We don't select a window if it just has been moved.
1034 (defun follow-select-if-visible (dest win-start-end
)
1035 "Select and return a window, if DEST is visible in it.
1036 Return the selected window."
1038 (while (and (not win
) win-start-end
)
1039 ;; Don't select a window that was just moved. This makes it
1040 ;; possible to later select the last window after a `end-of-buffer'
1042 (when (follow-pos-visible dest
(caar win-start-end
) win-start-end
)
1043 (setq win
(caar win-start-end
)
1044 win-end
(car (cddr (car win-start-end
))))
1045 (select-window win
))
1046 (setq win-start-end
(cdr win-start-end
)))
1047 ;; The last line of the window may be partially visible; if so,
1048 ;; and if point is visible in the next window, select the next
1051 (/= dest
(point-max))
1053 (follow-pos-visible dest
(caar win-start-end
) win-start-end
)
1056 (vertical-motion 1 win
)
1057 (>= (point) win-end
))
1058 (setq win
(caar win-start-end
))
1059 (select-window win
))
1063 ;; Lets select a window showing the end. Make sure we only select it if
1064 ;; it wasn't just moved here. (I.e. M-> shall not unconditionally place
1065 ;; the point in the selected window.)
1067 ;; (Compatibility kludge: in Emacs `window-end' is equal to `point-max';
1068 ;; in XEmacs, it is equal to `point-max + 1'. Should I really bother
1069 ;; checking `window-end' now when I check `end-of-buffer' explicitly?)
1071 (defun follow-select-if-end-visible (win-start-end)
1072 "Select and return a window, if end is visible in it."
1074 (while (and (not win
) win-start-end
)
1075 ;; Don't select a window that was just moved. This makes it
1076 ;; possible to later select the last window after a `end-of-buffer'
1078 (if (and (eq (point-max) (nth 2 (car win-start-end
)))
1079 (nth 3 (car win-start-end
))
1080 ;; `window-end' might return nil.
1081 (let ((end (window-end (car (car win-start-end
)))))
1083 (eq (point-max) (min (point-max) end
)))))
1085 (setq win
(car (car win-start-end
)))
1086 (select-window win
)))
1087 (setq win-start-end
(cdr win-start-end
)))
1091 ;; Select a window that will display the point if the windows would
1092 ;; be redisplayed with the first window fixed. This is useful for
1093 ;; example when the user has pressed return at the bottom of a window
1094 ;; as the point is not visible in any window.
1096 (defun follow-select-if-visible-from-first (dest windows
)
1097 "Try to select one of WINDOWS without repositioning the topmost window.
1098 If one of the windows in WINDOWS contains DEST, select it, call
1099 `follow-redisplay', move point to DEST, and return that window.
1100 Otherwise, return nil."
1101 (let (win end-pos-end-p
)
1103 (goto-char (window-start (car windows
)))
1104 ;; Make sure the line start in the beginning of a real screen
1106 (vertical-motion 0 (car windows
))
1107 (when (>= dest
(point))
1108 ;; At or below the start. Check the windows.
1109 (save-window-excursion
1110 (let ((windows windows
))
1111 (while (and (not win
) windows
)
1112 (set-window-start (car windows
) (point) 'noforce
)
1113 (setq end-pos-end-p
(follow-calc-win-end (car windows
)))
1114 (goto-char (car end-pos-end-p
))
1115 ;; Visible, if dest above end, or if eob is visible inside
1117 (if (or (car (cdr end-pos-end-p
))
1119 (setq win
(car windows
))
1120 (setq windows
(cdr windows
))))))))
1123 (follow-redisplay windows
(car windows
))
1131 ;; Redraw all the windows on the screen, starting with the top window.
1132 ;; The window used as as marker is WIN, or the selected window if WIN
1133 ;; is nil. Start every window directly after the end of the previous
1134 ;; window, to make sure long lines are displayed correctly.
1136 (defun follow-redisplay (&optional windows win preserve-win
)
1137 "Reposition the WINDOWS around WIN.
1138 Should the point be too close to the roof we redisplay everything
1139 from the top. WINDOWS should contain a list of windows to
1140 redisplay; it is assumed that WIN is a member of the list.
1141 Should WINDOWS be nil, the windows displaying the
1142 same buffer as WIN, in the current frame, are used.
1143 Should WIN be nil, the selected window is used.
1144 If PRESERVE-WIN is non-nil, keep WIN itself unchanged while
1145 repositioning the other windows."
1146 (or win
(setq win
(selected-window)))
1147 (or windows
(setq windows
(follow-all-followers win
)))
1148 ;; Calculate the start of the first window.
1149 (let* ((old-win-start (window-start win
))
1150 (try-first-start (follow-estimate-first-window-start
1151 windows win old-win-start
))
1152 (try-win-start (follow-calc-win-start
1153 windows try-first-start win
))
1154 (start (cond ((= try-win-start old-win-start
)
1155 (follow-debug-message "exact")
1157 ((< try-win-start old-win-start
)
1158 (follow-debug-message "above")
1159 (follow-calculate-first-window-start-from-above
1160 windows try-first-start win old-win-start
))
1162 (follow-debug-message "below")
1163 (follow-calculate-first-window-start-from-below
1164 windows try-first-start win old-win-start
)))))
1166 (unless (and preserve-win
(eq w win
))
1167 (set-window-start w start
))
1168 (setq start
(car (follow-calc-win-end w
))))))
1171 (defun follow-estimate-first-window-start (windows win start
)
1172 "Estimate the position of the first window.
1173 The estimate is computed by assuming that the window WIN, which
1174 should be a member of WINDOWS, starts at position START."
1175 (let ((windows-before (car (follow-split-followers windows win
))))
1178 (vertical-motion 0 win
)
1179 (dolist (w windows-before
)
1180 (vertical-motion (- 1 (window-text-height w
)) w
))
1184 ;; Find the starting point, start at GUESS and search downward.
1185 ;; The returned point is always a point below GUESS.
1187 (defun follow-calculate-first-window-start-from-above
1188 (windows guess win start
)
1195 (if (not (= (vertical-motion 1 (car windows
)) 1))
1196 ;; Hit bottom! (Can we really do this?)
1197 ;; We'll keep it, since it ensures termination.
1200 (setq res
(point-max)))
1201 (setq win-start
(follow-calc-win-start windows
(point) win
))
1202 (if (>= win-start start
)
1203 (setq done t res
(point)))))
1207 ;; Find the starting point, start at GUESS and search upward. Return
1208 ;; a point on the same line as GUESS, or above.
1210 ;; (Is this ever used? I must make sure it works just in case it is
1213 (defun follow-calculate-first-window-start-from-below
1214 (windows guess
&optional win start
)
1215 (setq win
(or win
(selected-window)))
1216 (setq start
(or start
(window-start win
)))
1218 (let (done win-start res opoint
)
1219 ;; Always calculate what happens when no line is displayed in the first
1220 ;; window. (The `previous' res is needed below!)
1222 (vertical-motion 0 (car windows
))
1225 (setq opoint
(point))
1226 (if (not (= (vertical-motion -
1 (car windows
)) -
1))
1228 (setq done t res
(point-min))
1229 (setq win-start
(follow-calc-win-start windows
(point) win
))
1230 (cond ((>= (point) opoint
)
1231 ;; In some pathological cases, vertical-motion may
1232 ;; return -1 even though point has not decreased. In
1233 ;; that case, avoid looping forever.
1234 (setq done t res
(point)))
1235 ((= win-start start
) ; Perfect match, use this value
1236 (setq done t res
(point)))
1237 ((< win-start start
) ; Walked to far, use previous result
1239 (t ; Store result for next iteration
1240 (setq res
(point))))))
1244 ;;{{{ Avoid tail recenter
1246 ;; This sets the window internal flag `force_start'. The effect is that
1247 ;; windows only displaying the tail aren't recentered.
1248 ;; Has to be called before every redisplay... (Great isn't it?)
1250 ;; XEmacs doesn't recenter the tail, GOOD!
1252 ;; A window displaying only the tail, is a window whose
1253 ;; window-start position is equal to (point-max) of the buffer it
1256 ;; This function is also added to `post-command-idle-hook', introduced
1257 ;; in Emacs 19.30. This is needed since the vaccine injected by the
1258 ;; call from `post-command-hook' only works until the next redisplay.
1259 ;; It is possible that the functions in the `post-command-idle-hook'
1260 ;; can cause a redisplay, and hence a new vaccine is needed.
1262 ;; Sometimes, calling this function could actually cause a redisplay,
1263 ;; especially if it is placed in the debug filter section. I must
1264 ;; investigate this further...
1266 (defun follow-avoid-tail-recenter (&rest _rest
)
1267 "Make sure windows displaying the end of a buffer aren't recentered.
1269 This is done by reading and rewriting the start position of
1270 non-first windows in Follow mode."
1271 (if follow-avoid-tail-recenter-p
1272 (let* ((orig-buffer (current-buffer))
1273 (top (frame-first-window (selected-frame)))
1275 (who '()) ; list of (buffer . frame)
1277 pair
) ; (buffer . frame)
1278 ;; If the only window in the frame is a minibuffer
1279 ;; window, `next-window' will never find it again...
1280 (if (window-minibuffer-p top
)
1282 (while ;; look, no body!
1284 (setq start
(window-start win
))
1285 (set-buffer (window-buffer win
))
1286 (setq pair
(cons (window-buffer win
) (window-frame win
)))
1287 (if (member pair who
)
1288 (if (and (boundp 'follow-mode
) follow-mode
1289 (eq (point-max) start
))
1290 ;; Write the same window start back, but don't
1291 ;; set the NOFORCE flag.
1292 (set-window-start win start
))
1293 (setq who
(cons pair who
)))
1294 (setq win
(next-window win
'not t
))
1295 (not (eq win top
)))) ;; Loop while this is true.
1296 (set-buffer orig-buffer
)))))
1301 ;;{{{ Post Command Hook
1303 ;; The magic little box. This function is called after every command.
1305 ;; This is not as complicated as it seems. It is simply a list of common
1306 ;; display situations and the actions to take, plus commands for redrawing
1307 ;; the screen if it should be unaligned.
1309 ;; We divide the check into two parts; whether we are at the end or not.
1310 ;; This is due to the fact that the end can actually be visible
1311 ;; in several window even though they are aligned.
1313 (defun follow-post-command-hook ()
1314 "Ensure that the windows in Follow mode are adjacent after each command."
1315 (unless (input-pending-p)
1316 (let ((follow-inside-post-command-hook t
)
1317 (win (selected-window)))
1318 ;; Work in the selected window, not in the current buffer.
1319 (with-current-buffer (window-buffer win
)
1320 (unless (and (symbolp this-command
)
1321 (get this-command
'follow-mode-use-cache
))
1322 (follow-invalidate-cache))
1323 (when (and follow-mode
1324 (not (window-minibuffer-p win
)))
1325 ;; The buffer shown in the selected window is in follow
1326 ;; mode. Find the current state of the display.
1327 (let* ((windows (follow-all-followers win
))
1329 (win-start-end (progn
1330 (follow-update-window-start (car windows
))
1331 (follow-windows-start-end windows
)))
1332 (aligned (follow-windows-aligned-p win-start-end
))
1333 (visible (follow-pos-visible dest win win-start-end
))
1334 selected-window-up-to-date
)
1335 (unless (and aligned visible
)
1336 (follow-invalidate-cache))
1337 (follow-avoid-tail-recenter)
1338 ;; Select a window to display point.
1339 (unless follow-internal-force-redisplay
1340 (if (eq dest
(point-max))
1341 ;; At point-max, we have to be careful since the
1342 ;; display can be aligned while `dest' can be
1343 ;; visible in several windows.
1345 ;; Select the current window, but only when the
1346 ;; display is correct. (When inserting characters
1347 ;; in a tail window, the display is not correct, as
1348 ;; they are shown twice.)
1350 ;; Never stick to the current window after a
1351 ;; deletion. The reason is cosmetic: when typing
1352 ;; `DEL' in a window showing only the end of the
1353 ;; file, a character would be removed from the
1354 ;; window above, which is very unintuitive.
1357 (not (memq this-command
1358 '(backward-delete-char
1359 delete-backward-char
1360 backward-delete-char-untabify
1362 (follow-debug-message "Max: same"))
1363 ;; If the end is visible, and the window doesn't
1364 ;; seems like it just has been moved, select it.
1365 ((follow-select-if-end-visible win-start-end
)
1366 (follow-debug-message "Max: end visible")
1367 (setq visible t aligned nil
)
1369 ;; Just show the end...
1371 (follow-debug-message "Max: default")
1372 (select-window (car (reverse windows
)))
1374 (setq visible nil aligned nil
)))
1376 ;; We're not at the end, here life is much simpler.
1378 ;; This is the normal case!
1379 ;; It should be optimized for speed.
1380 ((and visible aligned
)
1381 (follow-debug-message "same"))
1382 ;; Pick a position in any window. If the display is
1383 ;; ok, this will pick the `correct' window.
1384 ((follow-select-if-visible dest win-start-end
)
1385 (follow-debug-message "visible")
1387 ;; We have to perform redisplay, since scrolling is
1388 ;; needed in case the line is partially visible.
1390 ;; Not visible anywhere else, lets pick this one.
1391 ;; (Is this case used?)
1393 (follow-debug-message "visible in selected."))
1395 ((eq dest
(point-min))
1396 (follow-debug-message "min")
1397 (select-window (car windows
))
1399 (set-window-start (selected-window) (point-min))
1400 (setq win-start-end
(follow-windows-start-end windows
))
1401 (follow-invalidate-cache)
1402 (setq visible t aligned nil
))
1403 ;; If we can position the cursor without moving the first
1404 ;; window, do it. This is the case that catches `RET'
1405 ;; at the bottom of a window.
1406 ((follow-select-if-visible-from-first dest windows
)
1407 (follow-debug-message "Below first")
1408 (setq visible t aligned t
))
1409 ;; None of the above. For simplicity, we stick to the
1412 (follow-debug-message "None")
1413 (setq visible nil aligned nil
))))
1414 ;; If a new window has been selected, make sure that the
1415 ;; old is not scrolled when the point is outside the
1417 (unless (eq win
(selected-window))
1418 (let ((p (window-point win
)))
1419 (set-window-start win
(window-start win
) nil
)
1420 (set-window-point win p
))))
1422 ;; If point may not be visible in the selected window,
1423 ;; perform a redisplay; this ensures scrolling.
1425 (setq selected-window-up-to-date t
)
1426 (follow-avoid-tail-recenter)
1427 (setq win-start-end
(follow-windows-start-end windows
))
1428 (follow-invalidate-cache)
1430 ;; Now redraw the windows around the selected window.
1431 (unless (and (not follow-internal-force-redisplay
)
1433 (follow-windows-aligned-p win-start-end
))
1434 (follow-point-visible-all-windows-p
1436 (setq follow-internal-force-redisplay nil
)
1437 (follow-redisplay windows
(selected-window)
1438 selected-window-up-to-date
)
1439 (setq win-start-end
(follow-windows-start-end windows
))
1440 (follow-invalidate-cache)
1441 ;; When the point ends up in another window. This
1442 ;; happens when dest is in the beginning of the file and
1443 ;; the selected window is not the first. It can also,
1444 ;; in rare situations happen when long lines are used
1445 ;; and there is a big difference between the width of
1446 ;; the windows. (When scrolling one line in a wide
1447 ;; window which will cause a move larger that an entire
1449 (unless (follow-pos-visible dest win win-start-end
)
1450 (follow-select-if-visible dest win-start-end
)
1453 ;; If the region is visible, make it look good when spanning
1454 ;; multiple windows.
1455 (when (region-active-p)
1456 (follow-maximize-region
1457 (selected-window) windows win-start-end
))))
1458 ;; Whether or not the buffer was in follow mode, we must
1459 ;; update the windows displaying the tail so that Emacs won't
1461 (follow-avoid-tail-recenter)))))
1466 ;; Tries to make the highlighted area representing the region look
1467 ;; good when spanning several windows.
1469 ;; Not perfect, as the point can't be placed at window end, only at
1470 ;; end-1. This will highlight a little bit in windows above
1473 (defun follow-maximize-region (win windows win-start-end
)
1474 "Make a highlighted region stretching multiple windows look good."
1475 (let* ((all (follow-split-followers windows win
))
1480 (setq data
(assq (car pred
) win-start-end
))
1481 (set-window-point (car pred
) (max (nth 1 data
) (- (nth 2 data
) 1)))
1482 (setq pred
(cdr pred
)))
1484 (set-window-point (car succ
) (nth 1 (assq (car succ
) win-start-end
)))
1485 (setq succ
(cdr succ
)))))
1490 ;;;; Scroll-bar support code.
1492 ;; Why is it needed? Well, if the selected window is in follow mode,
1493 ;; all its followers stick to it blindly. If one of them is scrolled,
1494 ;; it immediately returns to the original position when the mouse is
1495 ;; released. If the selected window is not a follower of the dragged
1496 ;; window the windows will be unaligned.
1498 ;; The advices don't get compiled. Aesthetically, this might be a
1499 ;; problem but in practical life it isn't.
1501 ;; Discussion: Now when the other windows in the chain follow the
1502 ;; dragged, should we really select it?
1504 (cond ((fboundp 'scroll-bar-drag
)
1506 ;;; Emacs style scrollbars.
1509 ;; Select the dragged window if it is a follower of the
1512 ;; Generate advices of the form:
1513 ;; (defadvice scroll-bar-drag (after follow-scroll-bar-drag activate)
1514 ;; "Adviced by `follow-mode'."
1515 ;; (follow-redraw-after-event (ad-get-arg 0)))
1516 (let ((cmds '(scroll-bar-drag
1517 scroll-bar-drag-1
; Executed at every move.
1518 scroll-bar-scroll-down
1519 scroll-bar-scroll-up
1520 scroll-bar-set-window-start
)))
1523 `(defadvice ,(intern (symbol-name (car cmds
)))
1525 ,(intern (concat "follow-" (symbol-name (car cmds
))))
1527 "Adviced by Follow mode."
1528 (follow-redraw-after-event (ad-get-arg 0))))
1529 (setq cmds
(cdr cmds
))))
1532 (defun follow-redraw-after-event (event)
1533 "Adviced by Follow mode."
1535 (let* ((orig-win (selected-window))
1536 (win (nth 0 (funcall
1537 (symbol-function 'event-start
) event
)))
1538 (fmode (assq 'follow-mode
1539 (buffer-local-variables
1540 (window-buffer win
)))))
1541 (if (and fmode
(cdr fmode
))
1542 ;; The selected window is in follow-mode
1544 ;; Recenter around the dragged window.
1547 (select-window orig-win
))))
1551 ((fboundp 'scrollbar-vertical-drag
)
1553 ;;; XEmacs style scrollbars.
1556 ;; Advice all scrollbar functions on the form:
1558 ;; (defadvice scrollbar-line-down
1559 ;; (after follow-scrollbar-line-down activate)
1560 ;; (follow-xemacs-scrollbar-support (ad-get-arg 0)))
1562 (let ((cmds '(scrollbar-line-down ; Window
1564 scrollbar-page-down
; Object
1566 scrollbar-to-bottom
; Window
1568 scrollbar-vertical-drag
; Object
1573 `(defadvice ,(intern (symbol-name (car cmds
)))
1575 ,(intern (concat "follow-" (symbol-name (car cmds
))))
1577 "Adviced by `follow-mode'."
1578 (follow-xemacs-scrollbar-support (ad-get-arg 0))))
1579 (setq cmds
(cdr cmds
))))
1582 (defun follow-xemacs-scrollbar-support (window)
1583 "Redraw windows showing the same buffer as shown in WINDOW.
1584 WINDOW is either the dragged window, or a cons containing the
1585 window as its first element. This is called while the user drags
1588 WINDOW can be an object or a window."
1592 (setq window
(car window
)))
1593 (let ((fmode (assq 'follow-mode
1594 (buffer-local-variables
1595 (window-buffer window
))))
1596 (orig-win (selected-window)))
1597 (if (and fmode
(cdr fmode
))
1599 ;; Recenter around the dragged window.
1600 (select-window window
)
1602 (select-window orig-win
)))))
1606 ;;{{{ Process output
1608 ;; The following sections installs a spy that listens to process
1609 ;; output and tries to reposition the windows whose buffers are in
1610 ;; Follow mode. We play safe as much as possible...
1612 ;; When follow-mode is activated all active processes are
1613 ;; intercepted. All new processes that change their filter function
1614 ;; using `set-process-filter' are also intercepted. The reason is
1615 ;; that a process can cause a redisplay recentering "tail" windows.
1616 ;; Note that it doesn't hurt to spy on more processes than needed.
1618 ;; Technically, we set the process filter to `follow-generic-filter'.
1619 ;; The original filter is stored in `follow-process-filter-alist'.
1620 ;; Our generic filter calls the original filter, or inserts the
1621 ;; output into the buffer, if the buffer originally didn't have an
1622 ;; output filter. It also makes sure that the windows connected to
1623 ;; the buffer are aligned.
1625 ;; Discussion: How do we find processes that don't call
1626 ;; `set-process-filter'? (How often are processes created in a
1627 ;; buffer after Follow mode are activated?)
1629 ;; Discussion: Should we also advice `process-filter' to make our
1630 ;; filter invisible to others?
1632 ;;{{{ Advice for `set-process-filter'
1634 ;; Do not call this with 'follow-generic-filter as the name of the
1637 (defadvice set-process-filter
(before follow-set-process-filter activate
)
1638 "Ensure process output will be displayed correctly in Follow mode buffers.
1640 Follow mode inserts its own process filter to do its
1641 magic stuff before the real process filter is called."
1642 (if follow-intercept-processes
1644 (setq follow-process-filter-alist
1645 (delq (assq (ad-get-arg 0) follow-process-filter-alist
)
1646 follow-process-filter-alist
))
1647 (follow-tidy-process-filter-alist)
1648 (cond ((eq (ad-get-arg 1) t
))
1649 ((eq (ad-get-arg 1) nil
)
1650 (ad-set-arg 1 'follow-generic-filter
))
1652 (setq follow-process-filter-alist
1653 (cons (cons (ad-get-arg 0) (ad-get-arg 1))
1654 follow-process-filter-alist
))
1655 (ad-set-arg 1 'follow-generic-filter
))))))
1658 (defun follow-call-set-process-filter (proc filter
)
1659 "Call original `set-process-filter' without the Follow mode advice."
1660 (ad-disable-advice 'set-process-filter
'before
1661 'follow-set-process-filter
)
1662 (ad-activate 'set-process-filter
)
1664 (set-process-filter proc filter
)
1665 (ad-enable-advice 'set-process-filter
'before
1666 'follow-set-process-filter
)
1667 (ad-activate 'set-process-filter
)))
1670 (defadvice process-filter
(after follow-process-filter activate
)
1671 "Return the original process filter, not `follow-generic-filter'."
1672 (cond ((eq ad-return-value
'follow-generic-filter
)
1673 (setq ad-return-value
1674 (cdr-safe (assq (ad-get-arg 0)
1675 follow-process-filter-alist
))))))
1678 (defun follow-call-process-filter (proc)
1679 "Call original `process-filter' without the Follow mode advice."
1680 (ad-disable-advice 'process-filter
'after
1681 'follow-process-filter
)
1682 (ad-activate 'process-filter
)
1684 (process-filter proc
)
1685 (ad-enable-advice 'process-filter
'after
1686 'follow-process-filter
)
1687 (ad-activate 'process-filter
)))
1690 (defun follow-tidy-process-filter-alist ()
1691 "Remove old processes from `follow-process-filter-alist'."
1692 (let ((alist follow-process-filter-alist
)
1696 (if (and (not (memq (process-status (car (car alist
)))
1697 '(exit signal closed nil
)))
1698 (memq (car (car alist
)) ps
))
1699 (setq new
(cons (car alist
) new
)))
1700 (setq alist
(cdr alist
)))
1701 (setq follow-process-filter-alist new
)))
1704 ;;{{{ Start/stop interception of processes.
1706 ;; Normally, all new processes are intercepted by our `set-process-filter'.
1707 ;; This is needed to intercept old processes that were started before we were
1708 ;; loaded, and processes we have forgotten by calling
1709 ;; `follow-stop-intercept-process-output'.
1711 (defun follow-intercept-process-output ()
1712 "Intercept all active processes.
1714 This is needed so that Follow mode can track all display events in the
1715 system. (See `follow-mode'.)"
1717 (let ((list (process-list)))
1719 (if (eq (process-filter (car list
)) 'follow-generic-filter
)
1721 ;; The custom `set-process-filter' defined above.
1722 (set-process-filter (car list
) (process-filter (car list
))))
1723 (setq list
(cdr list
))))
1724 (setq follow-intercept-processes t
))
1727 (defun follow-stop-intercept-process-output ()
1728 "Stop Follow mode from spying on processes.
1730 All current spypoints are removed and no new will be added.
1732 The effect is that Follow mode won't be able to handle buffers
1733 connected to processes.
1735 The only reason to call this function is if the Follow mode spy filter
1736 would interfere with some other package. If this happens, please
1737 report this using the `report-emacs-bug' function."
1739 (follow-tidy-process-filter-alist)
1740 (dolist (process (process-list))
1741 (when (eq (follow-call-process-filter process
) 'follow-generic-filter
)
1742 (follow-call-set-process-filter
1744 (cdr-safe (assq process follow-process-filter-alist
)))
1745 (setq follow-process-filter-alist
1746 (delq (assq process follow-process-filter-alist
)
1747 follow-process-filter-alist
))))
1748 (setq follow-intercept-processes nil
))
1753 ;; The following section is a naive method to make buffers with
1754 ;; process output to work with Follow mode. Whenever the start of the
1755 ;; window displaying the buffer is moved, we move it back to its
1756 ;; original position and try to select a new window. (If we fail,
1757 ;; the normal redisplay functions of Emacs will scroll it right
1760 (defun follow-generic-filter (proc output
)
1761 "Process output filter for process connected to buffers in Follow mode."
1762 (let* ((old-buffer (current-buffer))
1763 (orig-win (selected-window))
1764 (buf (process-buffer proc
))
1765 (win (and buf
(if (eq buf
(window-buffer orig-win
))
1767 (get-buffer-window buf t
))))
1768 (return-to-orig-win (and win
(not (eq win orig-win
))))
1769 (orig-window-start (and win
(window-start win
))))
1771 ;; If input is pending, the `sit-for' below won't redraw the
1772 ;; display. In that case, calling `follow-avoid-tail-recenter' may
1773 ;; provoke the process handling code to schedule a redisplay.
1774 ;(or (input-pending-p)
1775 ; (follow-avoid-tail-recenter))
1777 ;; Output the `output'.
1778 (let ((filter (cdr-safe (assq proc follow-process-filter-alist
))))
1780 ;; Call the original filter function
1782 (funcall filter proc output
))
1784 ;; No filter, but we've got a buffer. Just output into it.
1787 (if (not (marker-buffer (process-mark proc
)))
1788 (set-marker (process-mark proc
) (point-max)))
1789 (let ((moving (= (point) (process-mark proc
)))
1791 (inhibit-read-only t
))
1793 (goto-char (process-mark proc
))
1794 ;; `insert-before-markers' just in case the user's next
1796 (insert-before-markers output
)
1797 (set-marker (process-mark proc
) (point)))
1798 (if moving
(goto-char (process-mark proc
)))))))
1800 ;; If we're in follow mode, do our stuff. Select a new window and
1801 ;; redisplay. (Actually, it is redundant to check `buf', but I
1802 ;; feel it's more correct.)
1803 (if (and buf
(window-live-p win
))
1806 (if (and (boundp 'follow-mode
) follow-mode
)
1809 (let* ((windows (follow-all-followers win
))
1810 (win-start-end (follow-windows-start-end windows
))
1811 (new-window-start (window-start win
))
1812 (new-window-point (window-point win
)))
1814 ;; The start of the selected window was repositioned.
1815 ;; Try to use the original start position and continue
1816 ;; working with a window to the "right" in the window
1817 ;; chain. This will create the effect that the output
1818 ;; starts in one window and continues into the next.
1820 ;; If the display has changed so much that it is not
1821 ;; possible to keep the original window fixed and still
1822 ;; display the point then we give up and use the new
1825 ;; This case is typically used when the process filter
1826 ;; tries to reposition the start of the window in order
1827 ;; to view the tail of the output.
1828 ((not (eq orig-window-start new-window-start
))
1829 (follow-debug-message "filter: Moved")
1830 (set-window-start win orig-window-start
)
1831 (follow-redisplay windows win
)
1832 (setq win-start-end
(follow-windows-start-end windows
))
1833 (follow-select-if-visible new-window-point
1835 (goto-char new-window-point
)
1836 (if (eq win
(selected-window))
1837 (set-window-start win new-window-start
))
1838 (setq win-start-end
(follow-windows-start-end windows
)))
1839 ;; Stick to this window, if point is visible in it.
1840 ((pos-visible-in-window-p new-window-point
)
1841 (follow-debug-message "filter: Visible in window"))
1842 ;; Avoid redisplaying the first window. If the
1843 ;; point is visible at a window below,
1844 ;; redisplay and select it.
1845 ((follow-select-if-visible-from-first
1846 new-window-point windows
)
1847 (follow-debug-message "filter: Seen from first")
1849 (follow-windows-start-end windows
)))
1850 ;; None of the above. We stick to the current window.
1852 (follow-debug-message "filter: nothing")))
1854 ;; Here we have selected a window. Make sure the
1855 ;; windows are aligned and the point is visible
1856 ;; in the selected window.
1857 (if (and (not (follow-pos-visible
1858 (point) (selected-window) win-start-end
))
1859 (not return-to-orig-win
))
1863 (follow-windows-start-end windows
))))
1865 (if (or follow-internal-force-redisplay
1866 (not (follow-windows-aligned-p win-start-end
)))
1867 (follow-redisplay windows
)))))))
1869 ;; return to the original window.
1870 (if return-to-orig-win
1871 (select-window orig-win
))
1872 ;; Restore the original buffer, unless the filter explicitly
1873 ;; changed buffer or killed the old buffer.
1874 (if (and (eq buf
(current-buffer))
1875 (buffer-name old-buffer
))
1876 (set-buffer old-buffer
)))
1878 (follow-invalidate-cache)
1880 ;; Normally, if the display has been changed, it is redrawn. All
1881 ;; windows showing only the end of a buffer are unconditionally
1882 ;; recentered; we can't prevent that by calling
1883 ;; `follow-avoid-tail-recenter'.
1885 ;; We force a redisplay here on our own, so Emacs does need to.
1886 ;; (However, redisplaying when there's input available just seems
1887 ;; to make things worse, so we exclude that case.)
1888 (if (and follow-avoid-tail-recenter-p
1889 (not (input-pending-p)))
1895 ;;{{{ Window size change
1897 ;; In Emacs 19.29, the functions in `window-size-change-functions' are
1898 ;; called every time a window in a frame changes size. Most notably, it
1899 ;; is called after the frame has been resized.
1901 ;; We basically call our post-command-hook for every buffer that is
1902 ;; visible in any window in the resized frame, which is in follow-mode.
1904 ;; Since this function can be called indirectly from
1905 ;; `follow-post-command-hook' we have a potential infinite loop. We
1906 ;; handle this problem by simply not doing anything at all in this
1907 ;; situation. The variable `follow-inside-post-command-hook' contains
1908 ;; information about whether the execution actually is inside the
1909 ;; post-command-hook or not.
1911 (if (boundp 'window-size-change-functions
)
1912 (add-hook 'window-size-change-functions
'follow-window-size-change
))
1915 (defun follow-window-size-change (frame)
1916 "Redraw all windows in FRAME, when in Follow mode."
1917 ;; Below, we call `post-command-hook'. This makes sure that we
1918 ;; don't start a mutually recursive endless loop.
1919 (if follow-inside-post-command-hook
1922 (orig-window (selected-window))
1923 (orig-buffer (current-buffer))
1924 (orig-frame (selected-frame))
1927 (select-frame frame
)
1932 (setq buf
(window-buffer win
))
1933 (if (memq buf buffers
)
1936 (if (and (boundp 'follow-mode
)
1939 (setq windows
(follow-all-followers win
))
1940 (if (memq orig-window windows
)
1942 ;; Make sure we're redrawing around the
1945 ;; We must be really careful not to do this
1946 ;; when we are (indirectly) called by
1947 ;; `post-command-hook'.
1948 (select-window orig-window
)
1949 (follow-post-command-hook)
1950 (setq orig-window
(selected-window)))
1951 (follow-redisplay windows win
))
1952 (setq buffers
(cons buf buffers
))))))))
1953 (select-frame orig-frame
)
1954 (set-buffer orig-buffer
)
1955 (select-window orig-window
)))))
1959 ;;{{{ XEmacs isearch
1961 ;; In XEmacs, isearch often finds matches in other windows than the
1962 ;; currently selected. However, when exiting the old window
1963 ;; configuration is restored, with the exception of the beginning of
1964 ;; the start of the window for the selected window. This is not much
1967 ;; We overwrite the stored window configuration with the current,
1968 ;; unless we are in `slow-search-mode', i.e. only a few lines
1969 ;; of text is visible.
1971 (if (featurep 'xemacs
)
1972 (defadvice isearch-done
(before follow-isearch-done activate
)
1973 (if (and (boundp 'follow-mode
)
1975 (boundp 'isearch-window-configuration
)
1976 isearch-window-configuration
1977 (boundp 'isearch-slow-terminal-mode
)
1978 (not isearch-slow-terminal-mode
))
1979 (let ((buf (current-buffer)))
1980 (setq isearch-window-configuration
1981 (current-window-configuration))
1982 (set-buffer buf
)))))
1985 ;;{{{ Tail window handling
1987 ;; In Emacs (not XEmacs) windows showing nothing are sometimes
1988 ;; recentered. When in Follow mode, this is not desirable for
1989 ;; non-first windows in the window chain. This section tries to
1990 ;; make the windows stay where they should be.
1992 ;; If the display is updated, all windows starting at (point-max) are
1993 ;; going to be recentered at the next redisplay, unless we do a
1994 ;; read-and-write cycle to update the `force' flag inside the windows.
1996 ;; In 19.30, a new variable `window-scroll-functions' is called every
1997 ;; time a window is recentered. It is not perfect for our situation,
1998 ;; since when it is called for a tail window, it is to late. However,
1999 ;; if it is called for another window, we can try to update our
2002 ;; By patching `sit-for' we can make sure that to catch all explicit
2003 ;; updates initiated by lisp programs. Internal calls, on the other
2004 ;; hand, are not handled.
2006 ;; Please note that the function `follow-avoid-tail-recenter' is also
2007 ;; called from other places, e.g. `post-command-hook' and
2008 ;; `post-command-idle-hook'.
2010 ;; If this function is called it is too late for this window, but
2011 ;; we might save other windows from being recentered.
2013 (if (and follow-avoid-tail-recenter-p
(boundp 'window-scroll-functions
))
2014 (add-hook 'window-scroll-functions
'follow-avoid-tail-recenter t
))
2017 ;; This prevents all packages that calls `sit-for' directly
2018 ;; to recenter tail windows.
2020 (if follow-avoid-tail-recenter-p
2021 (defadvice sit-for
(before follow-sit-for activate
)
2022 "Adviced by Follow mode.
2024 Avoid to recenter windows displaying only the end of a file as when
2025 displaying a short file in two windows, using Follow mode."
2026 (follow-avoid-tail-recenter)))
2029 ;; Without this advice, `mouse-drag-region' would start to recenter
2032 (if (and follow-avoid-tail-recenter-p
2033 (fboundp 'move-overlay
))
2034 (defadvice move-overlay
(before follow-move-overlay activate
)
2035 "Adviced by Follow mode.
2036 Don't recenter windows showing only the end of a buffer.
2037 This prevents `mouse-drag-region' from messing things up."
2038 (follow-avoid-tail-recenter)))
2041 ;;{{{ profile support
2043 ;; The following (non-evaluated) section can be used to
2044 ;; profile this package using `elp'.
2046 ;; Invalid indentation on purpose!
2049 (setq elp-function-list
2052 ; sit-for ;; elp can't handle advices...
2054 follow-all-followers
2055 follow-split-followers
2057 follow-estimate-first-window-start
2058 follow-calculate-first-window-start-from-above
2059 follow-calculate-first-window-start-from-below
2061 follow-calc-win-start
2063 follow-windows-start-end
2064 follow-cache-valid-p
2065 follow-select-if-visible
2066 follow-select-if-visible-from-first
2067 follow-windows-aligned-p
2068 follow-point-visible-all-windows-p
2069 follow-avoid-tail-recenter
2070 follow-update-window-start
2071 follow-post-command-hook
2078 (defun follow-unload-function ()
2079 "Unload Follow mode library."
2080 (easy-menu-remove-item nil
'("Tools") "Follow")
2081 (follow-stop-intercept-process-output)
2082 (dolist (group '((before
2086 set-process-filter sit-for move-overlay
)
2089 scroll-bar-drag scroll-bar-drag-1 scroll-bar-scroll-down
2090 scroll-bar-scroll-up scroll-bar-set-window-start
2092 scrollbar-line-down scrollbar-line-up scrollbar-page-down
2093 scrollbar-page-up scrollbar-to-bottom scrollbar-to-top
2094 scrollbar-vertical-drag
2097 (let ((class (car group
)))
2098 (dolist (fun (cdr group
))
2099 (when (functionp fun
)
2102 (ad-remove-advice fun class
2103 (intern (concat "follow-" (symbol-name fun
))))
2106 ;; continue standard processing
2117 ;; /------------------------------------------------------------------------\
2118 ;; | "I [..] am rarely happier then when spending an entire day programming |
2119 ;; | my computer to perform automatically a task that it would otherwise |
2120 ;; | take me a good ten seconds to do by hand. Ten seconds, I tell myself, |
2121 ;; | is ten seconds. Time is valuable and ten seconds' worth of it is well |
2122 ;; | worth the investment of a day's happy activity working out a way to |
2123 ;; | save it". -- Douglas Adams, "Last Chance to See" |
2124 ;; \------------------------------------------------------------------------/
2126 ;;; follow.el ends here