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