1 ;;; follow.el --- synchronize windows showing the same buffer
3 ;; Copyright (C) 1995, 1996, 1997, 1999, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Anders Lindgren <andersl@andersl.com>
7 ;; Maintainer: FSF (Anders' email bounces, Sep 2005)
9 ;; Keywords: display, window, minor-mode, convenience
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
30 ;; `Follow mode' is a minor mode for Emacs and XEmacs that
31 ;; combines windows into one tall virtual window.
33 ;; The feeling of a "virtual window" has been accomplished by the use
34 ;; of two major techniques:
36 ;; * The windows always display adjacent sections of the buffer.
37 ;; This means that whenever one window is moved, all the
38 ;; others will follow. (Hence the name Follow mode.)
40 ;; * Should the point (cursor) end up outside a window, another
41 ;; window displaying that point is selected, if possible. This
42 ;; makes it possible to walk between windows using normal cursor
45 ;; Follow mode comes to its prime when a large screen and two
46 ;; side-by-side window are used. The user can, with the help of Follow
47 ;; mode, use two full-height windows as though they are one.
48 ;; Imagine yourself editing a large function, or section of text,
49 ;; and being able to use 144 lines instead of the normal 72... (your
52 ;; To test this package, make sure `follow' is loaded, or will be
53 ;; autoloaded when activated (see below). Then do the following:
55 ;; * Find your favorite file (preferably a long one).
57 ;; * Resize Emacs so that it will be wide enough for two full size
58 ;; columns. Delete the other windows and split the window with
59 ;; the commands `C-x 1 C-x 3'.
61 ;; * Give the command:
62 ;; M-x follow-mode <RETURN>
64 ;; * Now the display should look something like (assuming the text "71"
67 ;; +----------+----------+
74 ;; +----------+----------+
76 ;; As you can see, the right-hand window starts at line 73, the line
77 ;; immediately below the end of the left-hand window. As long as
78 ;; `follow-mode' is active, the two windows will follow each other!
80 ;; * Play around and enjoy! Scroll one window and watch the other.
81 ;; Jump to the beginning or end. Press `Cursor down' at the last
82 ;; line of the left-hand window. Enter new lines into the
83 ;; text. Enter long lines spanning several lines, or several
86 ;; * Should you find `Follow' mode annoying, just type
87 ;; M-x follow-mode <RETURN>
91 ;; The command `follow-delete-other-windows-and-split' maximises the
92 ;; visible area of the current buffer.
94 ;; I recommend adding it, and `follow-mode', to hotkeys in the global
95 ;; key map. To do so, add the following lines (replacing `[f7]' and
96 ;; `[f8]' with your favorite keys) to the init file:
98 ;; (global-set-key [f8] 'follow-mode)
99 ;; (global-set-key [f7] 'follow-delete-other-windows-and-split)
102 ;; There exist two system variables that control the appearence of
103 ;; lines wider than the window containing them. The default is to
104 ;; truncate long lines whenever a window isn't as wide as the frame.
106 ;; To make sure lines are never truncated, please place the following
107 ;; lines in your init file:
109 ;; (setq truncate-lines nil)
110 ;; (setq truncate-partial-width-windows nil)
113 ;; Since the display of XEmacs is pixel-oriented, a line could be
114 ;; clipped in half at the bottom of the window.
116 ;; To make XEmacs avoid clipping (normal) lines, please place the
117 ;; following line in your init-file:
119 ;; (setq pixel-vertical-clip-threshold 30)
122 ;; The correct way to cofigurate Follow mode, or any other mode for
123 ;; that matter, is to create one or more functions that do
124 ;; whatever you would like to do. These functions are then added to
127 ;; When `Follow' mode is activated, functions stored in the hook
128 ;; `follow-mode-hook' are called. When it is deactivated
129 ;; `follow-mode-off-hook' is run.
131 ;; The keymap `follow-key-map' contains key bindings activated by
135 ;; (add-hook 'follow-mode-hook 'my-follow-mode-hook)
137 ;; (defun my-follow-mode-hook ()
138 ;; (define-key follow-mode-map "\C-ca" 'your-favorite-function)
139 ;; (define-key follow-mode-map "\C-cb" 'another-function))
144 ;; To activate, issue the command "M-x follow-mode"
145 ;; and press Return. To deactivate, do it again.
147 ;; The following is a list of commands useful when follow-mode is active.
149 ;; follow-scroll-up C-c . C-v
150 ;; Scroll text in a Follow mode window chain up.
152 ;; follow-scroll-down C-c . v
153 ;; Like `follow-scroll-up', but in the other direction.
155 ;; follow-delete-other-windows-and-split C-c . 1
156 ;; Maximize the visible area of the current buffer,
157 ;; and enter Follow mode. This is a very convenient
158 ;; way to start Follow mode, hence we recomend that
159 ;; this command be added to the global keymap.
161 ;; follow-recenter C-c . C-l
162 ;; Place the point in the center of the middle window,
163 ;; or a specified number of lines from either top or bottom.
165 ;; follow-switch-to-buffer C-c . b
166 ;; Switch buffer in all windows displaying the current buffer
169 ;; follow-switch-to-buffer-all C-c . C-b
170 ;; Switch buffer in all windows in the selected frame.
172 ;; follow-switch-to-current-buffer-all
173 ;; Show the current buffer in all windows on the current
174 ;; frame and turn on `follow-mode'.
176 ;; follow-first-window C-c . <
177 ;; Select the first window in the frame showing the same buffer.
179 ;; follow-last-window C-c . >
180 ;; Select the last window in the frame showing the same buffer.
182 ;; follow-next-window C-c . n
183 ;; Select the next window in the frame showing the same buffer.
185 ;; follow-previous-window C-c . p
186 ;; Select the previous window showing the same buffer.
189 ;; Well, it seems ok, but what if I really want to look at two different
190 ;; positions in the text? Here are two simple methods to use:
192 ;; 1) Use multiple frames; `follow' mode only affects windows displayed
193 ;; in the same frame. (My apoligies to you who can't use frames.)
195 ;; 2) Bind `follow-mode' to key so you can turn it off whenever
196 ;; you want to view two locations. Of course, `follow' mode can
197 ;; be reactivated by hitting the same key again.
199 ;; Example from my ~/.emacs:
200 ;; (global-set-key [f8] 'follow-mode)
205 ;; In an ideal world, follow mode would have been implemented in the
206 ;; kernel of the display routines, making sure that the windows (using
207 ;; follow mode) ALWAYS are aligned. On planet Earth, however, we must
208 ;; accept a solution where we ALMOST ALWAYS can make sure that the
209 ;; windows are aligned.
211 ;; Follow mode does this in three places:
212 ;; 1) After each user command.
213 ;; 2) After a process output has been perfomed.
214 ;; 3) When a scrollbar has been moved.
216 ;; This will cover most situations. (Let me know if there are other
217 ;; situations that should be covered.)
219 ;; Note that only the selected window is checked, for the reason of
220 ;; efficiency and code complexity. (I.e. it is possible to make a
221 ;; non-selected windows unaligned. It will, however, pop right back
222 ;; when it is selected.)
230 ;; Make the compiler shut up!
231 ;; There are two strategies:
232 ;; 1) Shut warnings off completely.
233 ;; 2) Handle each warning separately.
235 ;; Since I would like to see real errors, I've selected the latter
238 ;; The problem with undefined variables and functions has been solved
239 ;; by using `set', `symbol-value' and `symbol-function' rather than
240 ;; `setq' and direct references to variables and functions.
243 ;; (if (boundp 'foo) ... (symbol-value 'foo) )
244 ;; (set 'foo ...) <-- XEmacs doesn't fall for this one.
245 ;; (funcall (symbol-function 'set) 'bar ...)
247 ;; Note: When this file is interpreted, `eval-when-compile' is
248 ;; evaluted. Since it doesn't hurt to evaluate it, but it is a bit
249 ;; annoying, we test if the byte-compiler has been loaded. This can,
250 ;; of course, lead to some occasional unintended evaluation...
252 ;; Should someone come up with a better solution, please let me
258 (if (or (featurep 'bytecomp
)
259 (featurep 'byte-compile
))
260 (cond ((featurep 'xemacs
)
261 ;; Make XEmacs shut up! I'm using standard Emacs
262 ;; functions, they are NOT obsolete!
263 (if (eq (get 'force-mode-line-update
'byte-compile
)
264 'byte-compile-obsolete
)
265 (put 'force-mode-line-update
'byte-compile
'nil
))
266 (if (eq (get 'frame-first-window
'byte-compile
)
267 'byte-compile-obsolete
)
268 (put 'frame-first-window
'byte-compile
'nil
))))))
274 "Synchronize windows showing the same buffer."
279 (defcustom follow-mode-hook nil
280 "Normal hook run by `follow-mode'."
284 (defcustom follow-mode-off-hook nil
285 "Hooks to run when Follow mode is turned off."
288 (make-obsolete-variable 'follow-mode-off-hook
'follow-mode-hook
"22.2")
292 ;; Define keys for the follow-mode minor mode map and replace some
293 ;; functions in the global map. All `follow' mode special functions
294 ;; can be found on (the somewhat cumbersome) "C-c . <key>"
295 ;; (Control-C dot <key>). (As of Emacs 19.29 the keys
296 ;; C-c <punctuation character> are reserved for minor modes.)
298 ;; To change the prefix, redefine `follow-mode-prefix' before
299 ;; `follow' is loaded, or see the section on `follow-mode-hook'
300 ;; above for an example of how to bind the keys the way you like.
302 ;; Please note that the keymap is defined the first time this file is
303 ;; loaded. Also note that the only valid way to manipulate the
304 ;; keymap is to use `define-key'. Don't change it using `setq' or
307 (defcustom follow-mode-prefix
"\C-c."
308 "Prefix key to use for follow commands in Follow mode.
309 The value of this variable is checked as part of loading Follow mode.
310 After that, changing the prefix key requires manipulating keymaps."
314 (defvar follow-mode-map
315 (let ((mainmap (make-sparse-keymap))
316 (map (make-sparse-keymap)))
317 (define-key map
"\C-v" 'follow-scroll-up
)
318 (define-key map
"\M-v" 'follow-scroll-down
)
319 (define-key map
"v" 'follow-scroll-down
)
320 (define-key map
"1" 'follow-delete-other-windows-and-split
)
321 (define-key map
"b" 'follow-switch-to-buffer
)
322 (define-key map
"\C-b" 'follow-switch-to-buffer-all
)
323 (define-key map
"\C-l" 'follow-recenter
)
324 (define-key map
"<" 'follow-first-window
)
325 (define-key map
">" 'follow-last-window
)
326 (define-key map
"n" 'follow-next-window
)
327 (define-key map
"p" 'follow-previous-window
)
329 (define-key mainmap follow-mode-prefix map
)
331 ;; Replace the standard `end-of-buffer', when in Follow mode. (I
332 ;; don't see the point in trying to replace every function that
333 ;; could be enhanced in Follow mode. End-of-buffer is a special
334 ;; case since it is very simple to define and it greatly enhances
335 ;; the look and feel of Follow mode.)
336 (define-key mainmap
[remap end-of-buffer
] 'follow-end-of-buffer
)
339 "Minor mode keymap for Follow mode.")
341 ;; When the mode is not activated, only one item is visible to activate
343 (defun follow-menu-filter (menu)
344 (if (bound-and-true-p follow-mode
)
346 '(["Follow mode" follow-mode
347 :style toggle
:selected follow-mode
])))
349 ;; If there is a `tools' menu, we use it. However, we can't add a
350 ;; minor-mode specific item to it (it's broken), so we make the
351 ;; contents ghosted when not in use, and add ourselves to the
353 (easy-menu-add-item nil
'("Tools")
355 ;; The Emacs code used to just grey out operations when follow-mode was
356 ;; not enabled, whereas the XEmacs code used to remove it altogether.
357 ;; Not sure which is preferable, but clearly the preference should not
358 ;; depend on the flavor.
359 :filter follow-menu-filter
360 ["Scroll Up" follow-scroll-up follow-mode
]
361 ["Scroll Down" follow-scroll-down follow-mode
]
363 ["Delete Other Windows and Split" follow-delete-other-windows-and-split follow-mode
]
365 ["Switch To Buffer" follow-switch-to-buffer follow-mode
]
366 ["Switch To Buffer (all windows)" follow-switch-to-buffer-all follow-mode
]
368 ["First Window" follow-first-window follow-mode
]
369 ["Last Window" follow-last-window follow-mode
]
370 ["Next Window" follow-next-window follow-mode
]
371 ["Previous Window" follow-previous-window follow-mode
]
373 ["Recenter" follow-recenter follow-mode
]
375 ["Follow mode" follow-mode
:style toggle
:selected follow-mode
]))
379 (defcustom follow-mode-line-text
" Follow"
380 "Text shown in the mode line when Follow mode is active.
381 Defaults to \" Follow\". Examples of other values
382 are \" Fw\", or simply \"\"."
386 (defcustom follow-auto nil
387 "Non-nil activates Follow mode whenever a file is loaded."
391 (defcustom follow-intercept-processes
(fboundp 'start-process
)
392 "When non-nil, Follow mode will monitor process output."
396 (defvar follow-avoid-tail-recenter-p
(not (featurep 'xemacs
))
397 "*When non-nil, patch Emacs so that tail windows won't be recentered.
399 A \"tail window\" is a window that displays only the end of
400 the buffer. Normally it is practical for the user that empty
401 windows are recentered automatically. However, when using
402 Follow mode it breaks the display when the end is displayed
403 in a window \"above\" the last window. This is for
404 example the case when displaying a short page in info.
406 Must be set before Follow mode is loaded.
408 Please note that it is not possible to fully prevent Emacs from
409 recentering empty windows. Please report if you find a repeatable
410 situation in which Emacs recenters empty windows.
412 XEmacs, as of 19.12, does not recenter windows, good!")
414 (defvar follow-cache-command-list
415 '(next-line previous-line forward-char backward-char
)
416 "List of commands that don't require recalculation.
418 In order to be able to use the cache, a command should not change the
419 contents of the buffer, nor should it change selected window or current
422 The commands in this list are checked at load time.
424 To mark other commands as suitable for caching, set the symbol
425 property `follow-mode-use-cache' to non-nil.")
427 (defvar follow-debug nil
428 "*Non-nil when debugging Follow mode.")
431 ;; Internal variables:
433 (defvar follow-internal-force-redisplay nil
434 "True when Follow mode should redisplay the windows.")
436 (defvar follow-process-filter-alist
'()
437 "The original filters for processes intercepted by Follow mode.")
439 (defvar follow-active-menu nil
440 "The menu visible when Follow mode is active.")
442 (defvar follow-deactive-menu nil
443 "The menu visible when Follow mode is deactivated.")
445 (defvar follow-inside-post-command-hook nil
446 "Non-nil when inside Follow modes `post-command-hook'.
447 Used by `follow-window-size-change'.")
449 (defvar follow-windows-start-end-cache nil
450 "Cache used by `follow-window-start-end'.")
455 ;; This inline function must be as small as possible!
456 ;; Maybe we should define a macro that expands to nil if
457 ;; the variable is not set.
459 (defsubst follow-debug-message
(&rest args
)
460 "Like message, but only active when `follow-debug' is non-nil."
461 (if (and (boundp 'follow-debug
) follow-debug
)
462 (apply 'message args
)))
467 (dolist (cmd follow-cache-command-list
)
468 (put cmd
'follow-mode-use-cache t
))
475 (defun turn-on-follow-mode ()
476 "Turn on Follow mode. Please see the function `follow-mode'."
481 (defun turn-off-follow-mode ()
482 "Turn off Follow mode. Please see the function `follow-mode'."
485 (put 'follow-mode
'permanent-local t
)
487 (define-minor-mode follow-mode
488 "Minor mode that combines windows into one tall virtual window.
490 The feeling of a \"virtual window\" has been accomplished by the use
491 of two major techniques:
493 * The windows always displays adjacent sections of the buffer.
494 This means that whenever one window is moved, all the
495 others will follow. (Hence the name Follow mode.)
497 * Should the point (cursor) end up outside a window, another
498 window displaying that point is selected, if possible. This
499 makes it possible to walk between windows using normal cursor
502 Follow mode comes to its prime when used on a large screen and two
503 side-by-side windows are used. The user can, with the help of Follow
504 mode, use two full-height windows as though they would have been
505 one. Imagine yourself editing a large function, or section of text,
506 and being able to use 144 lines instead of the normal 72... (your
509 To split one large window into two side-by-side windows, the commands
510 `\\[split-window-horizontally]' or \
511 `M-x follow-delete-other-windows-and-split' can be used.
513 Only windows displayed in the same frame follow each other.
515 If the variable `follow-intercept-processes' is non-nil, Follow mode
516 will listen to the output of processes and redisplay accordingly.
517 \(This is the default.)
519 This command runs the normal hook `follow-mode-hook'.
521 Keys specific to Follow mode:
523 :keymap follow-mode-map
524 (when (and follow-mode follow-intercept-processes
)
525 (follow-intercept-process-output))
526 (cond (follow-mode ; On
527 ;; XEmacs: If this is non-nil, the window will scroll before
528 ;; the point will have a chance to get into the next window.
529 (when (boundp 'scroll-on-clipped-lines
)
530 (setq scroll-on-clipped-lines nil
))
531 (force-mode-line-update)
532 (add-hook 'post-command-hook
'follow-post-command-hook t
))
534 ((not follow-mode
) ; Off
535 (force-mode-line-update))))
540 ;; This will start follow-mode whenever a new file is loaded, if
541 ;; the variable `follow-auto' is non-nil.
543 (add-hook 'find-file-hook
'follow-find-file-hook t
)
545 (defun follow-find-file-hook ()
546 "Find-file hook for Follow mode. See the variable `follow-auto'."
547 (if follow-auto
(follow-mode t
)))
554 ;;; User functions usable when in Follow mode.
559 ;; `scroll-up' and `-down', but for windows in Follow mode.
561 ;; Almost like the real thing, excpet when the cursor ends up outside
562 ;; the top or bottom... In our case however, we end up outside the
563 ;; window and hence we are recenterd. Should we let `recenter' handle
564 ;; the point position we would never leave the selected window. To do
565 ;; it ourselves we would need to do our own redisplay, which is easier
566 ;; said than done. (Why didn't I do a real display abstraction from
569 ;; We must sometimes set `follow-internal-force-redisplay', otherwise
570 ;; our post-command-hook will move our windows back into the old
571 ;; position... (This would also be corrected if we would have had a
572 ;; good redisplay abstraction.)
574 (defun follow-scroll-up (&optional arg
)
575 "Scroll text in a Follow mode window chain up.
577 If called with no ARG, the `next-screen-context-lines' last lines of
578 the bottom window in the chain will be visible in the top window.
580 If called with an argument, scroll ARG lines up.
581 Negative ARG means scroll downward.
583 Works like `scroll-up' when not in Follow mode."
585 (cond ((not (and (boundp 'follow-mode
) follow-mode
))
588 (save-excursion (scroll-up arg
))
589 (setq follow-internal-force-redisplay t
))
591 (let* ((windows (follow-all-followers))
592 (end (window-end (car (reverse windows
)))))
593 (if (eq end
(point-max))
594 (signal 'end-of-buffer nil
)
595 (select-window (car windows
))
596 ;; `window-end' might return nil.
599 (vertical-motion (- next-screen-context-lines
))
600 (set-window-start (car windows
) (point)))))))
603 (defun follow-scroll-down (&optional arg
)
604 "Scroll text in a Follow mode window chain down.
606 If called with no ARG, the `next-screen-context-lines' top lines of
607 the top window in the chain will be visible in the bottom window.
609 If called with an argument, scroll ARG lines down.
610 Negative ARG means scroll upward.
612 Works like `scroll-up' when not in Follow mode."
614 (cond ((not (and (boundp 'follow-mode
) follow-mode
))
617 (save-excursion (scroll-down arg
)))
619 (let* ((windows (follow-all-followers))
620 (win (car (reverse windows
)))
621 (start (window-start (car windows
))))
622 (if (eq start
(point-min))
623 (signal 'beginning-of-buffer nil
)
626 (vertical-motion (- (- (window-height win
)
628 next-screen-context-lines
)))
629 (set-window-start win
(point))
631 (vertical-motion (- next-screen-context-lines
1))
632 (setq follow-internal-force-redisplay t
))))))
638 (defun follow-delete-other-windows-and-split (&optional arg
)
639 "Create two side by side windows and enter Follow mode.
641 Execute this command to display as much as possible of the text
642 in the selected window. All other windows, in the current
643 frame, are deleted and the selected window is split in two
644 side-by-side windows. Follow mode is activated, hence the
645 two windows always will display two successive pages.
646 \(If one window is moved, the other one will follow.)
648 If ARG is positive, the leftmost window is selected. If negative,
649 the rightmost is selected. If ARG is nil, the leftmost window is
650 selected if the original window is the first one in the frame.
652 To bind this command to a hotkey, place the following line
653 in your `~/.emacs' file, replacing [f7] by your favourite key:
654 (global-set-key [f7] 'follow-delete-other-windows-and-split)"
656 (let ((other (or (and (null arg
)
657 (not (eq (selected-window)
658 (frame-first-window (selected-frame)))))
660 (< (prefix-numeric-value arg
) 0))))
661 (start (window-start)))
662 (delete-other-windows)
663 (split-window-horizontally)
667 (set-window-start (selected-window) start
)
668 (setq follow-internal-force-redisplay t
)))
671 (defun follow-switch-to-buffer (buffer)
672 "Show BUFFER in all windows in the current Follow mode window chain."
673 (interactive "BSwitch to Buffer: ")
674 (let ((orig-window (selected-window))
675 (windows (follow-all-followers)))
677 (select-window (car windows
))
678 (switch-to-buffer buffer
)
679 (setq windows
(cdr windows
)))
680 (select-window orig-window
)))
683 (defun follow-switch-to-buffer-all (&optional buffer
)
684 "Show BUFFER in all windows on this frame.
685 Defaults to current buffer."
686 (interactive (list (read-buffer "Switch to Buffer: "
688 (or buffer
(setq buffer
(current-buffer)))
689 (let ((orig-window (selected-window)))
694 (switch-to-buffer buffer
))))
695 (select-window orig-window
)
699 (defun follow-switch-to-current-buffer-all ()
700 "Show current buffer in all windows on this frame, and enter Follow mode.
702 To bind this command to a hotkey place the following line
703 in your `~/.emacs' file:
704 (global-set-key [f7] 'follow-switch-to-current-buffer-all)"
706 (or (and (boundp 'follow-mode
) follow-mode
)
708 (follow-switch-to-buffer-all))
713 ;; Note, these functions are not very useful, at least not unless you
714 ;; rebind the rather cumbersome key sequence `C-c . p'.
716 (defun follow-next-window ()
717 "Select the next window showing the same buffer."
719 (let ((succ (cdr (follow-split-followers (follow-all-followers)))))
721 (select-window (car succ
))
722 (error "%s" "No more windows"))))
725 (defun follow-previous-window ()
726 "Select the previous window showing the same buffer."
728 (let ((pred (car (follow-split-followers (follow-all-followers)))))
730 (select-window (car pred
))
731 (error "%s" "No more windows"))))
734 (defun follow-first-window ()
735 "Select the first window in the frame showing the same buffer."
737 (select-window (car (follow-all-followers))))
740 (defun follow-last-window ()
741 "Select the last window in the frame showing the same buffer."
743 (select-window (car (reverse (follow-all-followers)))))
748 (defun follow-recenter (&optional arg
)
749 "Recenter the middle window around point.
750 Rearrange all other windows around the middle window.
752 With a positive argument, place the current line ARG lines
753 from the top. With a negative argument, place it -ARG lines
758 (arg (prefix-numeric-value arg
)))
760 ;; Recenter relative to the top.
762 (follow-first-window)
765 ;; Recenter relative to the bottom.
769 ;; Otherwise, our post-command-hook will move the window
771 (setq follow-internal-force-redisplay t
)))
772 ;; Recenter in the middle.
773 (let* ((dest (point))
774 (windows (follow-all-followers))
775 (win (nth (/ (- (length windows
) 1) 2) windows
)))
779 ;;(setq follow-internal-force-redisplay t)
783 (defun follow-redraw ()
784 "Arrange windows displaying the same buffer in successor order.
785 This function can be called even if the buffer is not in Follow mode.
787 Hopefully, there should be no reason to call this function when in
788 Follow mode since the windows should always be aligned."
796 (defun follow-end-of-buffer (&optional arg
)
797 "Move point to the end of the buffer, Follow mode style.
799 If the end is not visible, it will be displayed in the last possible
800 window in the Follow mode window chain.
802 The mark is left at the previous position. With arg N, put point N/10
803 of the way from the true end."
805 (let ((followers (follow-all-followers))
808 (select-window (car (reverse followers
))))
809 ((follow-select-if-end-visible
810 (follow-windows-start-end followers
)))
812 (select-window (car (reverse followers
)))))
815 (end-of-buffer arg
))))
823 ;;;; The display routines
825 ;;{{{ Information gathering functions
827 (defun follow-all-followers (&optional testwin
)
828 "Return all windows displaying the same buffer as the TESTWIN.
829 The list contains only windows displayed in the same frame as TESTWIN.
830 If TESTWIN is nil the selected window is used."
831 (or (window-live-p testwin
)
832 (setq testwin
(selected-window)))
833 (let* ((top (frame-first-window (window-frame testwin
)))
837 (buffer (window-buffer testwin
)))
838 (while (and (not done
) win
)
839 (if (eq (window-buffer win
) buffer
)
840 (setq windows
(cons win windows
)))
841 (setq win
(next-window win
'not
))
847 (defun follow-split-followers (windows &optional win
)
848 "Split the WINDOWS into the sets: predecessors and successors.
849 Return `(PRED . SUCC)' where `PRED' and `SUCC' are ordered starting
850 from the selected window."
852 (setq win
(selected-window)))
854 (while (not (eq (car windows
) win
))
855 (setq pred
(cons (car windows
) pred
))
856 (setq windows
(cdr windows
)))
857 (cons pred
(cdr windows
))))
860 ;; This function is optimized function for speed!
862 (defun follow-calc-win-end (&optional win
)
863 "Calculate the presumed window end for WIN.
865 Actually, the position returned is the start of the next
866 window, normally is the end plus one.
868 If WIN is nil, the selected window is used.
870 Returns (end-pos end-of-buffer-p)"
871 (if (featurep 'xemacs
)
872 ;; XEmacs can calculate the end of the window by using
873 ;; the 'guarantee options. GOOD!
874 (let ((end (window-end win t
)))
875 (if (= end
(funcall (symbol-function 'point-max
)
876 (window-buffer win
)))
878 (list (+ end
1) nil
)))
879 ;; Emacs: We have to calculate the end by ourselves.
880 ;; This code works on both XEmacs and Emacs, but now
881 ;; that XEmacs has got custom-written code, this could
882 ;; be optimized for Emacs.
883 (let ((orig-win (and win
(selected-window)))
886 (if win
(select-window win
))
889 (goto-char (window-start))
890 (setq height
(- (window-height) 1))
893 (not (= height
(vertical-motion height
)))
895 ;; Fix a mis-feature in `vertical-motion':
896 ;; The start of the window is assumed to
897 ;; coinside with the start of a line.
898 (narrow-to-region (point) (point-max))
899 (not (= height
(vertical-motion height
))))))
900 (list (point) buffer-end-p
))
902 (select-window orig-win
))))))
905 ;; Can't use `save-window-excursion' since it triggers a redraw.
906 (defun follow-calc-win-start (windows pos win
)
907 "Calculate where WIN will start if the first in WINDOWS start at POS.
909 If WIN is nil the point below all windows is returned."
911 (while (and windows
(not (eq (car windows
) win
)))
912 (setq start
(window-start (car windows
)))
913 (set-window-start (car windows
) pos
'noforce
)
914 (setq pos
(car (inline (follow-calc-win-end (car windows
)))))
915 (set-window-start (car windows
) start
'noforce
)
916 (setq windows
(cdr windows
)))
920 ;; The result from `follow-windows-start-end' is cached when using
921 ;; a handful simple commands, like cursor movement commands.
923 (defsubst follow-cache-valid-p
(windows)
924 "Test if the cached value of `follow-windows-start-end' can be used.
925 Note that this handles the case when the cache has been set to nil."
927 (cache follow-windows-start-end-cache
))
928 (while (and res windows cache
)
929 (setq res
(and (eq (car windows
)
931 (eq (window-start (car windows
))
932 (car (cdr (car cache
))))))
933 (setq windows
(cdr windows
))
934 (setq cache
(cdr cache
)))
935 (and res
(null windows
) (null cache
))))
938 (defsubst follow-invalidate-cache
()
939 "Force `follow-windows-start-end' to recalculate the end of the window."
940 (setq follow-windows-start-end-cache nil
))
943 ;; Build a list of windows and their start and end positions.
944 ;; Useful to avoid calculating start/end position whenever they are needed.
945 ;; The list has the format:
946 ;; ((Win Start End End-of-buffer-visible-p) ...)
948 ;; Used to have a `save-window-excursion', but it obviously triggered
949 ;; redraws of the display. Check if I used it for anything.
952 (defun follow-windows-start-end (windows)
953 "Builds a list of (WIN START END BUFFER-END-P) for every window in WINDOWS."
954 (if (follow-cache-valid-p windows
)
955 follow-windows-start-end-cache
956 (let ((win-start-end '())
957 (orig-win (selected-window)))
959 (select-window (car windows
))
961 (cons (cons (car windows
)
963 (follow-calc-win-end)))
965 (setq windows
(cdr windows
)))
966 (select-window orig-win
)
967 (setq follow-windows-start-end-cache
(nreverse win-start-end
))
968 follow-windows-start-end-cache
)))
971 (defsubst follow-pos-visible
(pos win win-start-end
)
972 "Non-nil when POS is visible in WIN."
973 (let ((wstart-wend-bend (cdr (assq win win-start-end
))))
974 (and (>= pos
(car wstart-wend-bend
))
975 (or (< pos
(car (cdr wstart-wend-bend
)))
976 (nth 2 wstart-wend-bend
)))))
979 ;; By `aligned' we mean that for all adjecent windows, the end of the
980 ;; first is equal with the start of the successor. The first window
981 ;; should start at a full screen line.
983 (defsubst follow-windows-aligned-p
(win-start-end)
984 "Non-nil if the follower windows are aligned."
987 (goto-char (window-start (car (car win-start-end
))))
990 (vertical-motion 0 (car (car win-start-end
)))
991 (setq res
(eq (point) (window-start (car (car win-start-end
)))))))
992 (while (and res
(cdr win-start-end
))
993 ;; At least two followers left
994 (setq res
(eq (car (cdr (cdr (car win-start-end
))))
995 (car (cdr (car (cdr win-start-end
))))))
996 (setq win-start-end
(cdr win-start-end
)))
1000 ;; Check if the point is visible in all windows. (So that
1001 ;; no one will be recentered.)
1003 (defun follow-point-visible-all-windows-p (win-start-end)
1004 "Non-nil when the `window-point' is visible in all windows."
1006 (while (and res win-start-end
)
1007 (setq res
(follow-pos-visible (window-point (car (car win-start-end
)))
1008 (car (car win-start-end
))
1010 (setq win-start-end
(cdr win-start-end
)))
1014 ;; Make sure WIN always starts at the beginning of an whole screen
1015 ;; line. If WIN is not aligned the start is updated which probably
1016 ;; will lead to a redisplay of the screen later on.
1018 ;; This is used with the first window in a follow chain. The reason
1019 ;; is that we want to detect that the point is outside the window.
1020 ;; (Without the update, the start of the window will move as the
1021 ;; user presses BackSpace, and the other window redisplay routines
1022 ;; will move the start of the window in the wrong direction.)
1024 (defun follow-update-window-start (win)
1025 "Make sure that the start of WIN starts at a full screen line."
1027 (goto-char (window-start win
))
1030 (vertical-motion 0 win
)
1031 (if (eq (point) (window-start win
))
1033 (vertical-motion 1 win
)
1034 (set-window-start win
(point) 'noforce
)))))
1037 ;;{{{ Selection functions
1039 ;; Make a window in WINDOWS selected if it currently
1040 ;; is displaying the position DEST.
1042 ;; We don't select a window if it just has been moved.
1044 (defun follow-select-if-visible (dest win-start-end
)
1045 "Select and return a window, if DEST is visible in it.
1046 Return the selected window."
1048 (while (and (not win
) win-start-end
)
1049 ;; Don't select a window that was just moved. This makes it
1050 ;; possible to later select the last window after a `end-of-buffer'
1052 (if (follow-pos-visible dest
(car (car win-start-end
)) win-start-end
)
1054 (setq win
(car (car win-start-end
)))
1055 (select-window win
)))
1056 (setq win-start-end
(cdr win-start-end
)))
1060 ;; Lets select a window showing the end. Make sure we only select it if it
1061 ;; it wasn't just moved here. (i.e. M-> shall not unconditionally place
1062 ;; the point in the selected window.)
1064 ;; (Compability cludge: in Emacs `window-end' is equal to `point-max';
1065 ;; in XEmacs, it is equal to `point-max + 1'. Should I really bother
1066 ;; checking `window-end' now when I check `end-of-buffer' explicitly?)
1068 (defun follow-select-if-end-visible (win-start-end)
1069 "Select and return a window, if end is visible in it."
1071 (while (and (not win
) win-start-end
)
1072 ;; Don't select a window that was just moved. This makes it
1073 ;; possible to later select the last window after a `end-of-buffer'
1075 (if (and (eq (point-max) (nth 2 (car win-start-end
)))
1076 (nth 3 (car win-start-end
))
1077 ;; `window-end' might return nil.
1078 (let ((end (window-end (car (car win-start-end
)))))
1080 (eq (point-max) (min (point-max) end
)))))
1082 (setq win
(car (car win-start-end
)))
1083 (select-window win
)))
1084 (setq win-start-end
(cdr win-start-end
)))
1088 ;; Select a window that will display the point if the windows would
1089 ;; be redisplayed with the first window fixed. This is useful for
1090 ;; example when the user has pressed return at the bottom of a window
1091 ;; as the point is not visible in any window.
1093 (defun follow-select-if-visible-from-first (dest windows
)
1094 "Select and return a window with DEST, if WINDOWS are redrawn from top."
1098 (goto-char (window-start (car windows
)))
1099 ;; Make sure the line start in the beginning of a real screen
1101 (vertical-motion 0 (car windows
))
1102 (if (< dest
(point))
1103 ;; Above the start, not visible.
1105 ;; At or below the start. Check the windows.
1106 (save-window-excursion
1107 (while (and (not win
) windows
)
1108 (set-window-start (car windows
) (point) 'noforce
)
1109 (setq end-pos-end-p
(follow-calc-win-end (car windows
)))
1110 (goto-char (car end-pos-end-p
))
1111 ;; Visible, if dest above end, or if eob is visible inside
1113 (if (or (car (cdr end-pos-end-p
))
1115 (setq win
(car windows
))
1116 (setq windows
(cdr windows
)))))))
1118 (select-window win
))
1125 ;; Redraw all the windows on the screen, starting with the top window.
1126 ;; The window used as as marker is WIN, or the selcted window if WIN
1129 (defun follow-redisplay (&optional windows win
)
1130 "Reposition the WINDOWS around WIN.
1131 Should the 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."
1138 (setq win
(selected-window)))
1140 (setq windows
(follow-all-followers win
)))
1141 (follow-downward windows
(follow-calculate-first-window-start windows win
)))
1144 ;; Redisplay a chain of windows. Start every window directly after the
1145 ;; end of the previous window, to make sure long lines are displayed
1148 (defun follow-downward (windows pos
)
1149 "Redisplay all WINDOWS starting at POS."
1151 (set-window-start (car windows
) pos
)
1152 (setq pos
(car (follow-calc-win-end (car windows
))))
1153 (setq windows
(cdr windows
))))
1156 ;;(defun follow-downward (windows pos)
1157 ;; "Redisplay all WINDOWS starting at POS."
1160 ;; (setq p (window-point (car windows)))
1161 ;; (set-window-start (car windows) pos)
1162 ;; (set-window-point (car windows) (max p pos))
1163 ;; (setq pos (car (follow-calc-win-end (car windows))))
1164 ;; (setq windows (cdr windows)))))
1167 ;; Return the start of the first window.
1169 ;; First, estimate the position. It the value is not perfect (i.e. we
1170 ;; have somewhere splited a line between windows) we try to enhance
1173 ;; The guess is always perfect if no long lines is split between
1176 ;; The worst case peformace of probably very bad, but it is very
1177 ;; unlikely that we ever will miss the correct start by more than one
1180 (defun follow-calculate-first-window-start (windows &optional win start
)
1181 "Calculate the start of the first window.
1183 WINDOWS is a chain of windows to work with. WIN is the window
1184 to recenter around. It is assumed that WIN starts at position
1187 (setq win
(selected-window)))
1189 (setq start
(window-start win
)))
1190 (let ((guess (follow-estimate-first-window-start windows win start
)))
1193 ;; The guess wasn't exact, try to enhance it.
1194 (let ((win-start (follow-calc-win-start windows
(cdr guess
) win
)))
1195 (cond ((= win-start start
)
1196 (follow-debug-message "exact")
1198 ((< win-start start
)
1199 (follow-debug-message "above")
1200 (follow-calculate-first-window-start-from-above
1201 windows
(cdr guess
) win start
))
1203 (follow-debug-message "below")
1204 (follow-calculate-first-window-start-from-below
1205 windows
(cdr guess
) win start
)))))))
1208 ;; `exact' is disabled due to XEmacs and fonts of variable
1210 (defun follow-estimate-first-window-start (windows win start
)
1211 "Estimate the position of the first window.
1213 Returns (EXACT . POS). If EXACT is non-nil, POS is the starting
1214 position of the first window. Otherwise it is a good guess."
1215 (let ((pred (car (follow-split-followers windows win
)))
1219 ;(setq exact (bolp))
1220 (vertical-motion 0 win
)
1222 (vertical-motion (- 1 (window-height (car pred
))) (car pred
))
1225 (setq pred
(cdr pred
)))
1226 (cons exact
(point)))))
1229 ;; Find the starting point, start at GUESS and search downward.
1230 ;; The returned point is always a point below GUESS.
1232 (defun follow-calculate-first-window-start-from-above
1233 (windows guess win start
)
1240 (if (not (= (vertical-motion 1 (car windows
)) 1))
1241 ;; Hit bottom! (Can we really do this?)
1242 ;; We'll keep it, since it ensures termination.
1245 (setq res
(point-max)))
1246 (setq win-start
(follow-calc-win-start windows
(point) win
))
1247 (if (>= win-start start
)
1250 (setq res
(point))))))
1254 ;; Find the starting point, start at GUESS and search upward. Return
1255 ;; a point on the same line as GUESS, or above.
1257 ;; (Is this ever used? I must make sure it works just in case it is
1260 (defun follow-calculate-first-window-start-from-below
1261 (windows guess
&optional win start
)
1262 (setq win
(or win
(selected-window)))
1263 (setq start
(or start
(window-start win
)))
1268 ;; Always calculate what happens when no line is displayed in the first
1269 ;; window. (The `previous' res is needed below!)
1271 (vertical-motion 0 (car windows
))
1274 (if (not (= (vertical-motion -
1 (car windows
)) -
1))
1278 (setq res
(point-min)))
1279 (setq win-start
(follow-calc-win-start windows
(point) win
))
1280 (cond ((= win-start start
) ; Perfect match, use this value
1283 ((< win-start start
) ; Walked to far, use preious result
1285 (t ; Store result for next iteration
1286 (setq res
(point))))))
1290 ;;{{{ Avoid tail recenter
1292 ;; This sets the window internal flag `force_start'. The effect is that
1293 ;; windows only displaying the tail isn't recentered.
1294 ;; Has to be called before every redisplay... (Great isn't it?)
1296 ;; XEmacs doesn't recenter the tail, GOOD!
1298 ;; A window displaying only the tail, is a windows whose
1299 ;; window-start position is equal to (point-max) of the buffer it
1302 ;; This function is also added to `post-command-idle-hook', introduced
1303 ;; in Emacs 19.30. This is needed since the vaccine injected by the
1304 ;; call from `post-command-hook' only works until the next redisplay.
1305 ;; It is possible that the functions in the `post-command-idle-hook'
1306 ;; can cause a redisplay, and hence a new vaccine is needed.
1308 ;; Sometimes, calling this function could actually cause a redisplay,
1309 ;; especially if it is placed in the debug filter section. I must
1310 ;; investigate this further...
1312 (defun follow-avoid-tail-recenter (&rest rest
)
1313 "Make sure windows displaying the end of a buffer aren't recentered.
1315 This is done by reading and rewriting the start position of
1316 non-first windows in Follow mode."
1317 (if follow-avoid-tail-recenter-p
1318 (let* ((orig-buffer (current-buffer))
1319 (top (frame-first-window (selected-frame)))
1321 (who '()) ; list of (buffer . frame)
1323 pair
) ; (buffer . frame)
1324 ;; If the only window in the frame is a minibuffer
1325 ;; window, `next-window' will never find it again...
1326 (if (window-minibuffer-p top
)
1328 (while ;; look, no body!
1330 (setq start
(window-start win
))
1331 (set-buffer (window-buffer win
))
1332 (setq pair
(cons (window-buffer win
) (window-frame win
)))
1333 (if (member pair who
)
1334 (if (and (boundp 'follow-mode
) follow-mode
1335 (eq (point-max) start
))
1336 ;; Write the same window start back, but don't
1337 ;; set the NOFORCE flag.
1338 (set-window-start win start
))
1339 (setq who
(cons pair who
)))
1340 (setq win
(next-window win
'not t
))
1341 (not (eq win top
)))) ;; Loop while this is true.
1342 (set-buffer orig-buffer
)))))
1347 ;;{{{ Post Command Hook
1349 ;; The magic little box. This function is called after every command.
1351 ;; This is not as complicated as it seems. It is simply a list of common
1352 ;; display situations and the actions to take, plus commands for redrawing
1353 ;; the screen if it should be unaligned.
1355 ;; We divide the check into two parts; whether we are at the end or not.
1356 ;; This is due to the fact that the end can actaually be visible
1357 ;; in several window even though they are aligned.
1359 (defun follow-post-command-hook ()
1360 "Ensure that the windows in Follow mode are adjacent after each command."
1361 (setq follow-inside-post-command-hook t
)
1362 (if (or (not (input-pending-p))
1363 ;; Sometimes, in XEmacs, mouse events are not handled
1364 ;; properly by `input-pending-p'. A typical example is
1365 ;; when clicking on a node in `info'.
1366 (and (boundp 'current-mouse-event
)
1367 (symbol-value 'current-mouse-event
)
1368 (fboundp 'button-event-p
)
1369 (funcall (symbol-function 'button-event-p
)
1370 (symbol-value 'current-mouse-event
))))
1371 ;; Work in the selected window, not in the current buffer.
1372 (let ((orig-buffer (current-buffer))
1373 (win (selected-window)))
1374 (set-buffer (window-buffer win
))
1375 (or (and (symbolp this-command
)
1376 (get this-command
'follow-mode-use-cache
))
1377 (follow-invalidate-cache))
1378 (if (and (boundp 'follow-mode
) follow-mode
1379 (not (window-minibuffer-p win
)))
1380 ;; The buffer shown in the selected window is in follow
1381 ;; mode, lets find the current state of the display and
1382 ;; cache the result for speed (i.e. `aligned' and `visible'.)
1383 (let* ((windows (inline (follow-all-followers win
)))
1385 (win-start-end (inline
1386 (follow-update-window-start (car windows
))
1387 (follow-windows-start-end windows
)))
1388 (aligned (follow-windows-aligned-p win-start-end
))
1389 (visible (follow-pos-visible dest win win-start-end
)))
1390 (if (not (and aligned visible
))
1391 (follow-invalidate-cache))
1392 (inline (follow-avoid-tail-recenter))
1393 ;; Select a window to display the point.
1394 (or follow-internal-force-redisplay
1396 (if (eq dest
(point-max))
1397 ;; We're at the end, we have to be careful since
1398 ;; the display can be aligned while `dest' can
1399 ;; be visible in several windows.
1401 ;; Select the current window, but only when
1402 ;; the display is correct. (When inserting
1403 ;; character in a tail window, the display is
1404 ;; not correct, as they are shown twice.)
1406 ;; Never stick to the current window after a
1407 ;; deletion. The reason is cosmetic, when
1408 ;; typing `DEL' in a window showing only the
1409 ;; end of the file, character are removed
1410 ;; from the window above, which is very
1414 (not (memq this-command
1415 '(backward-delete-char
1416 delete-backward-char
1417 backward-delete-char-untabify
1419 (follow-debug-message "Max: same"))
1420 ;; If the end is visible, and the window
1421 ;; doesn't seems like it just has been moved,
1423 ((follow-select-if-end-visible win-start-end
)
1424 (follow-debug-message "Max: end visible")
1428 ;; Just show the end...
1430 (follow-debug-message "Max: default")
1431 (select-window (car (reverse windows
)))
1434 (setq aligned nil
)))
1436 ;; We're not at the end, here life is much simpler.
1438 ;; This is the normal case!
1439 ;; It should be optimized for speed.
1440 ((and visible aligned
)
1441 (follow-debug-message "same"))
1442 ;; Pick a position in any window. If the
1443 ;; display is ok, this will pick the `correct'
1444 ;; window. If the display is wierd do this
1445 ;; anyway, this will be the case after a delete
1446 ;; at the beginning of the window.
1447 ((follow-select-if-visible dest win-start-end
)
1448 (follow-debug-message "visible")
1451 ;; Not visible anywhere else, lets pick this one.
1452 ;; (Is this case used?)
1454 (follow-debug-message "visible in selected."))
1456 ((eq dest
(point-min))
1457 (follow-debug-message "min")
1458 (select-window (car windows
))
1460 (set-window-start (selected-window) (point-min))
1461 (setq win-start-end
(follow-windows-start-end windows
))
1462 (follow-invalidate-cache)
1465 ;; If we can position the cursor without moving the first
1466 ;; window, do it. This is the case that catches `RET'
1467 ;; at the bottom of a window.
1468 ((follow-select-if-visible-from-first dest windows
)
1469 (follow-debug-message "Below first")
1472 (follow-redisplay windows
(car windows
))
1474 ;; None of the above. For simplicity, we stick to the
1477 (follow-debug-message "None")
1479 (setq aligned nil
))))
1480 ;; If a new window has been selected, make sure that the
1481 ;; old is not scrolled when the point is outside the
1483 (or (eq win
(selected-window))
1484 (let ((p (window-point win
)))
1485 (set-window-start win
(window-start win
) nil
)
1486 (set-window-point win p
)))))
1487 ;; Make sure the point is visible in the selected window.
1488 ;; (This could lead to a scroll.)
1490 (follow-pos-visible dest win win-start-end
))
1493 (follow-avoid-tail-recenter)
1494 (setq win-start-end
(follow-windows-start-end windows
))
1495 (follow-invalidate-cache)
1497 ;; Redraw the windows whenever needed.
1498 (if (or follow-internal-force-redisplay
1500 (follow-windows-aligned-p win-start-end
)))
1501 (not (inline (follow-point-visible-all-windows-p
1504 (setq follow-internal-force-redisplay nil
)
1505 (follow-redisplay windows
(selected-window))
1506 (setq win-start-end
(follow-windows-start-end windows
))
1507 (follow-invalidate-cache)
1508 ;; When the point ends up in another window. This
1509 ;; happens when dest is in the beginning of the
1510 ;; file and the selected window is not the first.
1511 ;; It can also, in rare situations happen when
1512 ;; long lines are used and there is a big
1513 ;; difference between the width of the windows.
1514 ;; (When scrolling one line in a wide window which
1515 ;; will cause a move larger that an entire small
1517 (if (follow-pos-visible dest win win-start-end
)
1519 (follow-select-if-visible dest win-start-end
)
1522 ;; If the region is visible, make it look good when spanning
1523 ;; multiple windows.
1524 (if (or (and (boundp 'mark-active
) (symbol-value 'mark-active
))
1525 ;; The following isn't used in Emacs,
1526 ;; since `mark-active' is bound.
1527 (and (fboundp 'region-active-p
)
1528 (funcall (symbol-function 'region-active-p
))))
1529 (follow-maximize-region
1530 (selected-window) windows win-start-end
))
1532 (inline (follow-avoid-tail-recenter))
1534 ;;(if (not (follow-windows-aligned-p
1535 ;; (follow-windows-start-end windows)))
1536 ;; (message "follow-mode: windows still unaligend!"))
1539 ;; Buffer not in follow mode:
1540 ;; We still must update the windows displaying the tail so that
1541 ;; Emacs won't recenter them.
1542 (follow-avoid-tail-recenter))
1543 (set-buffer orig-buffer
)))
1544 (setq follow-inside-post-command-hook nil
))
1549 ;; Tries to make the highlighted area representing the region look
1550 ;; good when spanning several windows.
1552 ;; Not perfect, as the point can't be placed at window end, only at
1553 ;; end-1. This will highlight a little bit in windows above
1556 (defun follow-maximize-region (win windows win-start-end
)
1557 "Make a highlighted region stretching multiple windows look good."
1558 (let* ((all (follow-split-followers windows win
))
1563 (setq data
(assq (car pred
) win-start-end
))
1564 (set-window-point (car pred
) (max (nth 1 data
) (- (nth 2 data
) 1)))
1565 (setq pred
(cdr pred
)))
1567 (set-window-point (car succ
) (nth 1 (assq (car succ
) win-start-end
)))
1568 (setq succ
(cdr succ
)))))
1573 ;;;; Scroll-bar support code.
1575 ;; Why is it needed? Well, if the selected window is in follow mode,
1576 ;; all its follower stick to it blindly. If one of them is scrolled,
1577 ;; it immediately returns to the original position when the mouse is
1578 ;; released. If the selected window is not a follower of the dragged
1579 ;; window the windows will be unaligned.
1581 ;; The advices doesn't get compiled. Aestetically, this might be a
1582 ;; problem but in practical life it isn't.
1584 ;; Discussion: Now when the other windows in the chain follow the
1585 ;; dragged, should we really select it?
1587 (cond ((fboundp 'scroll-bar-drag
)
1589 ;;; Emacs style scrollbars.
1592 ;; Select the dragged window if it is a follower of the
1595 ;; Generate advices of the form:
1596 ;; (defadvice scroll-bar-drag (after follow-scroll-bar-drag activate)
1597 ;; "Adviced by `follow-mode'."
1598 ;; (follow-redraw-after-event (ad-get-arg 0)))
1599 (let ((cmds '(scroll-bar-drag
1600 scroll-bar-drag-1
; Executed at every move.
1601 scroll-bar-scroll-down
1602 scroll-bar-scroll-up
1603 scroll-bar-set-window-start
)))
1606 `(defadvice ,(intern (symbol-name (car cmds
)))
1608 ,(intern (concat "follow-" (symbol-name (car cmds
))))
1610 "Adviced by Follow mode."
1611 (follow-redraw-after-event (ad-get-arg 0))))
1612 (setq cmds
(cdr cmds
))))
1615 (defun follow-redraw-after-event (event)
1616 "Adviced by Follow mode."
1618 (let* ((orig-win (selected-window))
1619 (win (nth 0 (funcall
1620 (symbol-function 'event-start
) event
)))
1621 (fmode (assq 'follow-mode
1622 (buffer-local-variables
1623 (window-buffer win
)))))
1624 (if (and fmode
(cdr fmode
))
1625 ;; The selected window is in follow-mode
1627 ;; Recenter around the dragged window.
1630 (select-window orig-win
))))
1634 ((fboundp 'scrollbar-vertical-drag
)
1636 ;;; XEmacs style scrollbars.
1639 ;; Advice all scrollbar functions on the form:
1641 ;; (defadvice scrollbar-line-down
1642 ;; (after follow-scrollbar-line-down activate)
1643 ;; (follow-xemacs-scrollbar-support (ad-get-arg 0)))
1645 (let ((cmds '(scrollbar-line-down ; Window
1647 scrollbar-page-down
; Object
1649 scrollbar-to-bottom
; Window
1651 scrollbar-vertical-drag
; Object
1656 `(defadvice ,(intern (symbol-name (car cmds
)))
1658 ,(intern (concat "follow-" (symbol-name (car cmds
))))
1660 "Adviced by `follow-mode'."
1661 (follow-xemacs-scrollbar-support (ad-get-arg 0))))
1662 (setq cmds
(cdr cmds
))))
1665 (defun follow-xemacs-scrollbar-support (window)
1666 "Redraw windows showing the same buffer as shown in WINDOW.
1667 WINDOW is either the dragged window, or a cons containing the
1668 window as its first element. This is called while the user drags
1671 WINDOW can be an object or a window."
1675 (setq window
(car window
)))
1676 (let ((fmode (assq 'follow-mode
1677 (buffer-local-variables
1678 (window-buffer window
))))
1679 (orig-win (selected-window)))
1680 (if (and fmode
(cdr fmode
))
1682 ;; Recenter around the dragged window.
1683 (select-window window
)
1685 (select-window orig-win
)))))
1689 ;;{{{ Process output
1691 ;; The following sections installs a spy that listens to process
1692 ;; output and tries to reposition the windows whose buffers are in
1693 ;; Follow mode. We play safe as much as possible...
1695 ;; When follow-mode is activated all active processes are
1696 ;; intercepted. All new processes that change their filter function
1697 ;; using `set-process-filter' are also intercepted. The reason is
1698 ;; that a process can cause a redisplay recentering "tail" windows.
1699 ;; Note that it doesn't hurt to spy on more processes than needed.
1701 ;; Technically, we set the process filter to `follow-generic-filter'.
1702 ;; The original filter is stored in `follow-process-filter-alist'.
1703 ;; Our generic filter calls the original filter, or inserts the
1704 ;; output into the buffer, if the buffer originally didn't have an
1705 ;; output filter. It also makes sure that the windows connected to
1706 ;; the buffer are aligned.
1708 ;; Discussion: How do we find processes that don't call
1709 ;; `set-process-filter'? (How often are processes created in a
1710 ;; buffer after Follow mode are activated?)
1712 ;; Discussion: Should we also advice `process-filter' to make our
1713 ;; filter invisible to others?
1715 ;;{{{ Advice for `set-process-filter'
1717 ;; Do not call this with 'follow-generic-filter as the name of the
1720 (defadvice set-process-filter
(before follow-set-process-filter activate
)
1721 "Ensure process output will be displayed correctly in Follow mode buffers.
1723 Follow mode inserts its own process filter to do its
1724 magic stuff before the real process filter is called."
1725 (if follow-intercept-processes
1727 (setq follow-process-filter-alist
1728 (delq (assq (ad-get-arg 0) follow-process-filter-alist
)
1729 follow-process-filter-alist
))
1730 (follow-tidy-process-filter-alist)
1731 (cond ((eq (ad-get-arg 1) t
))
1732 ((eq (ad-get-arg 1) nil
)
1733 (ad-set-arg 1 'follow-generic-filter
))
1735 (setq follow-process-filter-alist
1736 (cons (cons (ad-get-arg 0) (ad-get-arg 1))
1737 follow-process-filter-alist
))
1738 (ad-set-arg 1 'follow-generic-filter
))))))
1741 (defun follow-call-set-process-filter (proc filter
)
1742 "Call original `set-process-filter' without the Follow mode advice."
1743 (ad-disable-advice 'set-process-filter
'before
1744 'follow-set-process-filter
)
1745 (ad-activate 'set-process-filter
)
1747 (set-process-filter proc filter
)
1748 (ad-enable-advice 'set-process-filter
'before
1749 'follow-set-process-filter
)
1750 (ad-activate 'set-process-filter
)))
1753 (defadvice process-filter
(after follow-process-filter activate
)
1754 "Return the original process filter, not `follow-generic-filter'."
1755 (cond ((eq ad-return-value
'follow-generic-filter
)
1756 (setq ad-return-value
1757 (cdr-safe (assq (ad-get-arg 0)
1758 follow-process-filter-alist
))))))
1761 (defun follow-call-process-filter (proc)
1762 "Call original `process-filter' without the Follow mode advice."
1763 (ad-disable-advice 'process-filter
'after
1764 'follow-process-filter
)
1765 (ad-activate 'process-filter
)
1767 (process-filter proc
)
1768 (ad-enable-advice 'process-filter
'after
1769 'follow-process-filter
)
1770 (ad-activate 'process-filter
)))
1773 (defun follow-tidy-process-filter-alist ()
1774 "Remove old processes from `follow-process-filter-alist'."
1775 (let ((alist follow-process-filter-alist
)
1779 (if (and (not (memq (process-status (car (car alist
)))
1780 '(exit signal closed nil
)))
1781 (memq (car (car alist
)) ps
))
1782 (setq new
(cons (car alist
) new
)))
1783 (setq alist
(cdr alist
)))
1784 (setq follow-process-filter-alist new
)))
1787 ;;{{{ Start/stop interception of processes.
1789 ;; Normally, all new processed are intercepted by our `set-process-filter'.
1790 ;; This is needed to intercept old processed that were started before we were
1791 ;; loaded, and processes we have forgotten by calling
1792 ;; `follow-stop-intercept-process-output'.
1794 (defun follow-intercept-process-output ()
1795 "Intercept all active processes.
1797 This is needed so that Follow mode can track all display events in the
1798 system. (See `follow-mode'.)"
1800 (let ((list (process-list)))
1802 (if (eq (process-filter (car list
)) 'follow-generic-filter
)
1804 ;; The custom `set-process-filter' defined above.
1805 (set-process-filter (car list
) (process-filter (car list
))))
1806 (setq list
(cdr list
))))
1807 (setq follow-intercept-processes t
))
1810 (defun follow-stop-intercept-process-output ()
1811 "Stop Follow mode from spying on processes.
1813 All current spypoints are removed and no new will be added.
1815 The effect is that Follow mode won't be able to handle buffers
1816 connected to processes.
1818 The only reason to call this function is if the Follow mode spy filter
1819 would interfere with some other package. If this happens, please
1820 report this using the `report-emacs-bug' function."
1822 (follow-tidy-process-filter-alist)
1823 (dolist (process (process-list))
1824 (when (eq (follow-call-process-filter process
) 'follow-generic-filter
)
1825 (follow-call-set-process-filter
1827 (cdr-safe (assq process follow-process-filter-alist
)))
1828 (setq follow-process-filter-alist
1829 (delq (assq process follow-process-filter-alist
)
1830 follow-process-filter-alist
))))
1831 (setq follow-intercept-processes nil
))
1836 ;; The following section is a naive method to make buffers with
1837 ;; process output to work with Follow mode. Whenever the start of the
1838 ;; window displaying the buffer is moved, we moves it back to its
1839 ;; original position and try to select a new window. (If we fail,
1840 ;; the normal redisplay functions of Emacs will scroll it right
1843 (defun follow-generic-filter (proc output
)
1844 "Process output filter for process connected to buffers in Follow mode."
1845 (let* ((old-buffer (current-buffer))
1846 (orig-win (selected-window))
1847 (buf (process-buffer proc
))
1848 (win (and buf
(if (eq buf
(window-buffer orig-win
))
1850 (get-buffer-window buf t
))))
1851 (return-to-orig-win (and win
(not (eq win orig-win
))))
1852 (orig-window-start (and win
(window-start win
))))
1854 ;; If input is pending, the `sit-for' below won't redraw the
1855 ;; display. In that case, calling `follow-avoid-tail-recenter' may
1856 ;; provoke the process hadnling code to sceduling a redisplay.
1857 ;(or (input-pending-p)
1858 ; (follow-avoid-tail-recenter))
1860 ;; Output the `output'.
1861 (let ((filter (cdr-safe (assq proc follow-process-filter-alist
))))
1863 ;; Call the original filter function
1865 (funcall filter proc output
))
1867 ;; No filter, but we've got a buffer. Just output into it.
1870 (if (not (marker-buffer (process-mark proc
)))
1871 (set-marker (process-mark proc
) (point-max)))
1872 (let ((moving (= (point) (process-mark proc
)))
1874 (inhibit-read-only t
))
1876 (goto-char (process-mark proc
))
1877 ;; `insert-before-markers' just in case the users next
1879 (insert-before-markers output
)
1880 (set-marker (process-mark proc
) (point)))
1881 (if moving
(goto-char (process-mark proc
)))))))
1883 ;; If we're in follow mode, do our stuff. Select a new window and
1884 ;; redisplay. (Actually, it is redundant to check `buf', but I
1885 ;; feel it's more correct.)
1886 (if (and buf
(window-live-p win
))
1889 (if (and (boundp 'follow-mode
) follow-mode
)
1892 (let* ((windows (follow-all-followers win
))
1893 (win-start-end (follow-windows-start-end windows
))
1894 (new-window-start (window-start win
))
1895 (new-window-point (window-point win
)))
1897 ;; The start of the selected window was repositioned.
1898 ;; Try to use the original start position and continue
1899 ;; working with a window to the "right" in the window
1900 ;; chain. This will create the effect that the output
1901 ;; starts in one window and continues into the next.
1903 ;; If the display has changed so much that it is not
1904 ;; possible to keep the original window fixed and still
1905 ;; display the point then we give up and use the new
1908 ;; This case is typically used when the process filter
1909 ;; tries to reposition the start of the window in order
1910 ;; to view the tail of the output.
1911 ((not (eq orig-window-start new-window-start
))
1912 (follow-debug-message "filter: Moved")
1913 (set-window-start win orig-window-start
)
1914 (follow-redisplay windows win
)
1915 (setq win-start-end
(follow-windows-start-end windows
))
1916 (follow-select-if-visible new-window-point
1918 (goto-char new-window-point
)
1919 (if (eq win
(selected-window))
1920 (set-window-start win new-window-start
))
1921 (setq win-start-end
(follow-windows-start-end windows
)))
1922 ;; Stick to this window, if point is visible in it.
1923 ((pos-visible-in-window-p new-window-point
)
1924 (follow-debug-message "filter: Visible in window"))
1925 ;; Avoid redisplaying the first window. If the
1926 ;; point is visible at a window below,
1927 ;; redisplay and select it.
1928 ((follow-select-if-visible-from-first
1929 new-window-point windows
)
1930 (follow-debug-message "filter: Seen from first")
1931 (follow-redisplay windows
(car windows
))
1932 (goto-char new-window-point
)
1934 (follow-windows-start-end windows
)))
1935 ;; None of the above. We stick to the current window.
1937 (follow-debug-message "filter: nothing")))
1939 ;; Here we have slected a window. Make sure the
1940 ;; windows are aligned and the point is visible
1941 ;; in the selected window.
1942 (if (and (not (follow-pos-visible
1943 (point) (selected-window) win-start-end
))
1944 (not return-to-orig-win
))
1948 (follow-windows-start-end windows
))))
1950 (if (or follow-internal-force-redisplay
1951 (not (follow-windows-aligned-p win-start-end
)))
1952 (follow-redisplay windows
)))))))
1954 ;; return to the original window.
1955 (if return-to-orig-win
1956 (select-window orig-win
))
1957 ;; Restore the orignal buffer, unless the filter explicitly
1958 ;; changed buffer or killed the old buffer.
1959 (if (and (eq buf
(current-buffer))
1960 (buffer-name old-buffer
))
1961 (set-buffer old-buffer
)))
1963 (follow-invalidate-cache)
1965 ;; Normally, if the display has been changed, it is redrawn. All
1966 ;; windows showing only the end of a buffer are unconditionally
1967 ;; recentered; we can't prevent that by calling
1968 ;; `follow-avoid-tail-recenter'.
1970 ;; We force a redisplay here on our own, so Emacs does need to.
1971 ;; (However, redisplaying when there's input available just seems
1972 ;; to make things worse, so we exclude that case.)
1973 (if (and follow-avoid-tail-recenter-p
1974 (not (input-pending-p)))
1980 ;;{{{ Window size change
1982 ;; In Emacs 19.29, the functions in `window-size-change-functions' are
1983 ;; called every time a window in a frame changes size. Most notably, it
1984 ;; is called after the frame has been resized.
1986 ;; We basically call our post-command-hook for every buffer that is
1987 ;; visible in any window in the resized frame, which is in follow-mode.
1989 ;; Since this function can be called indirectly from
1990 ;; `follow-post-command-hook' we have a potential infinite loop. We
1991 ;; handle this problem by simply not doing anything at all in this
1992 ;; situation. The variable `follow-inside-post-command-hook' contains
1993 ;; information about whether the execution actually is inside the
1994 ;; post-command-hook or not.
1996 (if (boundp 'window-size-change-functions
)
1997 (add-hook 'window-size-change-functions
'follow-window-size-change
))
2000 (defun follow-window-size-change (frame)
2001 "Redraw all windows in FRAME, when in Follow mode."
2002 ;; Below, we call `post-command-hook'. This makes sure that we
2003 ;; don't start a mutually recursive endless loop.
2004 (if follow-inside-post-command-hook
2007 (orig-window (selected-window))
2008 (orig-buffer (current-buffer))
2009 (orig-frame (selected-frame))
2012 (select-frame frame
)
2017 (setq buf
(window-buffer win
))
2018 (if (memq buf buffers
)
2021 (if (and (boundp 'follow-mode
)
2024 (setq windows
(follow-all-followers win
))
2025 (if (memq orig-window windows
)
2027 ;; Make sure we're redrawing around the
2030 ;; We must be really careful not to do this
2031 ;; when we are (indirectly) called by
2032 ;; `post-command-hook'.
2033 (select-window orig-window
)
2034 (follow-post-command-hook)
2035 (setq orig-window
(selected-window)))
2036 (follow-redisplay windows win
))
2037 (setq buffers
(cons buf buffers
))))))))
2038 (select-frame orig-frame
)
2039 (set-buffer orig-buffer
)
2040 (select-window orig-window
)))))
2044 ;;{{{ XEmacs isearch
2046 ;; In XEmacs, isearch often finds matches in other windows than the
2047 ;; currently selected. However, when exiting the old window
2048 ;; configuration is restored, with the exception of the beginning of
2049 ;; the start of the window for the selected window. This is not much
2052 ;; We overwrite the stored window configuration with the current,
2053 ;; unless we are in `slow-search-mode', i.e. only a few lines
2054 ;; of text is visible.
2056 (if (featurep 'xemacs
)
2057 (defadvice isearch-done
(before follow-isearch-done activate
)
2058 (if (and (boundp 'follow-mode
)
2060 (boundp 'isearch-window-configuration
)
2061 isearch-window-configuration
2062 (boundp 'isearch-slow-terminal-mode
)
2063 (not isearch-slow-terminal-mode
))
2064 (let ((buf (current-buffer)))
2065 (setq isearch-window-configuration
2066 (current-window-configuration))
2067 (set-buffer buf
)))))
2070 ;;{{{ Tail window handling
2072 ;; In Emacs (not XEmacs) windows showing nothing are sometimes
2073 ;; recentered. When in Follow mode, this is not desirable for
2074 ;; non-first windows in the window chain. This section tries to
2075 ;; make the windows stay where they should be.
2077 ;; If the display is updated, all windows starting at (point-max) are
2078 ;; going to be recentered at the next redisplay, unless we do a
2079 ;; read-and-write cycle to update the `force' flag inside the windows.
2081 ;; In 19.30, a new varible `window-scroll-functions' is called every
2082 ;; time a window is recentered. It is not perfect for our situation,
2083 ;; since when it is called for a tail window, it is to late. However,
2084 ;; if it is called for another window, we can try to update our
2087 ;; By patching `sit-for' we can make sure that to catch all explicit
2088 ;; updates initiated by lisp programs. Internal calls, on the other
2089 ;; hand, are not handled.
2091 ;; Please note that the function `follow-avoid-tail-recenter' is also
2092 ;; called from other places, e.g. `post-command-hook' and
2093 ;; `post-command-idle-hook'.
2095 ;; If this function is called it is too late for this window, but
2096 ;; we might save other windows from being recentered.
2098 (if (and follow-avoid-tail-recenter-p
(boundp 'window-scroll-functions
))
2099 (add-hook 'window-scroll-functions
'follow-avoid-tail-recenter t
))
2102 ;; This prevents all packages that calls `sit-for' directly
2103 ;; to recenter tail windows.
2105 (if follow-avoid-tail-recenter-p
2106 (defadvice sit-for
(before follow-sit-for activate
)
2107 "Adviced by Follow mode.
2109 Avoid to recenter windows displaying only the end of a file as when
2110 displaying a short file in two windows, using Follow mode."
2111 (follow-avoid-tail-recenter)))
2114 ;; Without this advice, `mouse-drag-region' would start to recenter
2117 (if (and follow-avoid-tail-recenter-p
2118 (fboundp 'move-overlay
))
2119 (defadvice move-overlay
(before follow-move-overlay activate
)
2120 "Adviced by Follow mode.
2121 Don't recenter windows showing only the end of a buffer.
2122 This prevents `mouse-drag-region' from messing things up."
2123 (follow-avoid-tail-recenter)))
2126 ;;{{{ profile support
2128 ;; The following (non-evaluated) section can be used to
2129 ;; profile this package using `elp'.
2131 ;; Invalid indentation on purpose!
2134 (setq elp-function-list
2137 ; sit-for ;; elp can't handle advices...
2139 follow-all-followers
2140 follow-split-followers
2143 follow-calculate-first-window-start
2144 follow-estimate-first-window-start
2145 follow-calculate-first-window-start-from-above
2146 follow-calculate-first-window-start-from-below
2148 follow-calc-win-start
2150 follow-windows-start-end
2151 follow-cache-valid-p
2152 follow-select-if-visible
2153 follow-select-if-visible-from-first
2154 follow-windows-aligned-p
2155 follow-point-visible-all-windows-p
2156 follow-avoid-tail-recenter
2157 follow-update-window-start
2158 follow-post-command-hook
2165 (defun follow-unload-function ()
2166 "Unload Follow mode library."
2167 (easy-menu-remove-item nil
'("Tools") "Follow")
2168 (follow-stop-intercept-process-output)
2169 (dolist (group '((before
2173 set-process-filter sit-for move-overlay
)
2176 scroll-bar-drag scroll-bar-drag-1 scroll-bar-scroll-down
2177 scroll-bar-scroll-up scroll-bar-set-window-start
2179 scrollbar-line-down scrollbar-line-up scrollbar-page-down
2180 scrollbar-page-up scrollbar-to-bottom scrollbar-to-top
2181 scrollbar-vertical-drag
2184 (let ((class (car group
)))
2185 (dolist (fun (cdr group
))
2186 (when (functionp fun
)
2189 (ad-remove-advice fun class
2190 (intern (concat "follow-" (symbol-name fun
))))
2193 ;; continue standard processing
2204 ;; /------------------------------------------------------------------------\
2205 ;; | "I [..] am rarely happier then when spending an entire day programming |
2206 ;; | my computer to perform automatically a task that it would otherwise |
2207 ;; | take me a good ten seconds to do by hand. Ten seconds, I tell myself, |
2208 ;; | is ten seconds. Time is valuable and ten seconds' worth of it is well |
2209 ;; | worth the investment of a day's happy activity working out a way to |
2210 ;; | save it". -- Douglas Adams, "Last Chance to See" |
2211 ;; \------------------------------------------------------------------------/
2213 ;; arch-tag: 7b16bb1a-808c-4991-a8cc-66d3822936d0
2214 ;;; follow.el ends here