Document reserved keys
[emacs.git] / lisp / follow.el
blobfd397c077bb17851aa7278ac42c574cece92b2c6
1 ;;; follow.el --- synchronize windows showing the same buffer
3 ;; Copyright (C) 1995-1997, 1999, 2001-2018 Free Software Foundation,
4 ;; Inc.
6 ;; Author: Anders Lindgren
7 ;; Maintainer: emacs-devel@gnu.org
8 ;; Created: 1995-05-25
9 ;; Keywords: display, window, minor-mode, convenience
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; `Follow mode' is a minor mode for Emacs and XEmacs that
29 ;; combines windows into one tall virtual window.
31 ;; The feeling of a "virtual window" has been accomplished by the use
32 ;; of two major techniques:
34 ;; * The windows always display adjacent sections of the buffer.
35 ;; This means that whenever one window is moved, all the
36 ;; others will follow. (Hence the name Follow mode.)
38 ;; * Should point (cursor) end up outside a window, another
39 ;; window displaying that point is selected, if possible. This
40 ;; makes it possible to walk between windows using normal cursor
41 ;; movement commands.
43 ;; Follow mode comes to its prime when a large screen and two
44 ;; side-by-side window are used. The user can, with the help of Follow
45 ;; mode, use two full-height windows as though they are one.
46 ;; Imagine yourself editing a large function, or section of text,
47 ;; and being able to use 144 lines instead of the normal 72... (your
48 ;; mileage may vary).
50 ;; To test this package, make sure `follow' is loaded, or will be
51 ;; autoloaded when activated (see below). Then do the following:
53 ;; * Find your favorite file (preferably a long one).
55 ;; * Resize Emacs so that it will be wide enough for two full size
56 ;; columns. Delete the other windows and split the window with
57 ;; the commands `C-x 1 C-x 3'.
59 ;; * Give the command:
60 ;; M-x follow-mode <RETURN>
62 ;; * Now the display should look something like (assuming the text "71"
63 ;; is on line 71):
65 ;; +----------+----------+
66 ;; |1 |73 |
67 ;; |2 |74 |
68 ;; |3 |75 |
69 ;; ... ...
70 ;; |71 |143 |
71 ;; |72 |144 |
72 ;; +----------+----------+
74 ;; As you can see, the right-hand window starts at line 73, the line
75 ;; immediately below the end of the left-hand window. As long as
76 ;; `follow-mode' is active, the two windows will follow each other!
78 ;; * Play around and enjoy! Scroll one window and watch the other.
79 ;; Jump to the beginning or end. Press `Cursor down' at the last
80 ;; line of the left-hand window. Enter new lines into the
81 ;; text. Enter long lines spanning several lines, or several
82 ;; windows.
84 ;; * Should you find `Follow' mode annoying, just type
85 ;; M-x follow-mode <RETURN>
86 ;; to turn it off.
89 ;; The command `follow-delete-other-windows-and-split' maximizes the
90 ;; visible area of the current buffer.
92 ;; I recommend adding it, and `follow-mode', to hotkeys in the global
93 ;; key map. To do so, add the following lines (replacing `[f7]' and
94 ;; `[f8]' with your favorite keys) to the init file:
96 ;; (global-set-key [f8] 'follow-mode)
97 ;; (global-set-key [f7] 'follow-delete-other-windows-and-split)
100 ;; There exist two system variables that control the appearance of
101 ;; lines wider than the window containing them. The default is to
102 ;; truncate long lines whenever a window isn't as wide as the frame.
104 ;; To make sure lines are never truncated, please place the following
105 ;; lines in your init file:
107 ;; (setq truncate-lines nil)
108 ;; (setq truncate-partial-width-windows nil)
111 ;; The correct way to configure Follow mode, or any other mode for
112 ;; that matter, is to create one or more functions that do
113 ;; whatever you would like to do. These functions are then added to
114 ;; a hook.
116 ;; The keymap `follow-key-map' contains key bindings activated by
117 ;; `follow-mode'.
119 ;; Example:
120 ;; (add-hook 'follow-mode-hook 'my-follow-mode-hook)
122 ;; (defun my-follow-mode-hook ()
123 ;; (define-key follow-mode-map "\C-ca" 'your-favorite-function)
124 ;; (define-key follow-mode-map "\C-cb" 'another-function))
127 ;; Usage:
129 ;; To activate, issue the command "M-x follow-mode"
130 ;; and press Return. To deactivate, do it again.
132 ;; The following is a list of commands useful when follow-mode is active.
134 ;; follow-scroll-up C-c . C-v
135 ;; Scroll text in a Follow mode window chain up.
137 ;; follow-scroll-down C-c . v
138 ;; Like `follow-scroll-up', but in the other direction.
140 ;; follow-delete-other-windows-and-split C-c . 1
141 ;; Maximize the visible area of the current buffer,
142 ;; and enter Follow mode. This is a very convenient
143 ;; way to start Follow mode, hence we recommend that
144 ;; this command be added to the global keymap.
146 ;; follow-recenter C-c . C-l
147 ;; Place point in the center of the middle window,
148 ;; or a specified number of lines from either top or bottom.
150 ;; follow-switch-to-buffer C-c . b
151 ;; Switch buffer in all windows displaying the current buffer
152 ;; in this frame.
154 ;; follow-switch-to-buffer-all C-c . C-b
155 ;; Switch buffer in all windows in the selected frame.
157 ;; follow-switch-to-current-buffer-all
158 ;; Show the current buffer in all windows on the current
159 ;; frame and turn on `follow-mode'.
161 ;; follow-first-window C-c . <
162 ;; Select the first window in the frame showing the same buffer.
164 ;; follow-last-window C-c . >
165 ;; Select the last window in the frame showing the same buffer.
167 ;; follow-next-window C-c . n
168 ;; Select the next window in the frame showing the same buffer.
170 ;; follow-previous-window C-c . p
171 ;; Select the previous window showing the same buffer.
174 ;; Well, it seems ok, but what if I really want to look at two different
175 ;; positions in the text? Here are two simple methods to use:
177 ;; 1) Use multiple frames; `follow' mode only affects windows displayed
178 ;; in the same frame. (My apologies to you who can't use frames.)
180 ;; 2) Bind `follow-mode' to key so you can turn it off whenever
181 ;; you want to view two locations. Of course, `follow' mode can
182 ;; be reactivated by hitting the same key again.
184 ;; Example from my ~/.emacs:
185 ;; (global-set-key [f8] 'follow-mode)
187 ;; Implementation:
189 ;; The main method by which Follow mode aligns windows is via the
190 ;; function `follow-post-command-hook', which is run after each
191 ;; command. This "fixes up" the alignment of other windows which are
192 ;; showing the same Follow mode buffer, on the same frame as the
193 ;; selected window. It does not try to deal with buffers other than
194 ;; the buffer of the selected frame, or windows on other frames.
196 ;; Comint mode specially calls `follow-comint-scroll-to-bottom' on
197 ;; Follow mode buffers. This function scrolls the bottom-most window
198 ;; in a window chain and aligns the other windows accordingly. Follow
199 ;; mode adds a function to `compilation-filter-hook' to align
200 ;; compilation buffers.
202 ;;; Code:
204 (require 'easymenu)
205 (eval-when-compile (require 'cl-lib))
207 ;;; Variables
209 (defgroup follow nil
210 "Synchronize windows showing the same buffer."
211 :group 'windows
212 :group 'convenience)
214 (defcustom follow-mode-hook nil
215 "Normal hook run by `follow-mode'."
216 :type 'hook
217 :group 'follow)
219 ;;; Keymap/Menu
221 ;; Define keys for the follow-mode minor mode map and replace some
222 ;; functions in the global map. All Follow mode special functions can
223 ;; be found on the `C-c .' prefix key.
225 ;; To change the prefix, redefine `follow-mode-prefix' before `follow'
226 ;; is loaded, or see the section on `follow-mode-hook' above for an
227 ;; example of how to bind the keys the way you like.
229 (defcustom follow-mode-prefix "\C-c."
230 "Prefix key to use for follow commands in Follow mode.
231 The value of this variable is checked as part of loading Follow mode.
232 After that, changing the prefix key requires manipulating keymaps."
233 :type 'string
234 :group 'follow)
236 (defvar follow-mode-map
237 (let ((mainmap (make-sparse-keymap))
238 (map (make-sparse-keymap)))
239 (define-key map "\C-v" 'follow-scroll-up)
240 (define-key map "\M-v" 'follow-scroll-down)
241 (define-key map "v" 'follow-scroll-down)
242 (define-key map "1" 'follow-delete-other-windows-and-split)
243 (define-key map "b" 'follow-switch-to-buffer)
244 (define-key map "\C-b" 'follow-switch-to-buffer-all)
245 (define-key map "\C-l" 'follow-recenter)
246 (define-key map "<" 'follow-first-window)
247 (define-key map ">" 'follow-last-window)
248 (define-key map "n" 'follow-next-window)
249 (define-key map "p" 'follow-previous-window)
251 (define-key mainmap follow-mode-prefix map)
253 ;; Replace the standard `end-of-buffer', when in Follow mode. (I
254 ;; don't see the point in trying to replace every function that
255 ;; could be enhanced in Follow mode. End-of-buffer is a special
256 ;; case since it is very simple to define and it greatly enhances
257 ;; the look and feel of Follow mode.)
258 (define-key mainmap [remap end-of-buffer] 'follow-end-of-buffer)
260 (define-key mainmap [remap scroll-bar-toolkit-scroll] 'follow-scroll-bar-toolkit-scroll)
261 (define-key mainmap [remap scroll-bar-drag] 'follow-scroll-bar-drag)
262 (define-key mainmap [remap scroll-bar-scroll-up] 'follow-scroll-bar-scroll-up)
263 (define-key mainmap [remap scroll-bar-scroll-down] 'follow-scroll-bar-scroll-down)
264 (define-key mainmap [remap mwheel-scroll] 'follow-mwheel-scroll)
266 mainmap)
267 "Minor mode keymap for Follow mode.")
269 ;; When the mode is not activated, only one item is visible to activate
270 ;; the mode.
271 (defun follow-menu-filter (menu)
272 (if (bound-and-true-p follow-mode)
273 menu
274 '(["Follow mode" follow-mode
275 :style toggle :selected follow-mode])))
277 (easy-menu-add-item nil '("Tools")
278 '("Follow"
279 :filter follow-menu-filter
280 ["Scroll Up" follow-scroll-up follow-mode]
281 ["Scroll Down" follow-scroll-down follow-mode]
282 "--"
283 ["Delete Other Windows and Split" follow-delete-other-windows-and-split follow-mode]
284 "--"
285 ["Switch To Buffer" follow-switch-to-buffer follow-mode]
286 ["Switch To Buffer (all windows)" follow-switch-to-buffer-all follow-mode]
287 "--"
288 ["First Window" follow-first-window follow-mode]
289 ["Last Window" follow-last-window follow-mode]
290 ["Next Window" follow-next-window follow-mode]
291 ["Previous Window" follow-previous-window follow-mode]
292 "--"
293 ["Recenter" follow-recenter follow-mode]
294 "--"
295 ["Follow mode" follow-mode :style toggle :selected follow-mode]))
297 (defcustom follow-mode-line-text " Follow"
298 "Text shown in the mode line when Follow mode is active.
299 Defaults to \" Follow\". Examples of other values
300 are \" Fw\", or simply \"\"."
301 :type 'string
302 :group 'follow)
304 (defcustom follow-auto nil
305 "Non-nil activates Follow mode whenever a file is loaded."
306 :type 'boolean
307 :group 'follow
308 :set (lambda (symbol value)
309 (if value
310 (add-hook 'find-file-hook 'follow-find-file-hook t)
311 (remove-hook 'find-file-hook 'follow-find-file-hook))
312 (set-default symbol value)))
314 (defvar follow-cache-command-list
315 '(next-line previous-line forward-char backward-char right-char left-char)
316 "List of commands that don't require recalculation.
318 In order to be able to use the cache, a command should not change the
319 contents of the buffer, nor should it change selected window or current
320 buffer.
322 The commands in this list are checked at load time.
324 To mark other commands as suitable for caching, set the symbol
325 property `follow-mode-use-cache' to non-nil.")
327 (defcustom follow-debug nil
328 "If non-nil, emit Follow mode debugging messages."
329 :type 'boolean
330 :group 'follow)
332 ;; Internal variables:
334 (defvar follow-internal-force-redisplay nil
335 "True when Follow mode should redisplay the windows.")
337 (defvar follow-active-menu nil
338 "The menu visible when Follow mode is active.")
340 (defvar follow-inactive-menu nil
341 "The menu visible when Follow mode is inactive.")
343 (defvar follow-inside-post-command-hook-call nil
344 "Non-nil when inside Follow modes `post-command-hook'.
345 Used by `follow-window-size-change'.")
347 (defvar follow-windows-start-end-cache nil
348 "Cache used by `follow-window-start-end'.")
350 (defvar follow-fixed-window nil
351 "If non-nil, the current window must not be scrolled.
352 This is typically set by explicit scrolling commands.")
353 ;;; Debug messages
355 ;; This inline function must be as small as possible!
356 ;; Maybe we should define a macro that expands to nil if
357 ;; the variable is not set.
359 (defsubst follow-debug-message (&rest args)
360 "Like `message', but only active when `follow-debug' is non-nil."
361 (if (and (boundp 'follow-debug) follow-debug)
362 (apply 'message args)))
364 ;;; Cache
366 (dolist (cmd follow-cache-command-list)
367 (put cmd 'follow-mode-use-cache t))
369 ;;; The mode
371 ;;;###autoload
372 (defun turn-on-follow-mode ()
373 "Turn on Follow mode. Please see the function `follow-mode'."
374 (follow-mode 1))
377 ;;;###autoload
378 (defun turn-off-follow-mode ()
379 "Turn off Follow mode. Please see the function `follow-mode'."
380 (follow-mode -1))
382 (put 'follow-mode 'permanent-local t)
383 ;;;###autoload
384 (define-minor-mode follow-mode
385 "Toggle Follow mode.
386 With a prefix argument ARG, enable Follow mode if ARG is
387 positive, and disable it otherwise. If called from Lisp, enable
388 the mode if ARG is omitted or nil.
390 Follow mode is a minor mode that combines windows into one tall
391 virtual window. This is accomplished by two main techniques:
393 * The windows always displays adjacent sections of the buffer.
394 This means that whenever one window is moved, all the
395 others will follow. (Hence the name Follow mode.)
397 * Should point (cursor) end up outside a window, another
398 window displaying that point is selected, if possible. This
399 makes it possible to walk between windows using normal cursor
400 movement commands.
402 Follow mode comes to its prime when used on a large screen and two or
403 more side-by-side windows are used. The user can, with the help of
404 Follow mode, use these full-height windows as though they were one.
405 Imagine yourself editing a large function, or section of text, and
406 being able to use 144 or 216 lines instead of the normal 72... (your
407 mileage may vary).
409 To split one large window into two side-by-side windows, the commands
410 `\\[split-window-right]' or \
411 `\\[follow-delete-other-windows-and-split]' can be used.
413 Only windows displayed in the same frame follow each other.
415 This command runs the normal hook `follow-mode-hook'.
417 Keys specific to Follow mode:
418 \\{follow-mode-map}"
419 :lighter follow-mode-line-text
420 :keymap follow-mode-map
421 (if follow-mode
422 (progn
423 (add-hook 'compilation-filter-hook 'follow-align-compilation-windows t t)
424 (add-hook 'post-command-hook 'follow-post-command-hook t)
425 (add-hook 'window-size-change-functions 'follow-window-size-change t)
426 (add-hook 'after-change-functions 'follow-after-change nil t)
427 (add-hook 'isearch-update-post-hook 'follow-post-command-hook nil t)
428 (add-hook 'replace-update-post-hook 'follow-post-command-hook nil t)
429 (add-hook 'ispell-update-post-hook 'follow-post-command-hook nil t)
431 (when isearch-lazy-highlight
432 (setq-local isearch-lazy-highlight 'all-windows))
434 (setq window-group-start-function 'follow-window-start)
435 (setq window-group-end-function 'follow-window-end)
436 (setq set-window-group-start-function 'follow-set-window-start)
437 (setq recenter-window-group-function 'follow-recenter)
438 (setq pos-visible-in-window-group-p-function
439 'follow-pos-visible-in-window-p)
440 (setq selected-window-group-function 'follow-all-followers)
441 (setq move-to-window-group-line-function 'follow-move-to-window-line))
443 ;; Remove globally-installed hook functions only if there is no
444 ;; other Follow mode buffer.
445 (let ((buffers (buffer-list))
446 following)
447 (while (and (not following) buffers)
448 (setq following (buffer-local-value 'follow-mode (car buffers))
449 buffers (cdr buffers)))
450 (unless following
451 (remove-hook 'post-command-hook 'follow-post-command-hook)
452 (remove-hook 'window-size-change-functions 'follow-window-size-change)))
454 (kill-local-variable 'move-to-window-group-line-function)
455 (kill-local-variable 'selected-window-group-function)
456 (kill-local-variable 'pos-visible-in-window-group-p-function)
457 (kill-local-variable 'recenter-window-group-function)
458 (kill-local-variable 'set-window-group-start-function)
459 (kill-local-variable 'window-group-end-function)
460 (kill-local-variable 'window-group-start-function)
462 (remove-hook 'ispell-update-post-hook 'follow-post-command-hook t)
463 (remove-hook 'replace-update-post-hook 'follow-post-command-hook t)
464 (remove-hook 'isearch-update-post-hook 'follow-post-command-hook t)
465 (remove-hook 'after-change-functions 'follow-after-change t)
466 (remove-hook 'compilation-filter-hook 'follow-align-compilation-windows t)))
468 (defun follow-find-file-hook ()
469 "Find-file hook for Follow mode. See the variable `follow-auto'."
470 (if follow-auto (follow-mode 1)))
472 ;;; User functions
474 ;;; Scroll
476 (defun follow-get-scrolled-point (dest windows)
477 "Calculate the correct value for point after a scrolling operation.
479 DEST is our default position, typically where point was before the scroll.
480 If `scroll-preserve-screen-position' is non-nil and active, DEST will be
481 in the same screen position as before the scroll. WINDOWS is the list of
482 windows in the follow chain.
484 This function attempts to duplicate the point placing from
485 `window_scroll_line_based' in the Emacs core source window.c.
487 Return the new position."
488 (if (and scroll-preserve-screen-position
489 (get this-command 'scroll-command))
490 dest
491 (let ((dest-column
492 (save-excursion
493 (goto-char dest)
494 (- (current-column)
495 (progn (vertical-motion 0) (current-column)))))
496 (limit0
497 (with-selected-window (car windows)
498 (save-excursion
499 (goto-char (window-start))
500 (vertical-motion 0)
501 (point))))
502 (limitn
503 (with-selected-window (car (reverse windows))
504 (save-excursion
505 (goto-char (window-end nil t))
506 (if (pos-visible-in-window-p)
507 (point) ; i.e. (point-max)
508 (1- (point)))))))
509 (cond
510 ((< dest limit0)
511 (with-selected-window (car windows)
512 (save-excursion
513 (goto-char limit0)
514 (vertical-motion (cons dest-column 0))
515 (point))))
516 ((> dest limitn)
517 (with-selected-window (car (reverse windows))
518 (save-excursion
519 (goto-char limitn)
520 (vertical-motion (cons dest-column 0))
521 (point))))
522 (t dest)))))
524 ;; `scroll-up' and `-down', but for windows in Follow mode.
526 ;; Almost like the real thing, except when the cursor ends up outside
527 ;; the top or bottom... In our case however, we end up outside the
528 ;; window and hence we are recentered. Should we let `recenter' handle
529 ;; the point position we would never leave the selected window. To do
530 ;; it ourselves we would need to do our own redisplay, which is easier
531 ;; said than done. (Why didn't I do a real display abstraction from
532 ;; the beginning?)
534 ;; We must sometimes set `follow-internal-force-redisplay', otherwise
535 ;; our post-command-hook will move our windows back into the old
536 ;; position... (This would also be corrected if we would have had a
537 ;; good redisplay abstraction.)
539 (defun follow-scroll-up-arg (arg)
540 "Scroll the text in a follow mode window chain up by ARG lines.
541 If ARG is nil, scroll the size of the current window.
543 This is an internal function for `follow-scroll-up' and
544 `follow-scroll-up-window'."
545 (let ((opoint (point)) (owin (selected-window)))
546 (while
547 ;; If we are too near EOB, try scrolling the previous window.
548 (condition-case nil (progn (scroll-up arg) nil)
549 (end-of-buffer
550 (condition-case nil (progn (follow-previous-window) t)
551 (error
552 (select-window owin)
553 (goto-char opoint)
554 (signal 'end-of-buffer nil))))))
555 (unless (and scroll-preserve-screen-position
556 (get this-command 'scroll-command))
557 (goto-char opoint))
558 (setq follow-fixed-window t)))
560 (defun follow-scroll-down-arg (arg)
561 "Scroll the text in a follow mode window chain down by ARG lines.
562 If ARG is nil, scroll the size of the current window.
564 This is an internal function for `follow-scroll-down' and
565 `follow-scroll-down-window'."
566 (let ((opoint (point)))
567 (scroll-down arg)
568 (unless (and scroll-preserve-screen-position
569 (get this-command 'scroll-command))
570 (goto-char opoint))
571 (setq follow-fixed-window t)))
573 ;;;###autoload
574 (defun follow-scroll-up-window (&optional arg)
575 "Scroll text in a Follow mode window up by that window's size.
576 The other windows in the window chain will scroll synchronously.
578 If called with no ARG, the `next-screen-context-lines' last lines of
579 the window will be visible after the scroll.
581 If called with an argument, scroll ARG lines up.
582 Negative ARG means scroll downward.
584 Works like `scroll-up' when not in Follow mode."
585 (interactive "P")
586 (cond ((not follow-mode)
587 (scroll-up arg))
588 ((eq arg '-)
589 (follow-scroll-down-window))
590 (t (follow-scroll-up-arg arg))))
591 (put 'follow-scroll-up-window 'scroll-command t)
593 ;;;###autoload
594 (defun follow-scroll-down-window (&optional arg)
595 "Scroll text in a Follow mode window down by that window's size.
596 The other windows in the window chain will scroll synchronously.
598 If called with no ARG, the `next-screen-context-lines' top lines of
599 the window in the chain will be visible after the scroll.
601 If called with an argument, scroll ARG lines down.
602 Negative ARG means scroll upward.
604 Works like `scroll-down' when not in Follow mode."
605 (interactive "P")
606 (cond ((not follow-mode)
607 (scroll-down arg))
608 ((eq arg '-)
609 (follow-scroll-up-window))
610 (t (follow-scroll-down-arg arg))))
611 (put 'follow-scroll-down-window 'scroll-command t)
613 ;;;###autoload
614 (defun follow-scroll-up (&optional arg)
615 "Scroll text in a Follow mode window chain up.
617 If called with no ARG, the `next-screen-context-lines' last lines of
618 the bottom window in the chain will be visible in the top window.
620 If called with an argument, scroll ARG lines up.
621 Negative ARG means scroll downward.
623 Works like `scroll-up' when not in Follow mode."
624 (interactive "P")
625 (cond ((not follow-mode)
626 (scroll-up arg))
627 (arg (follow-scroll-up-arg arg))
629 (let* ((windows (follow-all-followers))
630 (end (window-end (car (reverse windows)))))
631 (if (eq end (point-max))
632 (signal 'end-of-buffer nil)
633 (select-window (car windows))
634 ;; `window-end' might return nil.
635 (if end
636 (goto-char end))
637 (vertical-motion (- next-screen-context-lines))
638 (set-window-start (car windows) (point)))))))
639 (put 'follow-scroll-up 'scroll-command t)
641 ;;;###autoload
642 (defun follow-scroll-down (&optional arg)
643 "Scroll text in a Follow mode window chain down.
645 If called with no ARG, the `next-screen-context-lines' top lines of
646 the top window in the chain will be visible in the bottom window.
648 If called with an argument, scroll ARG lines down.
649 Negative ARG means scroll upward.
651 Works like `scroll-down' when not in Follow mode."
652 (interactive "P")
653 (cond ((not follow-mode)
654 (scroll-down arg))
655 (arg (follow-scroll-down-arg arg))
657 (let* ((windows (follow-all-followers))
658 (win (car (reverse windows)))
659 (start (window-start (car windows))))
660 (if (eq start (point-min))
661 (signal 'beginning-of-buffer nil)
662 (select-window win)
663 (goto-char start)
664 (vertical-motion (- (- (window-height win)
665 (if header-line-format 2 1)
666 next-screen-context-lines)))
667 (set-window-start win (point))
668 (goto-char start)
669 (vertical-motion (- next-screen-context-lines 1))
670 (setq follow-internal-force-redisplay t))))))
671 (put 'follow-scroll-down 'scroll-command t)
673 (declare-function comint-adjust-point "comint" (window))
674 (defvar comint-scroll-show-maximum-output)
676 (defun follow-comint-scroll-to-bottom (&optional _window)
677 "Scroll the bottom-most window in the current Follow chain.
678 This is to be called by `comint-postoutput-scroll-to-bottom'."
679 (let* ((buffer (current-buffer))
680 (selected (selected-window))
681 (is-selected (eq (window-buffer) buffer))
682 some-window)
683 (when (or is-selected
684 (setq some-window (get-buffer-window)))
685 (let* ((pos (progn (comint-adjust-point nil) (point)))
686 (win (if is-selected
687 selected
688 (car (last (follow-all-followers some-window))))))
689 (select-window win)
690 (goto-char pos)
691 (setq follow-windows-start-end-cache nil)
692 (follow-adjust-window win)
693 (unless is-selected
694 (select-window selected)
695 (set-buffer buffer))))))
697 (defun follow-align-compilation-windows ()
698 "Align the windows of the current Follow mode buffer.
699 This is to be called from `compilation-filter-hook'."
700 (let ((buffer (current-buffer))
701 (win (get-buffer-window))
702 (selected (selected-window)))
703 (when (and follow-mode (waiting-for-user-input-p) win)
704 (let ((windows (follow-all-followers win)))
705 (unless (eq (window-buffer selected) buffer)
706 (setq win (car windows))
707 (select-window win))
708 (follow-redisplay windows win t)
709 (setq follow-windows-start-end-cache nil)
710 (unless (eq selected win)
711 (select-window selected)
712 (set-buffer buffer))))))
714 ;;; Buffer
716 ;;;###autoload
717 (defun follow-delete-other-windows-and-split (&optional arg)
718 "Create two side by side windows and enter Follow mode.
720 Execute this command to display as much as possible of the text
721 in the selected window. All other windows, in the current
722 frame, are deleted and the selected window is split in two
723 side-by-side windows. Follow mode is activated, hence the
724 two windows always will display two successive pages.
725 \(If one window is moved, the other one will follow.)
727 If ARG is positive, the leftmost window is selected. If negative,
728 the rightmost is selected. If ARG is nil, the leftmost window is
729 selected if the original window is the first one in the frame."
730 (interactive "P")
731 (let ((other (or (and (null arg)
732 (not (eq (selected-window)
733 (frame-first-window))))
734 (and arg
735 (< (prefix-numeric-value arg) 0))))
736 (start (window-start)))
737 (delete-other-windows)
738 (split-window-right)
739 (if other
740 (progn
741 (other-window 1)
742 (set-window-start (selected-window) start)
743 (setq follow-internal-force-redisplay t)))
744 (follow-mode 1)))
746 (defun follow-switch-to-buffer (buffer)
747 "Show BUFFER in all windows in the current Follow mode window chain."
748 (interactive "BSwitch to Buffer: ")
749 (let ((orig-window (selected-window))
750 (windows (follow-all-followers)))
751 (while windows
752 (select-window (car windows))
753 (switch-to-buffer buffer)
754 (setq windows (cdr windows)))
755 (select-window orig-window)))
758 (defun follow-switch-to-buffer-all (&optional buffer)
759 "Show BUFFER in all windows on this frame.
760 Defaults to current buffer."
761 (interactive (list (read-buffer "Switch to Buffer: "
762 (current-buffer))))
763 (or buffer (setq buffer (current-buffer)))
764 (let ((orig-window (selected-window)))
765 (walk-windows (lambda (win)
766 (select-window win)
767 (switch-to-buffer buffer))
768 'no-minibuf)
769 (select-window orig-window)
770 (follow-redisplay)))
773 (defun follow-switch-to-current-buffer-all ()
774 "Show current buffer in all windows on this frame, and enter Follow mode."
775 (interactive)
776 (unless follow-mode
777 (follow-mode 1))
778 (follow-switch-to-buffer-all))
780 ;;; Movement
782 ;; Note, these functions are not very useful, at least not unless you
783 ;; rebind the rather cumbersome key sequence `C-c . p'.
785 (defun follow-next-window ()
786 "Select the next window showing the same buffer."
787 (interactive)
788 (let ((succ (cdr (follow-split-followers (follow-all-followers)))))
789 (if succ
790 (select-window (car succ))
791 (error "%s" "No more windows"))))
794 (defun follow-previous-window ()
795 "Select the previous window showing the same buffer."
796 (interactive)
797 (let ((pred (car (follow-split-followers (follow-all-followers)))))
798 (if pred
799 (select-window (car pred))
800 (error "%s" "No more windows"))))
803 (defun follow-first-window ()
804 "Select the first window in the frame showing the same buffer."
805 (interactive)
806 (select-window (car (follow-all-followers))))
809 (defun follow-last-window ()
810 "Select the last window in the frame showing the same buffer."
811 (interactive)
812 (select-window (car (reverse (follow-all-followers)))))
814 ;;; Redraw
816 (defun follow-recenter (&optional arg)
817 "Recenter the middle window around point.
818 Rearrange all other windows around the middle window.
820 With a positive argument, place the current line ARG lines
821 from the top. With a negative argument, place it -ARG lines
822 from the bottom."
823 (interactive "P")
824 (if arg
825 (let ((p (point))
826 (arg (prefix-numeric-value arg)))
827 (if (>= arg 0)
828 ;; Recenter relative to the top.
829 (progn
830 (follow-first-window)
831 (goto-char p)
832 (recenter arg))
833 ;; Recenter relative to the bottom.
834 (follow-last-window)
835 (goto-char p)
836 (recenter arg)
837 ;; Otherwise, our post-command-hook will move the window
838 ;; right back.
839 (setq follow-internal-force-redisplay t)))
840 ;; Recenter in the middle.
841 (let* ((dest (point))
842 (windows (follow-all-followers))
843 (win (nth (/ (- (length windows) 1) 2) windows)))
844 (select-window win)
845 (goto-char dest)
846 (recenter))))
849 (defun follow-redraw ()
850 "Arrange windows displaying the same buffer in successor order.
851 This function can be called even if the buffer is not in Follow mode.
853 Hopefully, there should be no reason to call this function when in
854 Follow mode since the windows should always be aligned."
855 (interactive)
856 (sit-for 0)
857 (follow-redisplay))
859 ;;; End of buffer
861 (defun follow-end-of-buffer (&optional arg)
862 "Move point to the end of the buffer, Follow mode style.
864 If the end is not visible, it will be displayed in the last possible
865 window in the Follow mode window chain.
867 The mark is left at the previous position. With arg N, put point N/10
868 of the way from the true end."
869 (interactive "P")
870 (let ((followers (follow-all-followers))
871 (pos (point)))
872 (cond (arg
873 (select-window (car (reverse followers))))
874 ((follow-select-if-end-visible
875 (follow-windows-start-end followers)))
877 (select-window (car (reverse followers)))))
878 (goto-char pos)
879 (with-no-warnings
880 (end-of-buffer arg))))
882 ;;; Display
884 (defun follow--window-sorter (w1 w2)
885 "Sorting function for W1 and W2 based on their positions.
886 Return non-nil if W1 is above W2; if their top-lines
887 are at the same position, return non-nil if W1 is to the
888 left of W2."
889 (let* ((edge-1 (window-pixel-edges w1))
890 (edge-2 (window-pixel-edges w2))
891 (y1 (nth 1 edge-1))
892 (y2 (nth 1 edge-2)))
893 (if (= y1 y2)
894 (< (car edge-1) (car edge-2))
895 (< y1 y2))))
897 (defun follow-all-followers (&optional win)
898 "Return all windows displaying the same buffer as the WIN.
899 The list is sorted with topmost and leftmost windows first, and
900 contains only windows in the same frame as WIN. If WIN is nil,
901 it defaults to the selected window."
902 (unless (window-live-p win)
903 (setq win (selected-window)))
904 (let ((windows (get-buffer-window-list
905 (window-buffer win) 'no-minibuf (window-frame win))))
906 (sort windows #'follow--window-sorter)))
908 (defun follow-split-followers (windows &optional win)
909 "Split WINDOWS into two sets: predecessors and successors.
910 Return `(PRED . SUCC)' where `PRED' and `SUCC' are ordered starting
911 from the selected window."
912 (or win
913 (setq win (selected-window)))
914 (let ((pred '()))
915 (while (not (eq (car windows) win))
916 (setq pred (cons (car windows) pred))
917 (setq windows (cdr windows)))
918 (cons pred (cdr windows))))
920 (defun follow-calc-win-end (&optional win)
921 "Calculate the end position for window WIN.
922 Return (END-POS END-OF-BUFFER).
924 Actually, the position returned is the start of the line after
925 the last fully-visible line in WIN. END-OF-BUFFER is t when EOB
926 is fully-visible in WIN. If WIN is nil, the selected window is
927 used."
928 (let* ((win (or win (selected-window)))
929 (edges (window-inside-pixel-edges win))
930 (ht (- (nth 3 edges) (nth 1 edges)))
931 (last-line-pos (posn-point (posn-at-x-y 0 (1- ht) win))))
932 (if (pos-visible-in-window-p last-line-pos win)
933 (let ((end (window-end win t)))
934 (list end (pos-visible-in-window-p (point-max) win)))
935 (list last-line-pos nil))))
937 (defun follow-calc-win-start (windows pos win)
938 "Determine the start of window WIN in a Follow mode window chain.
939 WINDOWS is a list of chained windows, and POS is the starting
940 position for the first window in the list. If WIN is nil, return
941 the point below all windows."
942 (while (and windows (not (eq (car windows) win)))
943 (let ((old-start (window-start (car windows))))
944 ;; Can't use `save-window-excursion' since it triggers a redraw.
945 (set-window-start (car windows) pos 'noforce)
946 (setq pos (car (follow-calc-win-end (car windows))))
947 (set-window-start (car windows) old-start 'noforce)
948 (setq windows (cdr windows))))
949 pos)
951 ;; The result from `follow-windows-start-end' is cached when using
952 ;; a handful simple commands, like cursor movement commands.
954 (defsubst follow-cache-valid-p (windows)
955 "Test if the cached value of `follow-windows-start-end' can be used.
956 Note that this handles the case when the cache has been set to nil."
957 (let ((res t)
958 (cache follow-windows-start-end-cache))
959 (while (and res windows cache)
960 (setq res (and (eq (car windows)
961 (car (car cache)))
962 (eq (window-start (car windows))
963 (car (cdr (car cache))))))
964 (setq windows (cdr windows))
965 (setq cache (cdr cache)))
966 (and res (null windows) (null cache))))
968 (defun follow-windows-start-end (windows)
969 "Return a list of (WIN START END BUFFER-END-P) for window list WINDOWS."
970 (if (follow-cache-valid-p windows)
971 follow-windows-start-end-cache
972 (let ((orig-win (selected-window))
973 win-start-end)
974 (dolist (w windows)
975 (select-window w 'norecord)
976 (push (cons w (cons (window-start) (follow-calc-win-end)))
977 win-start-end))
978 (select-window orig-win 'norecord)
979 (setq follow-windows-start-end-cache (nreverse win-start-end)))))
981 (defsubst follow-pos-visible (pos win win-start-end)
982 "Non-nil when POS is visible in WIN."
983 (let ((wstart-wend-bend (cdr (assq win win-start-end))))
984 (and (>= pos (car wstart-wend-bend))
985 (or (< pos (cadr wstart-wend-bend))
986 (nth 2 wstart-wend-bend)))))
989 ;; By `aligned' we mean that for all adjacent windows, the end of the
990 ;; first is equal with the start of the successor. The first window
991 ;; should start at a full screen line.
993 (defsubst follow-windows-aligned-p (win-start-end)
994 "Non-nil if the follower windows are aligned.
995 The argument, WIN-START-END, should be a list of the form
996 returned by `follow-windows-start-end'."
997 (let ((result t))
998 (while (and win-start-end result)
999 (if (cdr win-start-end)
1000 (setq result (eq (nth 2 (car win-start-end))
1001 (nth 1 (cadr win-start-end)))))
1002 (setq win-start-end (cdr win-start-end)))
1003 result))
1005 ;; Check if point is visible in all windows. (So that
1006 ;; no one will be recentered.)
1008 (defun follow-point-visible-all-windows-p (win-start-end)
1009 "Non-nil when the `window-point' is visible in all windows."
1010 (let ((res t))
1011 (while (and res win-start-end)
1012 (setq res (follow-pos-visible (window-point (car (car win-start-end)))
1013 (car (car win-start-end))
1014 win-start-end))
1015 (setq win-start-end (cdr win-start-end)))
1016 res))
1019 ;; Make sure WIN always starts at the beginning of a whole screen
1020 ;; line. If WIN is not aligned the start is updated which probably
1021 ;; will lead to a redisplay of the screen later on.
1023 ;; This is used with the first window in a follow chain. The reason
1024 ;; is that we want to detect that point is outside the window.
1025 ;; (Without the update, the start of the window will move as the
1026 ;; user presses BackSpace, and the other window redisplay routines
1027 ;; will move the start of the window in the wrong direction.)
1029 (defun follow-update-window-start (win)
1030 "Make sure that the start of WIN starts at a full screen line."
1031 (save-excursion
1032 (goto-char (window-start win))
1033 (unless (bolp)
1034 (vertical-motion 0 win)
1035 (unless (eq (point) (window-start win))
1036 (vertical-motion 1 win)
1037 (set-window-start win (point) 'noforce)))))
1039 (defun follow-select-if-visible (dest win-start-end)
1040 "Select and return a window, if DEST is visible in it.
1041 Return the selected window."
1042 (let (win wse)
1043 (while (and (not win) win-start-end)
1044 ;; Don't select a window that was just moved. This makes it
1045 ;; possible to later select the last window after a
1046 ;; `end-of-buffer' command.
1047 (setq wse (car win-start-end))
1048 (when (follow-pos-visible dest (car wse) win-start-end)
1049 (setq win (car wse))
1050 (select-window win))
1051 (setq win-start-end (cdr win-start-end)))
1052 win))
1054 ;; Lets select a window showing the end. Make sure we only select it if
1055 ;; it wasn't just moved here. (I.e. M-> shall not unconditionally place
1056 ;; point in the selected window.)
1058 ;; (Compatibility kludge: in Emacs `window-end' is equal to `point-max';
1059 ;; in XEmacs, it is equal to `point-max + 1'. Should I really bother
1060 ;; checking `window-end' now when I check `end-of-buffer' explicitly?)
1062 (defun follow-select-if-end-visible (win-start-end)
1063 "Select and return a window, if end is visible in it."
1064 (let ((win nil))
1065 (while (and (not win) win-start-end)
1066 ;; Don't select a window that was just moved. This makes it
1067 ;; possible to later select the last window after a `end-of-buffer'
1068 ;; command.
1069 (if (and (eq (point-max) (nth 2 (car win-start-end)))
1070 (nth 3 (car win-start-end))
1071 ;; `window-end' might return nil.
1072 (let ((end (window-end (car (car win-start-end)))))
1073 (and end
1074 (eq (point-max) (min (point-max) end)))))
1075 (progn
1076 (setq win (car (car win-start-end)))
1077 (select-window win)))
1078 (setq win-start-end (cdr win-start-end)))
1079 win))
1082 ;; Select a window that will display point if the windows would
1083 ;; be redisplayed with the first window fixed. This is useful for
1084 ;; example when the user has pressed return at the bottom of a window
1085 ;; as point is not visible in any window.
1087 (defun follow-select-if-visible-from-first (dest windows)
1088 "Try to select one of WINDOWS without repositioning the topmost window.
1089 If one of the windows in WINDOWS contains DEST, select it, call
1090 `follow-redisplay', move point to DEST, and return that window.
1091 Otherwise, return nil."
1092 (let (win end-pos-end-p)
1093 (save-excursion
1094 (goto-char (window-start (car windows)))
1095 ;; Make sure the line start in the beginning of a real screen
1096 ;; line.
1097 (vertical-motion 0 (car windows))
1098 (when (>= dest (point))
1099 ;; At or below the start. Check the windows.
1100 (save-window-excursion
1101 (let ((windows windows))
1102 (while (and (not win) windows)
1103 (set-window-start (car windows) (point) 'noforce)
1104 (setq end-pos-end-p (follow-calc-win-end (car windows)))
1105 (goto-char (car end-pos-end-p))
1106 ;; Visible, if dest above end, or if eob is visible
1107 ;; inside the window.
1108 (if (or (car (cdr end-pos-end-p))
1109 (< dest (point)))
1110 (setq win (car windows))
1111 (setq windows (cdr windows))))))))
1112 (when win
1113 (select-window win)
1114 (follow-redisplay windows (car windows))
1115 (goto-char dest))
1116 win))
1118 ;;; Redisplay
1120 ;; Redraw all the windows on the screen, starting with the top window.
1121 ;; The window used as marker is WIN, or the selected window if WIN
1122 ;; is nil. Start every window directly after the end of the previous
1123 ;; window, to make sure long lines are displayed correctly.
1125 (defvar follow-start-end-invalid t
1126 "When non-nil, indicates `follow-windows-start-end-cache' is invalid.")
1127 (make-variable-buffer-local 'follow-start-end-invalid)
1129 (defun follow-redisplay (&optional windows win preserve-win)
1130 "Reposition the WINDOWS around WIN.
1131 Should point be too close to the roof we redisplay everything
1132 from the top. WINDOWS should contain a list of windows to
1133 redisplay; it is assumed that WIN is a member of the list.
1134 Should WINDOWS be nil, the windows displaying the
1135 same buffer as WIN, in the current frame, are used.
1136 Should WIN be nil, the selected window is used.
1137 If PRESERVE-WIN is non-nil, keep WIN itself unchanged while
1138 repositioning the other windows."
1139 (or win (setq win (selected-window)))
1140 (or windows (setq windows (follow-all-followers win)))
1141 ;; Calculate the start of the first window.
1142 (let* ((old-win-start (window-start win))
1143 (try-first-start (follow-estimate-first-window-start
1144 windows win old-win-start))
1145 (try-win-start (follow-calc-win-start
1146 windows try-first-start win))
1147 (start (cond ((= try-win-start old-win-start)
1148 (follow-debug-message "exact")
1149 try-first-start)
1150 ((< try-win-start old-win-start)
1151 (follow-debug-message "above")
1152 (follow-calculate-first-window-start-from-above
1153 windows try-first-start win old-win-start))
1155 (follow-debug-message "below")
1156 (follow-calculate-first-window-start-from-below
1157 windows try-first-start win old-win-start)))))
1158 (dolist (w windows)
1159 (unless (and preserve-win (eq w win))
1160 (set-window-start w start))
1161 (setq start (car (follow-calc-win-end w))))
1162 (setq follow-start-end-invalid nil)))
1164 (defun follow-estimate-first-window-start (windows win start)
1165 "Estimate the position of the first window.
1166 The estimate is computed by assuming that the window WIN, which
1167 should be a member of WINDOWS, starts at position START."
1168 (let ((windows-before (car (follow-split-followers windows win))))
1169 (save-excursion
1170 (goto-char start)
1171 (vertical-motion 0 win)
1172 (dolist (w windows-before)
1173 (vertical-motion (- (window-text-height w)) w))
1174 (point))))
1177 ;; Find the starting point, start at GUESS and search downward.
1178 ;; The returned point is always a point below GUESS.
1180 (defun follow-calculate-first-window-start-from-above
1181 (windows guess win start)
1182 (save-excursion
1183 (let ((done nil)
1184 win-start
1185 res)
1186 (goto-char guess)
1187 (while (not done)
1188 (if (not (= (vertical-motion 1 (car windows)) 1))
1189 ;; Hit bottom! (Can we really do this?)
1190 ;; We'll keep it, since it ensures termination.
1191 (progn
1192 (setq done t)
1193 (setq res (point-max)))
1194 (setq win-start (follow-calc-win-start windows (point) win))
1195 (if (>= win-start start)
1196 (setq done t res (point)))))
1197 res)))
1200 ;; Find the starting point, start at GUESS and search upward. Return
1201 ;; a point on the same line as GUESS, or above.
1203 (defun follow-calculate-first-window-start-from-below
1204 (windows guess &optional win start)
1205 (setq win (or win (selected-window)))
1206 (setq start (or start (window-start win)))
1207 (save-excursion
1208 (let (done win-start res opoint)
1209 ;; Always calculate what happens when no line is displayed in the first
1210 ;; window. (The `previous' res is needed below!)
1211 (goto-char guess)
1212 (vertical-motion 0 (car windows))
1213 (setq res (point))
1214 (while (not done)
1215 (setq opoint (point))
1216 (if (not (= (vertical-motion -1 (car windows)) -1))
1217 ;; Hit roof!
1218 (setq done t res (point-min))
1219 (setq win-start (follow-calc-win-start windows (point) win))
1220 (cond ((>= (point) opoint)
1221 ;; In some pathological cases, vertical-motion may
1222 ;; return -1 even though point has not decreased. In
1223 ;; that case, avoid looping forever.
1224 (setq done t res (point)))
1225 ((= win-start start) ; Perfect match, use this value
1226 (setq done t res (point)))
1227 ((< win-start start) ; Walked to far, use previous result
1228 (setq done t))
1229 (t ; Store result for next iteration
1230 (setq res (point))))))
1231 res)))
1233 ;;; Avoid tail recenter
1235 ;; This sets the window internal flag `force_start'. The effect is
1236 ;; that windows only displaying the tail aren't recentered.
1238 ;; A window displaying only the tail, is a window whose window-start
1239 ;; position is equal to (point-max) of the buffer it displays.
1241 (defun follow-avoid-tail-recenter (&rest _rest)
1242 "Make sure windows displaying the end of a buffer aren't recentered.
1243 This is done by reading and rewriting the start position of
1244 non-first windows in Follow mode."
1245 (let* ((orig-buffer (current-buffer))
1246 (top (frame-first-window))
1247 (win top)
1248 who) ; list of (buffer . frame)
1249 ;; If the only window in the frame is a minibuffer
1250 ;; window, `next-window' will never find it again...
1251 (unless (window-minibuffer-p top)
1252 (while ;; look, no body!
1253 (let ((start (window-start win))
1254 (pair (cons (window-buffer win) (window-frame win))))
1255 (set-buffer (window-buffer win))
1256 (cond ((null (member pair who))
1257 (setq who (cons pair who)))
1258 ((and follow-mode (eq (point-max) start))
1259 ;; Write the same window start back, but don't
1260 ;; set the NOFORCE flag.
1261 (set-window-start win start)))
1262 (setq win (next-window win 'not t))
1263 (not (eq win top)))) ;; Loop while this is true.
1264 (set-buffer orig-buffer))))
1266 ;;; Post Command Hook
1268 ;; The magic little box. This function is called after every command.
1270 ;; This is not as complicated as it seems. It is simply a list of common
1271 ;; display situations and the actions to take, plus commands for redrawing
1272 ;; the screen if it should be unaligned.
1274 ;; We divide the check into two parts; whether we are at the end or not.
1275 ;; This is due to the fact that the end can actually be visible
1276 ;; in several window even though they are aligned.
1278 (defun follow-post-command-hook ()
1279 "Ensure that the windows in Follow mode are adjacent after each command."
1280 (unless (input-pending-p)
1281 (let ((follow-inside-post-command-hook-call t)
1282 (win (selected-window)))
1283 ;; Work in the selected window, not in the current buffer.
1284 (with-current-buffer (window-buffer win)
1285 (unless (and (symbolp this-command)
1286 (get this-command 'follow-mode-use-cache))
1287 (setq follow-windows-start-end-cache nil))
1288 (follow-adjust-window win)))))
1290 (defun follow-adjust-window (win)
1291 ;; Adjust the window WIN and its followers.
1292 (cl-assert (eq (window-buffer win) (current-buffer)))
1293 (when (and follow-mode
1294 (not (window-minibuffer-p win)))
1295 (let ((windows (follow-all-followers win)))
1296 ;; If we've explicitly scrolled, align the windows first.
1297 (when follow-fixed-window
1298 (follow-debug-message "fixed")
1299 (follow-redisplay windows win)
1300 (goto-char (follow-get-scrolled-point (point) windows))
1301 (setq follow-fixed-window nil))
1302 (let* ((dest (point))
1303 (win-start-end (progn
1304 (follow-update-window-start (car windows))
1305 (follow-windows-start-end windows)))
1306 (aligned (follow-windows-aligned-p win-start-end))
1307 (visible (follow-pos-visible dest win win-start-end))
1308 selected-window-up-to-date)
1309 (unless (and aligned visible)
1310 (setq follow-windows-start-end-cache nil))
1312 ;; Select a window to display point.
1313 (unless follow-internal-force-redisplay
1314 (if (eq dest (point-max))
1315 ;; Be careful at point-max: the display can be aligned
1316 ;; while DEST can be visible in several windows.
1317 (cond
1318 ;; Select the current window, but only when the display
1319 ;; is correct. (When inserting characters in a tail
1320 ;; window, the display is not correct, as they are
1321 ;; shown twice.)
1323 ;; Never stick to the current window after a deletion.
1324 ;; Otherwise, when typing `DEL' in a window showing
1325 ;; only the end of the file, a character would be
1326 ;; removed from the window above, which is very
1327 ;; unintuitive.
1328 ((and visible
1329 aligned
1330 (not (memq this-command
1331 '(backward-delete-char
1332 delete-backward-char
1333 backward-delete-char-untabify
1334 kill-region))))
1335 (follow-debug-message "Max: same"))
1336 ;; If the end is visible, and the window doesn't
1337 ;; seems like it just has been moved, select it.
1338 ((follow-select-if-end-visible win-start-end)
1339 (follow-debug-message "Max: end visible")
1340 (setq visible t aligned nil)
1341 (goto-char dest))
1342 ;; Just show the end...
1344 (follow-debug-message "Max: default")
1345 (select-window (car (last windows)))
1346 (goto-char dest)
1347 (setq visible nil aligned nil)))
1349 ;; We're not at the end, here life is much simpler.
1350 (cond
1351 ;; This is the normal case!
1352 ;; It should be optimized for speed.
1353 ((and visible aligned)
1354 (follow-debug-message "same"))
1355 ;; Pick a position in any window. If the display is ok,
1356 ;; this picks the `correct' window.
1357 ((follow-select-if-visible dest win-start-end)
1358 (follow-debug-message "visible")
1359 (goto-char dest)
1360 ;; Perform redisplay, in case line is partially visible.
1361 (setq visible nil))
1362 ;; Not visible anywhere else, lets pick this one.
1363 (visible
1364 (follow-debug-message "visible in selected."))
1365 ;; If DEST is before the first window start, select the
1366 ;; first window.
1367 ((< dest (nth 1 (car win-start-end)))
1368 (follow-debug-message "before first")
1369 (select-window (car windows))
1370 (goto-char dest)
1371 (setq visible nil aligned nil))
1372 ;; If we can position the cursor without moving the first
1373 ;; window, do it. This is the case that catches `RET' at
1374 ;; the bottom of a window.
1375 ((follow-select-if-visible-from-first dest windows)
1376 (follow-debug-message "Below first")
1377 (setq visible t aligned t))
1378 ;; None of the above. Stick to the selected window.
1380 (follow-debug-message "None")
1381 (setq visible nil aligned nil))))
1383 ;; If a new window was selected, make sure that the old is
1384 ;; not scrolled when point is outside the window.
1385 (unless (eq win (selected-window))
1386 (let ((p (window-point win)))
1387 (set-window-start win (window-start win) nil)
1388 (set-window-point win p))))
1390 (unless visible
1391 ;; If point may not be visible in the selected window,
1392 ;; perform a redisplay; this ensures scrolling.
1393 (let ((opoint (point)))
1394 (redisplay)
1395 ;; If this `redisplay' moved point, we got clobbered by a
1396 ;; previous call to `set-window-start'. Try again.
1397 (when (/= (point) opoint)
1398 (goto-char opoint)
1399 (redisplay)))
1401 (setq selected-window-up-to-date t)
1402 (follow-avoid-tail-recenter)
1403 (setq win-start-end (follow-windows-start-end windows)
1404 follow-windows-start-end-cache nil
1405 aligned nil))
1407 ;; Now redraw the windows around the selected window.
1408 (unless (and (not follow-internal-force-redisplay)
1409 (or aligned
1410 (follow-windows-aligned-p win-start-end))
1411 (follow-point-visible-all-windows-p win-start-end))
1412 (setq follow-internal-force-redisplay nil)
1413 (follow-redisplay windows (selected-window)
1414 selected-window-up-to-date)
1415 (setq win-start-end (follow-windows-start-end windows)
1416 follow-windows-start-end-cache nil)
1417 ;; Point can end up in another window when DEST is at
1418 ;; the beginning of the buffer and the selected window is
1419 ;; not the first. It can also happen when long lines are
1420 ;; used and there is a big difference between the width of
1421 ;; the windows. (When scrolling one line in a wide window
1422 ;; which will cause a move larger that an entire small
1423 ;; window.)
1424 (unless (follow-pos-visible dest win win-start-end)
1425 (follow-select-if-visible dest win-start-end)
1426 (goto-char dest)))
1428 ;; If the region is visible, make it look good when spanning
1429 ;; multiple windows.
1430 (when (region-active-p)
1431 (follow-maximize-region
1432 (selected-window) windows win-start-end))))
1434 ;; Whether or not the buffer was in follow mode, update windows
1435 ;; displaying the tail so that Emacs won't recenter them.
1436 (follow-avoid-tail-recenter)))
1438 ;;; The region
1440 ;; Tries to make the highlighted area representing the region look
1441 ;; good when spanning several windows.
1443 ;; Not perfect, as point can't be placed at window end, only at
1444 ;; end-1. This will highlight a little bit in windows above
1445 ;; the current.
1447 (defun follow-maximize-region (win windows win-start-end)
1448 "Make a highlighted region stretching multiple windows look good."
1449 (let* ((all (follow-split-followers windows win))
1450 (pred (car all))
1451 (succ (cdr all))
1452 data)
1453 (while pred
1454 (setq data (assq (car pred) win-start-end))
1455 (set-window-point (car pred) (max (nth 1 data) (- (nth 2 data) 1)))
1456 (setq pred (cdr pred)))
1457 (while succ
1458 (set-window-point (car succ) (nth 1 (assq (car succ) win-start-end)))
1459 (setq succ (cdr succ)))))
1461 ;;; Scroll bar
1463 ;;;; Scroll-bar support code.
1465 ;; This handles the case where the user drags the scroll bar of a
1466 ;; non-selected window whose buffer is in Follow mode.
1468 (declare-function scroll-bar-toolkit-scroll "scroll-bar" (event))
1469 (declare-function scroll-bar-drag "scroll-bar" (event))
1470 (declare-function scroll-bar-scroll-up "scroll-bar" (event))
1471 (declare-function scroll-bar-scroll-down "scroll-bar" (event))
1472 (declare-function mwheel-scroll "mwheel" (event))
1474 (defun follow-scroll-bar-toolkit-scroll (event)
1475 (interactive "e")
1476 (scroll-bar-toolkit-scroll event)
1477 (follow-redraw-after-event event))
1479 (defun follow-scroll-bar-drag (event)
1480 (interactive "e")
1481 (scroll-bar-drag event)
1482 (follow-redraw-after-event event))
1484 (defun follow-scroll-bar-scroll-up (event)
1485 (interactive "e")
1486 (scroll-bar-scroll-up event)
1487 (follow-redraw-after-event event))
1489 (defun follow-scroll-bar-scroll-down (event)
1490 (interactive "e")
1491 (scroll-bar-scroll-down event)
1492 (follow-redraw-after-event event))
1494 (defun follow-mwheel-scroll (event)
1495 (interactive "e")
1496 (mwheel-scroll event)
1497 (follow-redraw-after-event event))
1499 (defun follow-redraw-after-event (event)
1500 "Re-align the Follow mode windows affected by EVENT."
1501 (let* ((window (nth 0 (event-end event)))
1502 (buffer (window-buffer window))
1503 (orig-win (selected-window)))
1504 (when (and (buffer-local-value 'follow-mode buffer)
1505 ;; Ignore the case where we scroll the selected window;
1506 ;; that is handled by the post-command hook function.
1507 (not (eq window (selected-window))))
1508 (select-window window)
1509 (follow-redisplay)
1510 (unless (eq (window-buffer orig-win) buffer)
1511 (select-window orig-win)))))
1513 ;;; Window size change
1515 ;; The functions in `window-size-change-functions' are called every
1516 ;; time a window in a frame changes size, most notably after the frame
1517 ;; has been resized. We call `follow-post-command-hook' for every
1518 ;; Follow mode buffer visible in any window in the resized frame.
1520 ;; Since `follow-window-size-change' can be called indirectly from
1521 ;; `follow-post-command-hook' we have a potential infinite loop. To
1522 ;; avoid this, we simply do not do anything in this situation. The
1523 ;; variable `follow-inside-post-command-hook-call' contains
1524 ;; information about whether the execution actually is inside the
1525 ;; post-command-hook or not.
1527 (defun follow-window-size-change (frame)
1528 "Redraw all windows in FRAME, when in Follow mode."
1529 ;; Below, we call `post-command-hook'. Avoid an infloop.
1530 (unless follow-inside-post-command-hook-call
1531 (save-current-buffer
1532 (let ((orig-frame (selected-frame)))
1533 (select-frame frame)
1534 (let ((picked-window (selected-window)) ; Note: May change below.
1535 (seen-buffers '()))
1536 (unwind-protect
1537 (walk-windows
1538 (lambda (win)
1539 (let ((buf (window-buffer win)))
1540 (unless (memq buf seen-buffers)
1541 (set-buffer buf)
1542 (when follow-mode
1543 (let ((windows (follow-all-followers win)))
1544 (if (not (memq picked-window windows))
1545 (follow-redisplay windows win)
1546 ;; Make sure we're redrawing around the selected
1547 ;; window.
1548 (select-window picked-window 'norecord)
1549 (follow-post-command-hook)
1550 (setq picked-window (selected-window))))
1551 (push buf seen-buffers)))))
1552 'no-minibuf)
1553 (select-window picked-window 'norecord)))
1554 (select-frame orig-frame)))))
1556 (add-hook 'window-scroll-functions 'follow-avoid-tail-recenter t)
1558 ;;; Low level window start and end.
1560 ;; These routines are the Follow Mode versions of the low level
1561 ;; functions described on page "Window Start and End" of the elisp
1562 ;; manual, e.g. `window-group-start'. The aim is to be able to handle
1563 ;; Follow Mode windows by replacing `window-start' by
1564 ;; `window-group-start', etc.
1566 (defun follow-after-change (_beg _end _old-len)
1567 "After change function: set `follow-start-end-invalid'."
1568 (setq follow-start-end-invalid t))
1570 (defun follow-window-start (&optional window)
1571 "Return position at which display currently starts in the
1572 Follow Mode group of windows which includes WINDOW.
1574 WINDOW must be a live window and defaults to the selected one.
1575 This is updated by redisplay or by calling
1576 `follow-set-window-start'."
1577 (let ((windows (follow-all-followers window)))
1578 (window-start (car windows))))
1580 (defun follow-window-end (&optional window update)
1581 "Return position at which display currently ends in the Follow
1582 Mode group of windows which includes WINDOW.
1584 WINDOW must be a live window and defaults to the selected one.
1585 This is updated by redisplay, when it runs to completion.
1586 Simply changing the buffer text or setting `window-start' does
1587 not update this value.
1589 Return nil if there is no recorded value. (This can happen if
1590 the last redisplay of WINDOW was preempted, and did not
1591 finish.) If UPDATE is non-nil, compute the up-to-date position
1592 if it isn't already recorded."
1593 (let* ((windows (follow-all-followers window))
1594 (last (car (last windows))))
1595 (when (and update follow-start-end-invalid)
1596 (follow-redisplay windows (car windows)))
1597 (window-end last update)))
1599 (defun follow-set-window-start (window pos &optional noforce)
1600 "Make display in the Follow Mode group of windows which includes
1601 WINDOW start at position POS in WINDOW's buffer.
1603 WINDOW must be a live window and defaults to the selected one. Return
1604 POS. Optional third arg NOFORCE non-nil inhibits next redisplay from
1605 overriding motion of point in order to display at this exact start."
1606 (let ((windows (follow-all-followers window)))
1607 (setq follow-start-end-invalid t)
1608 (set-window-start (car windows) pos noforce)))
1610 (defun follow-pos-visible-in-window-p (&optional pos window partially)
1611 "Return non-nil if position POS is currently on the frame in one of
1612 the windows in the Follow Mode group which includes WINDOW.
1614 WINDOW must be a live window and defaults to the selected one.
1616 Return nil if that position is scrolled vertically out of view. If a
1617 character is only partially visible, nil is returned, unless the
1618 optional argument PARTIALLY is non-nil. If POS is only out of view
1619 because of horizontal scrolling, return non-nil. If POS is t, it
1620 specifies the position of the last visible glyph in WINDOW. POS
1621 defaults to point in WINDOW; WINDOW defaults to the selected window.
1623 If POS is visible, return t if PARTIALLY is nil; if PARTIALLY is non-nil,
1624 the return value is a list of 2 or 6 elements (X Y [RTOP RBOT ROWH VPOS]),
1625 where X and Y are the pixel coordinates relative to the top left corner
1626 of the actual window containing it. The remaining elements are
1627 omitted if the character after POS is fully visible; otherwise, RTOP
1628 and RBOT are the number of pixels off-window at the top and bottom of
1629 the screen line (\"row\") containing POS, ROWH is the visible height
1630 of that row, and VPOS is the row number \(zero-based)."
1631 (let* ((windows (follow-all-followers window))
1632 (last (car (last windows))))
1633 (when follow-start-end-invalid
1634 (follow-redisplay windows (car windows)))
1635 (let* ((cache (follow-windows-start-end windows))
1636 (last-elt (car (last cache)))
1637 our-pos pertinent-elt)
1638 (setq pertinent-elt
1639 (if (eq pos t)
1640 last-elt
1641 (setq our-pos (or pos (point)))
1642 (catch 'element
1643 (while cache
1644 (when (< our-pos (nth 2 (car cache)))
1645 (throw 'element (car cache)))
1646 (setq cache (cdr cache)))
1647 last-elt)))
1648 (pos-visible-in-window-p our-pos (car pertinent-elt) partially))))
1650 (defun follow-move-to-window-line (arg)
1651 "Position point relative to the Follow mode group containing the selected window.
1652 ARG nil means position point at center of the window group.
1653 Else, ARG specifies vertical position within the window group;
1654 zero means top of the first window in the group, negative means
1655 relative to bottom of the last window in the group."
1656 (let* ((windows (follow-all-followers))
1657 (start-end (follow-windows-start-end windows))
1658 (rev-start-end (reverse start-end))
1659 (lines 0)
1660 middle-window elt count)
1661 (select-window
1662 (cond
1663 ((null arg)
1664 (setq rev-start-end (nthcdr (/ (length windows) 2) rev-start-end))
1665 (prog1 (car (car rev-start-end))
1666 (while (setq rev-start-end (cdr rev-start-end))
1667 (setq elt (car rev-start-end)
1668 count (count-screen-lines (cadr elt) (nth 2 elt)
1669 nil (car elt))
1670 lines (+ lines count)))))
1671 ((>= arg 0)
1672 (while (and (cdr start-end)
1673 (progn
1674 (setq elt (car start-end)
1675 count (count-screen-lines (cadr elt) (nth 2 elt)
1676 nil (car elt)))
1677 (>= arg count)))
1678 (setq arg (- arg count)
1679 lines (+ lines count)
1680 start-end (cdr start-end)))
1681 (car (car start-end)))
1682 (t ; (< arg 0)
1683 (while (and (cadr rev-start-end)
1684 (progn
1685 (setq elt (car rev-start-end)
1686 count (count-lines (cadr elt) (nth 2 elt)))
1687 (<= arg (- count))))
1688 (setq arg (+ arg count)
1689 rev-start-end (cdr rev-start-end)))
1690 (prog1 (car (car rev-start-end))
1691 (while (setq rev-start-end (cdr rev-start-end))
1692 (setq elt (car rev-start-end)
1693 count (count-screen-lines (cadr elt) (nth 2 elt)
1694 nil (car elt))
1695 lines (+ lines count)))))))
1696 (+ lines (move-to-window-line arg))))
1698 ;;; Profile support
1700 ;; The following (non-evaluated) section can be used to
1701 ;; profile this package using `elp'.
1703 ;; Invalid indentation on purpose!
1705 ;; (setq elp-function-list
1706 ;; '(window-end
1707 ;; vertical-motion
1708 ;; follow-mode
1709 ;; follow-all-followers
1710 ;; follow-split-followers
1711 ;; follow-redisplay
1712 ;; follow-estimate-first-window-start
1713 ;; follow-calculate-first-window-start-from-above
1714 ;; follow-calculate-first-window-start-from-below
1715 ;; follow-calc-win-end
1716 ;; follow-calc-win-start
1717 ;; follow-pos-visible
1718 ;; follow-windows-start-end
1719 ;; follow-cache-valid-p
1720 ;; follow-select-if-visible
1721 ;; follow-select-if-visible-from-first
1722 ;; follow-windows-aligned-p
1723 ;; follow-point-visible-all-windows-p
1724 ;; follow-avoid-tail-recenter
1725 ;; follow-update-window-start
1726 ;; follow-post-command-hook))
1728 (provide 'follow)
1730 ;; /------------------------------------------------------------------------\
1731 ;; | "I [..] am rarely happier then when spending an entire day programming |
1732 ;; | my computer to perform automatically a task that it would otherwise |
1733 ;; | take me a good ten seconds to do by hand. Ten seconds, I tell myself, |
1734 ;; | is ten seconds. Time is valuable and ten seconds' worth of it is well |
1735 ;; | worth the investment of a day's happy activity working out a way to |
1736 ;; | save it". -- Douglas Adams, "Last Chance to See" |
1737 ;; \------------------------------------------------------------------------/
1739 ;;; follow.el ends here