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