lisp/progmodes/python.el: Updated Copyright years.
[emacs.git] / lisp / follow.el
blob0dea1917f859cf103de9863ca0bb978ecd7f42ad
1 ;;; follow.el --- synchronize windows showing the same buffer
2 ;; Copyright (C) 1995-1997, 1999, 2001-2012 Free Software Foundation, Inc.
4 ;; Author: Anders Lindgren <andersl@andersl.com>
5 ;; Maintainer: FSF (Anders' email bounces, Sep 2005)
6 ;; Created: 1995-05-25
7 ;; Keywords: display, window, minor-mode, convenience
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; `Follow mode' is a minor mode for Emacs and XEmacs that
27 ;; combines windows into one tall virtual window.
29 ;; The feeling of a "virtual window" has been accomplished by the use
30 ;; of two major techniques:
32 ;; * The windows always display adjacent sections of the buffer.
33 ;; This means that whenever one window is moved, all the
34 ;; others will follow. (Hence the name Follow mode.)
36 ;; * Should the point (cursor) end up outside a window, another
37 ;; window displaying that point is selected, if possible. This
38 ;; makes it possible to walk between windows using normal cursor
39 ;; movement commands.
41 ;; Follow mode comes to its prime when a large screen and two
42 ;; side-by-side window are used. The user can, with the help of Follow
43 ;; mode, use two full-height windows as though they are one.
44 ;; Imagine yourself editing a large function, or section of text,
45 ;; and being able to use 144 lines instead of the normal 72... (your
46 ;; mileage may vary).
48 ;; To test this package, make sure `follow' is loaded, or will be
49 ;; autoloaded when activated (see below). Then do the following:
51 ;; * Find your favorite file (preferably a long one).
53 ;; * Resize Emacs so that it will be wide enough for two full size
54 ;; columns. Delete the other windows and split the window with
55 ;; the commands `C-x 1 C-x 3'.
57 ;; * Give the command:
58 ;; M-x follow-mode <RETURN>
60 ;; * Now the display should look something like (assuming the text "71"
61 ;; is on line 71):
63 ;; +----------+----------+
64 ;; |1 |73 |
65 ;; |2 |74 |
66 ;; |3 |75 |
67 ;; ... ...
68 ;; |71 |143 |
69 ;; |72 |144 |
70 ;; +----------+----------+
72 ;; As you can see, the right-hand window starts at line 73, the line
73 ;; immediately below the end of the left-hand window. As long as
74 ;; `follow-mode' is active, the two windows will follow each other!
76 ;; * Play around and enjoy! Scroll one window and watch the other.
77 ;; Jump to the beginning or end. Press `Cursor down' at the last
78 ;; line of the left-hand window. Enter new lines into the
79 ;; text. Enter long lines spanning several lines, or several
80 ;; windows.
82 ;; * Should you find `Follow' mode annoying, just type
83 ;; M-x follow-mode <RETURN>
84 ;; to turn it off.
87 ;; The command `follow-delete-other-windows-and-split' maximizes the
88 ;; visible area of the current buffer.
90 ;; I recommend adding it, and `follow-mode', to hotkeys in the global
91 ;; key map. To do so, add the following lines (replacing `[f7]' and
92 ;; `[f8]' with your favorite keys) to the init file:
94 ;; (global-set-key [f8] 'follow-mode)
95 ;; (global-set-key [f7] 'follow-delete-other-windows-and-split)
98 ;; There exist two system variables that control the appearance of
99 ;; lines wider than the window containing them. The default is to
100 ;; truncate long lines whenever a window isn't as wide as the frame.
102 ;; To make sure lines are never truncated, please place the following
103 ;; lines in your init file:
105 ;; (setq truncate-lines nil)
106 ;; (setq truncate-partial-width-windows nil)
109 ;; The correct way to configure Follow mode, or any other mode for
110 ;; that matter, is to create one or more functions that do
111 ;; whatever you would like to do. These functions are then added to
112 ;; a hook.
114 ;; The keymap `follow-key-map' contains key bindings activated by
115 ;; `follow-mode'.
117 ;; Example:
118 ;; (add-hook 'follow-mode-hook 'my-follow-mode-hook)
120 ;; (defun my-follow-mode-hook ()
121 ;; (define-key follow-mode-map "\C-ca" 'your-favorite-function)
122 ;; (define-key follow-mode-map "\C-cb" 'another-function))
125 ;; Usage:
127 ;; To activate, issue the command "M-x follow-mode"
128 ;; and press Return. To deactivate, do it again.
130 ;; The following is a list of commands useful when follow-mode is active.
132 ;; follow-scroll-up C-c . C-v
133 ;; Scroll text in a Follow mode window chain up.
135 ;; follow-scroll-down C-c . v
136 ;; Like `follow-scroll-up', but in the other direction.
138 ;; follow-delete-other-windows-and-split C-c . 1
139 ;; Maximize the visible area of the current buffer,
140 ;; and enter Follow mode. This is a very convenient
141 ;; way to start Follow mode, hence we recommend that
142 ;; this command be added to the global keymap.
144 ;; follow-recenter C-c . C-l
145 ;; Place the point in the center of the middle window,
146 ;; or a specified number of lines from either top or bottom.
148 ;; follow-switch-to-buffer C-c . b
149 ;; Switch buffer in all windows displaying the current buffer
150 ;; in this frame.
152 ;; follow-switch-to-buffer-all C-c . C-b
153 ;; Switch buffer in all windows in the selected frame.
155 ;; follow-switch-to-current-buffer-all
156 ;; Show the current buffer in all windows on the current
157 ;; frame and turn on `follow-mode'.
159 ;; follow-first-window C-c . <
160 ;; Select the first window in the frame showing the same buffer.
162 ;; follow-last-window C-c . >
163 ;; Select the last window in the frame showing the same buffer.
165 ;; follow-next-window C-c . n
166 ;; Select the next window in the frame showing the same buffer.
168 ;; follow-previous-window C-c . p
169 ;; Select the previous window showing the same buffer.
172 ;; Well, it seems ok, but what if I really want to look at two different
173 ;; positions in the text? Here are two simple methods to use:
175 ;; 1) Use multiple frames; `follow' mode only affects windows displayed
176 ;; in the same frame. (My apologies to you who can't use frames.)
178 ;; 2) Bind `follow-mode' to key so you can turn it off whenever
179 ;; you want to view two locations. Of course, `follow' mode can
180 ;; be reactivated by hitting the same key again.
182 ;; Example from my ~/.emacs:
183 ;; (global-set-key [f8] 'follow-mode)
185 ;; Implementation:
187 ;; The main method by which Follow mode aligns windows is via the
188 ;; function `follow-post-command-hook', which is run after each
189 ;; command. This "fixes up" the alignment of other windows which are
190 ;; showing the same Follow mode buffer, on the same frame as the
191 ;; selected window. It does not try to deal with buffers other than
192 ;; the buffer of the selected frame, or windows on other frames.
194 ;; Comint mode specially calls `follow-comint-scroll-to-bottom' on
195 ;; Follow mode buffers. This function scrolls the bottom-most window
196 ;; in a window chain and aligns the other windows accordingly. Follow
197 ;; mode adds a function to `compilation-filter-hook' to align
198 ;; compilation buffers.
200 ;;; Code:
202 (require 'easymenu)
204 ;;; Variables
206 (defgroup follow nil
207 "Synchronize windows showing the same buffer."
208 :group 'windows
209 :group 'convenience)
211 (defcustom follow-mode-hook nil
212 "Normal hook run by `follow-mode'."
213 :type 'hook
214 :group 'follow)
216 ;;; Keymap/Menu
218 ;; Define keys for the follow-mode minor mode map and replace some
219 ;; functions in the global map. All Follow mode special functions can
220 ;; be found on the `C-c .' prefix key.
222 ;; To change the prefix, redefine `follow-mode-prefix' before `follow'
223 ;; is loaded, or see the section on `follow-mode-hook' above for an
224 ;; example of how to bind the keys the way you like.
226 (defcustom follow-mode-prefix "\C-c."
227 "Prefix key to use for follow commands in Follow mode.
228 The value of this variable is checked as part of loading Follow mode.
229 After that, changing the prefix key requires manipulating keymaps."
230 :type 'string
231 :group 'follow)
233 (defvar follow-mode-map
234 (let ((mainmap (make-sparse-keymap))
235 (map (make-sparse-keymap)))
236 (define-key map "\C-v" 'follow-scroll-up)
237 (define-key map "\M-v" 'follow-scroll-down)
238 (define-key map "v" 'follow-scroll-down)
239 (define-key map "1" 'follow-delete-other-windows-and-split)
240 (define-key map "b" 'follow-switch-to-buffer)
241 (define-key map "\C-b" 'follow-switch-to-buffer-all)
242 (define-key map "\C-l" 'follow-recenter)
243 (define-key map "<" 'follow-first-window)
244 (define-key map ">" 'follow-last-window)
245 (define-key map "n" 'follow-next-window)
246 (define-key map "p" 'follow-previous-window)
248 (define-key mainmap follow-mode-prefix map)
250 ;; Replace the standard `end-of-buffer', when in Follow mode. (I
251 ;; don't see the point in trying to replace every function that
252 ;; could be enhanced in Follow mode. End-of-buffer is a special
253 ;; case since it is very simple to define and it greatly enhances
254 ;; the look and feel of Follow mode.)
255 (define-key mainmap [remap end-of-buffer] 'follow-end-of-buffer)
257 (define-key mainmap [remap scroll-bar-toolkit-scroll] 'follow-scroll-bar-toolkit-scroll)
258 (define-key mainmap [remap scroll-bar-drag] 'follow-scroll-bar-drag)
259 (define-key mainmap [remap scroll-bar-scroll-up] 'follow-scroll-bar-scroll-up)
260 (define-key mainmap [remap scroll-bar-scroll-down] 'follow-scroll-bar-scroll-down)
261 (define-key mainmap [remap mwheel-scroll] 'follow-mwheel-scroll)
263 mainmap)
264 "Minor mode keymap for Follow mode.")
266 ;; When the mode is not activated, only one item is visible to activate
267 ;; the mode.
268 (defun follow-menu-filter (menu)
269 (if (bound-and-true-p follow-mode)
270 menu
271 '(["Follow mode" follow-mode
272 :style toggle :selected follow-mode])))
274 (easy-menu-add-item nil '("Tools")
275 '("Follow"
276 :filter follow-menu-filter
277 ["Scroll Up" follow-scroll-up follow-mode]
278 ["Scroll Down" follow-scroll-down follow-mode]
279 "--"
280 ["Delete Other Windows and Split" follow-delete-other-windows-and-split follow-mode]
281 "--"
282 ["Switch To Buffer" follow-switch-to-buffer follow-mode]
283 ["Switch To Buffer (all windows)" follow-switch-to-buffer-all follow-mode]
284 "--"
285 ["First Window" follow-first-window follow-mode]
286 ["Last Window" follow-last-window follow-mode]
287 ["Next Window" follow-next-window follow-mode]
288 ["Previous Window" follow-previous-window follow-mode]
289 "--"
290 ["Recenter" follow-recenter follow-mode]
291 "--"
292 ["Follow mode" follow-mode :style toggle :selected follow-mode]))
294 (defcustom follow-mode-line-text " Follow"
295 "Text shown in the mode line when Follow mode is active.
296 Defaults to \" Follow\". Examples of other values
297 are \" Fw\", or simply \"\"."
298 :type 'string
299 :group 'follow)
301 (defcustom follow-auto nil
302 "Non-nil activates Follow mode whenever a file is loaded."
303 :type 'boolean
304 :group 'follow
305 :set (lambda (symbol value)
306 (if value
307 (add-hook 'find-file-hook 'follow-find-file-hook t)
308 (remove-hook 'find-file-hook 'follow-find-file-hook))
309 (set-default symbol value)))
311 (defvar follow-cache-command-list
312 '(next-line previous-line forward-char backward-char)
313 "List of commands that don't require recalculation.
315 In order to be able to use the cache, a command should not change the
316 contents of the buffer, nor should it change selected window or current
317 buffer.
319 The commands in this list are checked at load time.
321 To mark other commands as suitable for caching, set the symbol
322 property `follow-mode-use-cache' to non-nil.")
324 (defcustom follow-debug nil
325 "If non-nil, emit Follow mode debugging messages."
326 :type 'boolean
327 :group 'follow)
329 ;; Internal variables:
331 (defvar follow-internal-force-redisplay nil
332 "True when Follow mode should redisplay the windows.")
334 (defvar follow-active-menu nil
335 "The menu visible when Follow mode is active.")
337 (defvar follow-deactive-menu nil
338 "The menu visible when Follow mode is deactivated.")
340 (defvar follow-inside-post-command-hook nil
341 "Non-nil when inside Follow modes `post-command-hook'.
342 Used by `follow-window-size-change'.")
344 (defvar follow-windows-start-end-cache nil
345 "Cache used by `follow-window-start-end'.")
347 ;;; Debug messages
349 ;; This inline function must be as small as possible!
350 ;; Maybe we should define a macro that expands to nil if
351 ;; the variable is not set.
353 (defsubst follow-debug-message (&rest args)
354 "Like `message', but only active when `follow-debug' is non-nil."
355 (if (and (boundp 'follow-debug) follow-debug)
356 (apply 'message args)))
358 ;;; Cache
360 (dolist (cmd follow-cache-command-list)
361 (put cmd 'follow-mode-use-cache t))
363 ;;; The mode
365 ;;;###autoload
366 (defun turn-on-follow-mode ()
367 "Turn on Follow mode. Please see the function `follow-mode'."
368 (follow-mode 1))
371 ;;;###autoload
372 (defun turn-off-follow-mode ()
373 "Turn off Follow mode. Please see the function `follow-mode'."
374 (follow-mode -1))
376 (put 'follow-mode 'permanent-local t)
377 ;;;###autoload
378 (define-minor-mode follow-mode
379 "Toggle Follow mode.
380 With a prefix argument ARG, enable Follow mode if ARG is
381 positive, and disable it otherwise. If called from Lisp, enable
382 the mode if ARG is omitted or nil.
384 Follow mode is a minor mode that combines windows into one tall
385 virtual window. This is accomplished by two main techniques:
387 * The windows always displays adjacent sections of the buffer.
388 This means that whenever one window is moved, all the
389 others will follow. (Hence the name Follow mode.)
391 * Should the point (cursor) end up outside a window, another
392 window displaying that point is selected, if possible. This
393 makes it possible to walk between windows using normal cursor
394 movement commands.
396 Follow mode comes to its prime when used on a large screen and two
397 side-by-side windows are used. The user can, with the help of Follow
398 mode, use two full-height windows as though they would have been
399 one. Imagine yourself editing a large function, or section of text,
400 and being able to use 144 lines instead of the normal 72... (your
401 mileage may vary).
403 To split one large window into two side-by-side windows, the commands
404 `\\[split-window-right]' or \
405 `M-x follow-delete-other-windows-and-split' can be used.
407 Only windows displayed in the same frame follow each other.
409 This command runs the normal hook `follow-mode-hook'.
411 Keys specific to Follow mode:
412 \\{follow-mode-map}"
413 :keymap follow-mode-map
414 (if follow-mode
415 (progn
416 (add-hook 'compilation-filter-hook 'follow-align-compilation-windows t t)
417 (add-hook 'post-command-hook 'follow-post-command-hook t)
418 (add-hook 'window-size-change-functions 'follow-window-size-change t))
419 ;; Remove globally-installed hook functions only if there is no
420 ;; other Follow mode buffer.
421 (let ((buffers (buffer-list))
422 following)
423 (while (and (not following) buffers)
424 (setq following (buffer-local-value 'follow-mode (car buffers))
425 buffers (cdr buffers)))
426 (unless following
427 (remove-hook 'post-command-hook 'follow-post-command-hook)
428 (remove-hook 'window-size-change-functions 'follow-window-size-change)))
429 (remove-hook 'compilation-filter-hook 'follow-align-compilation-windows t)))
431 (defun follow-find-file-hook ()
432 "Find-file hook for Follow mode. See the variable `follow-auto'."
433 (if follow-auto (follow-mode 1)))
435 ;;; User functions
437 ;;; Scroll
439 ;; `scroll-up' and `-down', but for windows in Follow mode.
441 ;; Almost like the real thing, except when the cursor ends up outside
442 ;; the top or bottom... In our case however, we end up outside the
443 ;; window and hence we are recentered. Should we let `recenter' handle
444 ;; the point position we would never leave the selected window. To do
445 ;; it ourselves we would need to do our own redisplay, which is easier
446 ;; said than done. (Why didn't I do a real display abstraction from
447 ;; the beginning?)
449 ;; We must sometimes set `follow-internal-force-redisplay', otherwise
450 ;; our post-command-hook will move our windows back into the old
451 ;; position... (This would also be corrected if we would have had a
452 ;; good redisplay abstraction.)
454 (defun follow-scroll-up (&optional arg)
455 "Scroll text in a Follow mode window chain up.
457 If called with no ARG, the `next-screen-context-lines' last lines of
458 the bottom window in the chain will be visible in the top window.
460 If called with an argument, scroll ARG lines up.
461 Negative ARG means scroll downward.
463 Works like `scroll-up' when not in Follow mode."
464 (interactive "P")
465 (cond ((not follow-mode)
466 (scroll-up arg))
467 (arg
468 (save-excursion (scroll-up arg))
469 (setq follow-internal-force-redisplay t))
471 (let* ((windows (follow-all-followers))
472 (end (window-end (car (reverse windows)))))
473 (if (eq end (point-max))
474 (signal 'end-of-buffer nil)
475 (select-window (car windows))
476 ;; `window-end' might return nil.
477 (if end
478 (goto-char end))
479 (vertical-motion (- next-screen-context-lines))
480 (set-window-start (car windows) (point)))))))
483 (defun follow-scroll-down (&optional arg)
484 "Scroll text in a Follow mode window chain down.
486 If called with no ARG, the `next-screen-context-lines' top lines of
487 the top window in the chain will be visible in the bottom window.
489 If called with an argument, scroll ARG lines down.
490 Negative ARG means scroll upward.
492 Works like `scroll-up' when not in Follow mode."
493 (interactive "P")
494 (cond ((not follow-mode)
495 (scroll-up arg))
496 (arg
497 (save-excursion (scroll-down arg)))
499 (let* ((windows (follow-all-followers))
500 (win (car (reverse windows)))
501 (start (window-start (car windows))))
502 (if (eq start (point-min))
503 (signal 'beginning-of-buffer nil)
504 (select-window win)
505 (goto-char start)
506 (vertical-motion (- (- (window-height win)
507 (if header-line-format 2 1)
508 next-screen-context-lines)))
509 (set-window-start win (point))
510 (goto-char start)
511 (vertical-motion (- next-screen-context-lines 1))
512 (setq follow-internal-force-redisplay t))))))
514 (declare-function comint-adjust-point "comint" (window))
515 (defvar comint-scroll-show-maximum-output)
517 (defun follow-comint-scroll-to-bottom (&optional window)
518 "Scroll the bottom-most window in the current Follow chain.
519 This is to be called by `comint-postoutput-scroll-to-bottom'."
520 (let* ((buffer (current-buffer))
521 (selected (selected-window))
522 (is-selected (eq (window-buffer) buffer))
523 some-window)
524 (when (or is-selected
525 (setq some-window (get-buffer-window)))
526 (let* ((pos (progn (comint-adjust-point nil) (point)))
527 (win (if is-selected
528 selected
529 (car (last (follow-all-followers some-window))))))
530 (select-window win)
531 (goto-char pos)
532 (setq follow-windows-start-end-cache nil)
533 (follow-adjust-window win pos)
534 (unless is-selected
535 (select-window selected)
536 (set-buffer buffer))))))
538 (defun follow-align-compilation-windows ()
539 "Align the windows of the current Follow mode buffer.
540 This is to be called from `compilation-filter-hook'."
541 (let ((buffer (current-buffer))
542 (win (get-buffer-window))
543 (selected (selected-window)))
544 (when (and follow-mode (waiting-for-user-input-p) win)
545 (let ((windows (follow-all-followers win)))
546 (unless (eq (window-buffer selected) buffer)
547 (setq win (car windows))
548 (select-window win))
549 (follow-redisplay windows win t)
550 (setq follow-windows-start-end-cache nil)
551 (unless (eq selected win)
552 (select-window selected)
553 (set-buffer buffer))))))
555 ;;; Buffer
557 ;;;###autoload
558 (defun follow-delete-other-windows-and-split (&optional arg)
559 "Create two side by side windows and enter Follow mode.
561 Execute this command to display as much as possible of the text
562 in the selected window. All other windows, in the current
563 frame, are deleted and the selected window is split in two
564 side-by-side windows. Follow mode is activated, hence the
565 two windows always will display two successive pages.
566 \(If one window is moved, the other one will follow.)
568 If ARG is positive, the leftmost window is selected. If negative,
569 the rightmost is selected. If ARG is nil, the leftmost window is
570 selected if the original window is the first one in the frame."
571 (interactive "P")
572 (let ((other (or (and (null arg)
573 (not (eq (selected-window)
574 (frame-first-window (selected-frame)))))
575 (and arg
576 (< (prefix-numeric-value arg) 0))))
577 (start (window-start)))
578 (delete-other-windows)
579 (split-window-right)
580 (if other
581 (progn
582 (other-window 1)
583 (set-window-start (selected-window) start)
584 (setq follow-internal-force-redisplay t)))
585 (follow-mode 1)))
587 (defun follow-switch-to-buffer (buffer)
588 "Show BUFFER in all windows in the current Follow mode window chain."
589 (interactive "BSwitch to Buffer: ")
590 (let ((orig-window (selected-window))
591 (windows (follow-all-followers)))
592 (while windows
593 (select-window (car windows))
594 (switch-to-buffer buffer)
595 (setq windows (cdr windows)))
596 (select-window orig-window)))
599 (defun follow-switch-to-buffer-all (&optional buffer)
600 "Show BUFFER in all windows on this frame.
601 Defaults to current buffer."
602 (interactive (list (read-buffer "Switch to Buffer: "
603 (current-buffer))))
604 (or buffer (setq buffer (current-buffer)))
605 (let ((orig-window (selected-window)))
606 (walk-windows (lambda (win)
607 (select-window win)
608 (switch-to-buffer buffer))
609 'no-minibuf)
610 (select-window orig-window)
611 (follow-redisplay)))
614 (defun follow-switch-to-current-buffer-all ()
615 "Show current buffer in all windows on this frame, and enter Follow mode."
616 (interactive)
617 (unless follow-mode
618 (follow-mode 1))
619 (follow-switch-to-buffer-all))
621 ;;; Movement
623 ;; Note, these functions are not very useful, at least not unless you
624 ;; rebind the rather cumbersome key sequence `C-c . p'.
626 (defun follow-next-window ()
627 "Select the next window showing the same buffer."
628 (interactive)
629 (let ((succ (cdr (follow-split-followers (follow-all-followers)))))
630 (if succ
631 (select-window (car succ))
632 (error "%s" "No more windows"))))
635 (defun follow-previous-window ()
636 "Select the previous window showing the same buffer."
637 (interactive)
638 (let ((pred (car (follow-split-followers (follow-all-followers)))))
639 (if pred
640 (select-window (car pred))
641 (error "%s" "No more windows"))))
644 (defun follow-first-window ()
645 "Select the first window in the frame showing the same buffer."
646 (interactive)
647 (select-window (car (follow-all-followers))))
650 (defun follow-last-window ()
651 "Select the last window in the frame showing the same buffer."
652 (interactive)
653 (select-window (car (reverse (follow-all-followers)))))
655 ;;; Redraw
657 (defun follow-recenter (&optional arg)
658 "Recenter the middle window around point.
659 Rearrange all other windows around the middle window.
661 With a positive argument, place the current line ARG lines
662 from the top. With a negative argument, place it -ARG lines
663 from the bottom."
664 (interactive "P")
665 (if arg
666 (let ((p (point))
667 (arg (prefix-numeric-value arg)))
668 (if (>= arg 0)
669 ;; Recenter relative to the top.
670 (progn
671 (follow-first-window)
672 (goto-char p)
673 (recenter arg))
674 ;; Recenter relative to the bottom.
675 (follow-last-window)
676 (goto-char p)
677 (recenter arg)
678 ;; Otherwise, our post-command-hook will move the window
679 ;; right back.
680 (setq follow-internal-force-redisplay t)))
681 ;; Recenter in the middle.
682 (let* ((dest (point))
683 (windows (follow-all-followers))
684 (win (nth (/ (- (length windows) 1) 2) windows)))
685 (select-window win)
686 (goto-char dest)
687 (recenter))))
690 (defun follow-redraw ()
691 "Arrange windows displaying the same buffer in successor order.
692 This function can be called even if the buffer is not in Follow mode.
694 Hopefully, there should be no reason to call this function when in
695 Follow mode since the windows should always be aligned."
696 (interactive)
697 (sit-for 0)
698 (follow-redisplay))
700 ;;; End of buffer
702 (defun follow-end-of-buffer (&optional arg)
703 "Move point to the end of the buffer, Follow mode style.
705 If the end is not visible, it will be displayed in the last possible
706 window in the Follow mode window chain.
708 The mark is left at the previous position. With arg N, put point N/10
709 of the way from the true end."
710 (interactive "P")
711 (let ((followers (follow-all-followers))
712 (pos (point)))
713 (cond (arg
714 (select-window (car (reverse followers))))
715 ((follow-select-if-end-visible
716 (follow-windows-start-end followers)))
718 (select-window (car (reverse followers)))))
719 (goto-char pos)
720 (with-no-warnings
721 (end-of-buffer arg))))
723 ;;; Display
725 (defun follow--window-sorter (w1 w2)
726 "Sorting function for W1 and W2 based on their positions.
727 Return non-nil if W1 is above W2; if their top-lines
728 are at the same position, return non-nil if W1 is to the
729 left of W2."
730 (let* ((edge-1 (window-pixel-edges w1))
731 (edge-2 (window-pixel-edges w2))
732 (y1 (nth 1 edge-1))
733 (y2 (nth 1 edge-2)))
734 (if (= y1 y2)
735 (< (car edge-1) (car edge-2))
736 (< y1 y2))))
738 (defun follow-all-followers (&optional win)
739 "Return all windows displaying the same buffer as the WIN.
740 The list is sorted with topmost and leftmost windows first, and
741 contains only windows in the same frame as WIN. If WIN is nil,
742 it defaults to the selected window."
743 (unless (window-live-p win)
744 (setq win (selected-window)))
745 (let ((buffer (window-buffer win))
746 windows)
747 (dolist (w (window-list (window-frame win) 'no-minibuf win))
748 (if (eq (window-buffer w) buffer)
749 (push w windows)))
750 (sort windows 'follow--window-sorter)))
752 (defun follow-split-followers (windows &optional win)
753 "Split WINDOWS into two sets: predecessors and successors.
754 Return `(PRED . SUCC)' where `PRED' and `SUCC' are ordered starting
755 from the selected window."
756 (or win
757 (setq win (selected-window)))
758 (let ((pred '()))
759 (while (not (eq (car windows) win))
760 (setq pred (cons (car windows) pred))
761 (setq windows (cdr windows)))
762 (cons pred (cdr windows))))
764 (defun follow-calc-win-end (&optional win)
765 "Calculate the end position for window WIN.
766 Return (END-POS END-OF-BUFFER).
768 Actually, the position returned is the start of the line after
769 the last fully-visible line in WIN. If WIN is nil, the selected
770 window is used."
771 (let* ((win (or win (selected-window)))
772 (edges (window-inside-pixel-edges win))
773 (ht (- (nth 3 edges) (nth 1 edges)))
774 (last-line-pos (posn-point (posn-at-x-y 0 (1- ht) win))))
775 (if (pos-visible-in-window-p last-line-pos win)
776 (let ((end (window-end win t)))
777 (list end (= end (point-max))))
778 (list last-line-pos nil))))
780 (defun follow-calc-win-start (windows pos win)
781 "Determine the start of window WIN in a Follow mode window chain.
782 WINDOWS is a list of chained windows, and POS is the starting
783 position for the first window in the list. If WIN is nil, return
784 the point below all windows."
785 (while (and windows (not (eq (car windows) win)))
786 (let ((old-start (window-start (car windows))))
787 ;; Can't use `save-window-excursion' since it triggers a redraw.
788 (set-window-start (car windows) pos 'noforce)
789 (setq pos (car (follow-calc-win-end (car windows))))
790 (set-window-start (car windows) old-start 'noforce)
791 (setq windows (cdr windows))))
792 pos)
794 ;; The result from `follow-windows-start-end' is cached when using
795 ;; a handful simple commands, like cursor movement commands.
797 (defsubst follow-cache-valid-p (windows)
798 "Test if the cached value of `follow-windows-start-end' can be used.
799 Note that this handles the case when the cache has been set to nil."
800 (let ((res t)
801 (cache follow-windows-start-end-cache))
802 (while (and res windows cache)
803 (setq res (and (eq (car windows)
804 (car (car cache)))
805 (eq (window-start (car windows))
806 (car (cdr (car cache))))))
807 (setq windows (cdr windows))
808 (setq cache (cdr cache)))
809 (and res (null windows) (null cache))))
811 (defun follow-windows-start-end (windows)
812 "Return a list of (WIN START END BUFFER-END-P) for window list WINDOWS."
813 (if (follow-cache-valid-p windows)
814 follow-windows-start-end-cache
815 (let ((orig-win (selected-window))
816 win-start-end)
817 (dolist (w windows)
818 (select-window w)
819 (push (cons w (cons (window-start) (follow-calc-win-end)))
820 win-start-end))
821 (select-window orig-win)
822 (setq follow-windows-start-end-cache (nreverse win-start-end)))))
824 (defsubst follow-pos-visible (pos win win-start-end)
825 "Non-nil when POS is visible in WIN."
826 (let ((wstart-wend-bend (cdr (assq win win-start-end))))
827 (and (>= pos (car wstart-wend-bend))
828 (or (< pos (cadr wstart-wend-bend))
829 (nth 2 wstart-wend-bend)))))
832 ;; By `aligned' we mean that for all adjacent windows, the end of the
833 ;; first is equal with the start of the successor. The first window
834 ;; should start at a full screen line.
836 (defsubst follow-windows-aligned-p (win-start-end)
837 "Non-nil if the follower windows are aligned.
838 The argument, WIN-START-END, should be a list of the form
839 returned by `follow-windows-start-end'."
840 (let ((result t))
841 (while (and win-start-end result)
842 (if (cdr win-start-end)
843 (setq result (eq (nth 2 (car win-start-end))
844 (nth 1 (cadr win-start-end)))))
845 (setq win-start-end (cdr win-start-end)))
846 result))
848 ;; Check if the point is visible in all windows. (So that
849 ;; no one will be recentered.)
851 (defun follow-point-visible-all-windows-p (win-start-end)
852 "Non-nil when the `window-point' is visible in all windows."
853 (let ((res t))
854 (while (and res win-start-end)
855 (setq res (follow-pos-visible (window-point (car (car win-start-end)))
856 (car (car win-start-end))
857 win-start-end))
858 (setq win-start-end (cdr win-start-end)))
859 res))
862 ;; Make sure WIN always starts at the beginning of a whole screen
863 ;; line. If WIN is not aligned the start is updated which probably
864 ;; will lead to a redisplay of the screen later on.
866 ;; This is used with the first window in a follow chain. The reason
867 ;; is that we want to detect that the point is outside the window.
868 ;; (Without the update, the start of the window will move as the
869 ;; user presses BackSpace, and the other window redisplay routines
870 ;; will move the start of the window in the wrong direction.)
872 (defun follow-update-window-start (win)
873 "Make sure that the start of WIN starts at a full screen line."
874 (save-excursion
875 (goto-char (window-start win))
876 (unless (bolp)
877 (vertical-motion 0 win)
878 (unless (eq (point) (window-start win))
879 (vertical-motion 1 win)
880 (set-window-start win (point) 'noforce)))))
882 (defun follow-select-if-visible (dest win-start-end)
883 "Select and return a window, if DEST is visible in it.
884 Return the selected window."
885 (let (win win-end wse)
886 (while (and (not win) win-start-end)
887 ;; Don't select a window that was just moved. This makes it
888 ;; possible to later select the last window after a
889 ;; `end-of-buffer' command.
890 (setq wse (car win-start-end))
891 (when (follow-pos-visible dest (car wse) win-start-end)
892 (setq win (car wse)
893 win-end (nth 2 wse))
894 (select-window win))
895 (setq win-start-end (cdr win-start-end)))
896 win))
898 ;; Lets select a window showing the end. Make sure we only select it if
899 ;; it wasn't just moved here. (I.e. M-> shall not unconditionally place
900 ;; the point in the selected window.)
902 ;; (Compatibility kludge: in Emacs `window-end' is equal to `point-max';
903 ;; in XEmacs, it is equal to `point-max + 1'. Should I really bother
904 ;; checking `window-end' now when I check `end-of-buffer' explicitly?)
906 (defun follow-select-if-end-visible (win-start-end)
907 "Select and return a window, if end is visible in it."
908 (let ((win nil))
909 (while (and (not win) win-start-end)
910 ;; Don't select a window that was just moved. This makes it
911 ;; possible to later select the last window after a `end-of-buffer'
912 ;; command.
913 (if (and (eq (point-max) (nth 2 (car win-start-end)))
914 (nth 3 (car win-start-end))
915 ;; `window-end' might return nil.
916 (let ((end (window-end (car (car win-start-end)))))
917 (and end
918 (eq (point-max) (min (point-max) end)))))
919 (progn
920 (setq win (car (car win-start-end)))
921 (select-window win)))
922 (setq win-start-end (cdr win-start-end)))
923 win))
926 ;; Select a window that will display the point if the windows would
927 ;; be redisplayed with the first window fixed. This is useful for
928 ;; example when the user has pressed return at the bottom of a window
929 ;; as the point is not visible in any window.
931 (defun follow-select-if-visible-from-first (dest windows)
932 "Try to select one of WINDOWS without repositioning the topmost window.
933 If one of the windows in WINDOWS contains DEST, select it, call
934 `follow-redisplay', move point to DEST, and return that window.
935 Otherwise, return nil."
936 (let (win end-pos-end-p)
937 (save-excursion
938 (goto-char (window-start (car windows)))
939 ;; Make sure the line start in the beginning of a real screen
940 ;; line.
941 (vertical-motion 0 (car windows))
942 (when (>= dest (point))
943 ;; At or below the start. Check the windows.
944 (save-window-excursion
945 (let ((windows windows))
946 (while (and (not win) windows)
947 (set-window-start (car windows) (point) 'noforce)
948 (setq end-pos-end-p (follow-calc-win-end (car windows)))
949 (goto-char (car end-pos-end-p))
950 ;; Visible, if dest above end, or if eob is visible
951 ;; inside the window.
952 (if (or (car (cdr end-pos-end-p))
953 (< dest (point)))
954 (setq win (car windows))
955 (setq windows (cdr windows))))))))
956 (when win
957 (select-window win)
958 (follow-redisplay windows (car windows))
959 (goto-char dest))
960 win))
962 ;;; Redisplay
964 ;; Redraw all the windows on the screen, starting with the top window.
965 ;; The window used as as marker is WIN, or the selected window if WIN
966 ;; is nil. Start every window directly after the end of the previous
967 ;; window, to make sure long lines are displayed correctly.
969 (defun follow-redisplay (&optional windows win preserve-win)
970 "Reposition the WINDOWS around WIN.
971 Should the point be too close to the roof we redisplay everything
972 from the top. WINDOWS should contain a list of windows to
973 redisplay; it is assumed that WIN is a member of the list.
974 Should WINDOWS be nil, the windows displaying the
975 same buffer as WIN, in the current frame, are used.
976 Should WIN be nil, the selected window is used.
977 If PRESERVE-WIN is non-nil, keep WIN itself unchanged while
978 repositioning the other windows."
979 (or win (setq win (selected-window)))
980 (or windows (setq windows (follow-all-followers win)))
981 ;; Calculate the start of the first window.
982 (let* ((old-win-start (window-start win))
983 (try-first-start (follow-estimate-first-window-start
984 windows win old-win-start))
985 (try-win-start (follow-calc-win-start
986 windows try-first-start win))
987 (start (cond ((= try-win-start old-win-start)
988 (follow-debug-message "exact")
989 try-first-start)
990 ((< try-win-start old-win-start)
991 (follow-debug-message "above")
992 (follow-calculate-first-window-start-from-above
993 windows try-first-start win old-win-start))
995 (follow-debug-message "below")
996 (follow-calculate-first-window-start-from-below
997 windows try-first-start win old-win-start)))))
998 (dolist (w windows)
999 (unless (and preserve-win (eq w win))
1000 (set-window-start w start))
1001 (setq start (car (follow-calc-win-end w))))))
1003 (defun follow-estimate-first-window-start (windows win start)
1004 "Estimate the position of the first window.
1005 The estimate is computed by assuming that the window WIN, which
1006 should be a member of WINDOWS, starts at position START."
1007 (let ((windows-before (car (follow-split-followers windows win))))
1008 (save-excursion
1009 (goto-char start)
1010 (vertical-motion 0 win)
1011 (dolist (w windows-before)
1012 (vertical-motion (- 1 (window-text-height w)) w))
1013 (point))))
1016 ;; Find the starting point, start at GUESS and search downward.
1017 ;; The returned point is always a point below GUESS.
1019 (defun follow-calculate-first-window-start-from-above
1020 (windows guess win start)
1021 (save-excursion
1022 (let ((done nil)
1023 win-start
1024 res)
1025 (goto-char guess)
1026 (while (not done)
1027 (if (not (= (vertical-motion 1 (car windows)) 1))
1028 ;; Hit bottom! (Can we really do this?)
1029 ;; We'll keep it, since it ensures termination.
1030 (progn
1031 (setq done t)
1032 (setq res (point-max)))
1033 (setq win-start (follow-calc-win-start windows (point) win))
1034 (if (>= win-start start)
1035 (setq done t res (point)))))
1036 res)))
1039 ;; Find the starting point, start at GUESS and search upward. Return
1040 ;; a point on the same line as GUESS, or above.
1042 (defun follow-calculate-first-window-start-from-below
1043 (windows guess &optional win start)
1044 (setq win (or win (selected-window)))
1045 (setq start (or start (window-start win)))
1046 (save-excursion
1047 (let (done win-start res opoint)
1048 ;; Always calculate what happens when no line is displayed in the first
1049 ;; window. (The `previous' res is needed below!)
1050 (goto-char guess)
1051 (vertical-motion 0 (car windows))
1052 (setq res (point))
1053 (while (not done)
1054 (setq opoint (point))
1055 (if (not (= (vertical-motion -1 (car windows)) -1))
1056 ;; Hit roof!
1057 (setq done t res (point-min))
1058 (setq win-start (follow-calc-win-start windows (point) win))
1059 (cond ((>= (point) opoint)
1060 ;; In some pathological cases, vertical-motion may
1061 ;; return -1 even though point has not decreased. In
1062 ;; that case, avoid looping forever.
1063 (setq done t res (point)))
1064 ((= win-start start) ; Perfect match, use this value
1065 (setq done t res (point)))
1066 ((< win-start start) ; Walked to far, use previous result
1067 (setq done t))
1068 (t ; Store result for next iteration
1069 (setq res (point))))))
1070 res)))
1072 ;;; Avoid tail recenter
1074 ;; This sets the window internal flag `force_start'. The effect is
1075 ;; that windows only displaying the tail aren't recentered.
1077 ;; A window displaying only the tail, is a window whose window-start
1078 ;; position is equal to (point-max) of the buffer it displays.
1080 (defun follow-avoid-tail-recenter (&rest _rest)
1081 "Make sure windows displaying the end of a buffer aren't recentered.
1082 This is done by reading and rewriting the start position of
1083 non-first windows in Follow mode."
1084 (let* ((orig-buffer (current-buffer))
1085 (top (frame-first-window (selected-frame)))
1086 (win top)
1087 who) ; list of (buffer . frame)
1088 ;; If the only window in the frame is a minibuffer
1089 ;; window, `next-window' will never find it again...
1090 (unless (window-minibuffer-p top)
1091 (while ;; look, no body!
1092 (let ((start (window-start win))
1093 (pair (cons (window-buffer win) (window-frame win))))
1094 (set-buffer (window-buffer win))
1095 (cond ((null (member pair who))
1096 (setq who (cons pair who)))
1097 ((and follow-mode (eq (point-max) start))
1098 ;; Write the same window start back, but don't
1099 ;; set the NOFORCE flag.
1100 (set-window-start win start)))
1101 (setq win (next-window win 'not t))
1102 (not (eq win top)))) ;; Loop while this is true.
1103 (set-buffer orig-buffer))))
1105 ;;; Post Command Hook
1107 ;; The magic little box. This function is called after every command.
1109 ;; This is not as complicated as it seems. It is simply a list of common
1110 ;; display situations and the actions to take, plus commands for redrawing
1111 ;; the screen if it should be unaligned.
1113 ;; We divide the check into two parts; whether we are at the end or not.
1114 ;; This is due to the fact that the end can actually be visible
1115 ;; in several window even though they are aligned.
1117 (defun follow-post-command-hook ()
1118 "Ensure that the windows in Follow mode are adjacent after each command."
1119 (unless (input-pending-p)
1120 (let ((follow-inside-post-command-hook t)
1121 (win (selected-window)))
1122 ;; Work in the selected window, not in the current buffer.
1123 (with-current-buffer (window-buffer win)
1124 (unless (and (symbolp this-command)
1125 (get this-command 'follow-mode-use-cache))
1126 (setq follow-windows-start-end-cache nil)))
1127 (follow-adjust-window win (point)))))
1129 (defun follow-adjust-window (win dest)
1130 ;; Adjust the window WIN and its followers.
1131 (with-current-buffer (window-buffer win)
1132 (when (and follow-mode
1133 (not (window-minibuffer-p win)))
1134 (let* ((windows (follow-all-followers win))
1135 (win-start-end (progn
1136 (follow-update-window-start (car windows))
1137 (follow-windows-start-end windows)))
1138 (aligned (follow-windows-aligned-p win-start-end))
1139 (visible (follow-pos-visible dest win win-start-end))
1140 selected-window-up-to-date)
1141 (unless (and aligned visible)
1142 (setq follow-windows-start-end-cache nil))
1144 ;; Select a window to display point.
1145 (unless follow-internal-force-redisplay
1146 (if (eq dest (point-max))
1147 ;; Be careful at point-max: the display can be aligned
1148 ;; while DEST can be visible in several windows.
1149 (cond
1150 ;; Select the current window, but only when the display
1151 ;; is correct. (When inserting characters in a tail
1152 ;; window, the display is not correct, as they are
1153 ;; shown twice.)
1155 ;; Never stick to the current window after a deletion.
1156 ;; Otherwise, when typing `DEL' in a window showing
1157 ;; only the end of the file, a character would be
1158 ;; removed from the window above, which is very
1159 ;; unintuitive.
1160 ((and visible
1161 aligned
1162 (not (memq this-command
1163 '(backward-delete-char
1164 delete-backward-char
1165 backward-delete-char-untabify
1166 kill-region))))
1167 (follow-debug-message "Max: same"))
1168 ;; If the end is visible, and the window doesn't
1169 ;; seems like it just has been moved, select it.
1170 ((follow-select-if-end-visible win-start-end)
1171 (follow-debug-message "Max: end visible")
1172 (setq visible t aligned nil)
1173 (goto-char dest))
1174 ;; Just show the end...
1176 (follow-debug-message "Max: default")
1177 (select-window (car (last windows)))
1178 (goto-char dest)
1179 (setq visible nil aligned nil)))
1181 ;; We're not at the end, here life is much simpler.
1182 (cond
1183 ;; This is the normal case!
1184 ;; It should be optimized for speed.
1185 ((and visible aligned)
1186 (follow-debug-message "same"))
1187 ;; Pick a position in any window. If the display is ok,
1188 ;; this picks the `correct' window.
1189 ((follow-select-if-visible dest win-start-end)
1190 (follow-debug-message "visible")
1191 (goto-char dest)
1192 ;; Perform redisplay, in case line is partially visible.
1193 (setq visible nil))
1194 ;; Not visible anywhere else, lets pick this one.
1195 (visible
1196 (follow-debug-message "visible in selected."))
1197 ;; If DEST is before the first window start, select the
1198 ;; first window.
1199 ((< dest (nth 1 (car win-start-end)))
1200 (follow-debug-message "before first")
1201 (select-window (car windows))
1202 (goto-char dest)
1203 (setq visible nil aligned nil))
1204 ;; If we can position the cursor without moving the first
1205 ;; window, do it. This is the case that catches `RET' at
1206 ;; the bottom of a window.
1207 ((follow-select-if-visible-from-first dest windows)
1208 (follow-debug-message "Below first")
1209 (setq visible t aligned t))
1210 ;; None of the above. Stick to the selected window.
1212 (follow-debug-message "None")
1213 (setq visible nil aligned nil))))
1215 ;; If a new window was selected, make sure that the old is
1216 ;; not scrolled when the point is outside the window.
1217 (unless (eq win (selected-window))
1218 (let ((p (window-point win)))
1219 (set-window-start win (window-start win) nil)
1220 (set-window-point win p))))
1222 (unless visible
1223 ;; If point may not be visible in the selected window,
1224 ;; perform a redisplay; this ensures scrolling.
1225 (let ((opoint (point)))
1226 (redisplay)
1227 ;; If this `redisplay' moved point, we got clobbered by a
1228 ;; previous call to `set-window-start'. Try again.
1229 (when (/= (point) opoint)
1230 (goto-char opoint)
1231 (redisplay)))
1233 (setq selected-window-up-to-date t)
1234 (follow-avoid-tail-recenter)
1235 (setq win-start-end (follow-windows-start-end windows)
1236 follow-windows-start-end-cache nil
1237 aligned nil))
1239 ;; Now redraw the windows around the selected window.
1240 (unless (and (not follow-internal-force-redisplay)
1241 (or aligned
1242 (follow-windows-aligned-p win-start-end))
1243 (follow-point-visible-all-windows-p win-start-end))
1244 (setq follow-internal-force-redisplay nil)
1245 (follow-redisplay windows (selected-window)
1246 selected-window-up-to-date)
1247 (setq win-start-end (follow-windows-start-end windows)
1248 follow-windows-start-end-cache nil)
1249 ;; The point can ends up in another window when DEST is at
1250 ;; the beginning of the buffer and the selected window is
1251 ;; not the first. It can also happen when long lines are
1252 ;; used and there is a big difference between the width of
1253 ;; the windows. (When scrolling one line in a wide window
1254 ;; which will cause a move larger that an entire small
1255 ;; window.)
1256 (unless (follow-pos-visible dest win win-start-end)
1257 (follow-select-if-visible dest win-start-end)
1258 (goto-char dest)))
1260 ;; If the region is visible, make it look good when spanning
1261 ;; multiple windows.
1262 (when (region-active-p)
1263 (follow-maximize-region
1264 (selected-window) windows win-start-end)))
1266 ;; Whether or not the buffer was in follow mode, update windows
1267 ;; displaying the tail so that Emacs won't recenter them.
1268 (follow-avoid-tail-recenter))))
1270 ;;; The region
1272 ;; Tries to make the highlighted area representing the region look
1273 ;; good when spanning several windows.
1275 ;; Not perfect, as the point can't be placed at window end, only at
1276 ;; end-1. This will highlight a little bit in windows above
1277 ;; the current.
1279 (defun follow-maximize-region (win windows win-start-end)
1280 "Make a highlighted region stretching multiple windows look good."
1281 (let* ((all (follow-split-followers windows win))
1282 (pred (car all))
1283 (succ (cdr all))
1284 data)
1285 (while pred
1286 (setq data (assq (car pred) win-start-end))
1287 (set-window-point (car pred) (max (nth 1 data) (- (nth 2 data) 1)))
1288 (setq pred (cdr pred)))
1289 (while succ
1290 (set-window-point (car succ) (nth 1 (assq (car succ) win-start-end)))
1291 (setq succ (cdr succ)))))
1293 ;;; Scroll bar
1295 ;;;; Scroll-bar support code.
1297 ;; This handles the case where the user drags the scroll bar of a
1298 ;; non-selected window whose buffer is in Follow mode.
1300 (defun follow-scroll-bar-toolkit-scroll (event)
1301 (interactive "e")
1302 (scroll-bar-toolkit-scroll event)
1303 (follow-redraw-after-event event))
1305 (defun follow-scroll-bar-drag (event)
1306 (interactive "e")
1307 (scroll-bar-drag event)
1308 (follow-redraw-after-event event))
1310 (defun follow-scroll-bar-scroll-up (event)
1311 (interactive "e")
1312 (scroll-bar-scroll-up event)
1313 (follow-redraw-after-event event))
1315 (defun follow-scroll-bar-scroll-down (event)
1316 (interactive "e")
1317 (scroll-bar-scroll-down event)
1318 (follow-redraw-after-event event))
1320 (defun follow-mwheel-scroll (event)
1321 (interactive "e")
1322 (mwheel-scroll event)
1323 (follow-redraw-after-event event))
1325 (defun follow-redraw-after-event (event)
1326 "Re-align the Follow mode windows affected by EVENT."
1327 (let* ((window (nth 0 (event-end event)))
1328 (buffer (window-buffer window))
1329 (orig-win (selected-window)))
1330 (when (and (buffer-local-value 'follow-mode buffer)
1331 ;; Ignore the case where we scroll the selected window;
1332 ;; that is handled by the post-command hook function.
1333 (not (eq window (selected-window))))
1334 (select-window window)
1335 (follow-redisplay)
1336 (unless (eq (window-buffer orig-win) buffer)
1337 (select-window orig-win)))))
1339 ;;; Window size change
1341 ;; The functions in `window-size-change-functions' are called every
1342 ;; time a window in a frame changes size, most notably after the frame
1343 ;; has been resized. We call `follow-post-command-hook' for every
1344 ;; Follow mode buffer visible in any window in the resized frame.
1346 ;; Since `follow-window-size-change' can be called indirectly from
1347 ;; `follow-post-command-hook' we have a potential infinite loop. To
1348 ;; avoid this, we simply do not do anything in this situation. The
1349 ;; variable `follow-inside-post-command-hook' contains information
1350 ;; about whether the execution actually is inside the
1351 ;; post-command-hook or not.
1353 (defun follow-window-size-change (frame)
1354 "Redraw all windows in FRAME, when in Follow mode."
1355 ;; Below, we call `post-command-hook'. Avoid an infloop.
1356 (unless follow-inside-post-command-hook
1357 (let ((buffers '())
1358 (orig-window (selected-window))
1359 (orig-buffer (current-buffer))
1360 (orig-frame (selected-frame))
1361 windows
1362 buf)
1363 (select-frame frame)
1364 (unwind-protect
1365 (walk-windows
1366 (lambda (win)
1367 (setq buf (window-buffer win))
1368 (unless (memq buf buffers)
1369 (set-buffer buf)
1370 (when follow-mode
1371 (setq windows (follow-all-followers win))
1372 (if (not (memq orig-window windows))
1373 (follow-redisplay windows win)
1374 ;; Make sure we're redrawing around the selected
1375 ;; window.
1376 (select-window orig-window)
1377 (follow-post-command-hook)
1378 (setq orig-window (selected-window)))
1379 (setq buffers (cons buf buffers)))))
1380 'no-minibuf)
1381 (select-frame orig-frame)
1382 (set-buffer orig-buffer)
1383 (select-window orig-window)))))
1385 (add-hook 'window-scroll-functions 'follow-avoid-tail-recenter t)
1387 ;;; Profile support
1389 ;; The following (non-evaluated) section can be used to
1390 ;; profile this package using `elp'.
1392 ;; Invalid indentation on purpose!
1394 ;; (setq elp-function-list
1395 ;; '(window-end
1396 ;; vertical-motion
1397 ;; follow-mode
1398 ;; follow-all-followers
1399 ;; follow-split-followers
1400 ;; follow-redisplay
1401 ;; follow-estimate-first-window-start
1402 ;; follow-calculate-first-window-start-from-above
1403 ;; follow-calculate-first-window-start-from-below
1404 ;; follow-calc-win-end
1405 ;; follow-calc-win-start
1406 ;; follow-pos-visible
1407 ;; follow-windows-start-end
1408 ;; follow-cache-valid-p
1409 ;; follow-select-if-visible
1410 ;; follow-select-if-visible-from-first
1411 ;; follow-windows-aligned-p
1412 ;; follow-point-visible-all-windows-p
1413 ;; follow-avoid-tail-recenter
1414 ;; follow-update-window-start
1415 ;; follow-post-command-hook))
1417 (provide 'follow)
1419 ;; /------------------------------------------------------------------------\
1420 ;; | "I [..] am rarely happier then when spending an entire day programming |
1421 ;; | my computer to perform automatically a task that it would otherwise |
1422 ;; | take me a good ten seconds to do by hand. Ten seconds, I tell myself, |
1423 ;; | is ten seconds. Time is valuable and ten seconds' worth of it is well |
1424 ;; | worth the investment of a day's happy activity working out a way to |
1425 ;; | save it". -- Douglas Adams, "Last Chance to See" |
1426 ;; \------------------------------------------------------------------------/
1428 ;;; follow.el ends here