#870 again. :(
[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,
409cc4a3 4;; 2005, 2006, 2007, 2008 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
KH
626 (vertical-motion (- (- (window-height win)
627 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.
e79016aa
KH
883 (let ((orig-win (and win (selected-window)))
884 height
885 buffer-end-p)
886 (if win (select-window win))
887 (prog1
888 (save-excursion
889 (goto-char (window-start))
890 (setq height (- (window-height) 1))
891 (setq buffer-end-p
892 (if (bolp)
893 (not (= height (vertical-motion height)))
894 (save-restriction
895 ;; Fix a mis-feature in `vertical-motion':
896 ;; The start of the window is assumed to
897 ;; coinside with the start of a line.
898 (narrow-to-region (point) (point-max))
899 (not (= height (vertical-motion height))))))
900 (list (point) buffer-end-p))
901 (if orig-win
902 (select-window orig-win))))))
903
904
905;; Can't use `save-window-excursion' since it triggers a redraw.
906(defun follow-calc-win-start (windows pos win)
907 "Calculate where WIN will start if the first in WINDOWS start at POS.
908
909If WIN is nil the point below all windows is returned."
910 (let (start)
911 (while (and windows (not (eq (car windows) win)))
912 (setq start (window-start (car windows)))
913 (set-window-start (car windows) pos 'noforce)
914 (setq pos (car (inline (follow-calc-win-end (car windows)))))
915 (set-window-start (car windows) start 'noforce)
916 (setq windows (cdr windows)))
917 pos))
918
919
f3bfa025
KH
920;; The result from `follow-windows-start-end' is cached when using
921;; a handful simple commands, like cursor movement commands.
922
923(defsubst follow-cache-valid-p (windows)
924 "Test if the cached value of `follow-windows-start-end' can be used.
925Note that this handles the case when the cache has been set to nil."
926 (let ((res t)
927 (cache follow-windows-start-end-cache))
928 (while (and res windows cache)
929 (setq res (and (eq (car windows)
930 (car (car cache)))
931 (eq (window-start (car windows))
932 (car (cdr (car cache))))))
933 (setq windows (cdr windows))
934 (setq cache (cdr cache)))
935 (and res (null windows) (null cache))))
936
937
938(defsubst follow-invalidate-cache ()
939 "Force `follow-windows-start-end' to recalculate the end of the window."
940 (setq follow-windows-start-end-cache nil))
941
942
e79016aa
KH
943;; Build a list of windows and their start and end positions.
944;; Useful to avoid calculating start/end position whenever they are needed.
945;; The list has the format:
946;; ((Win Start End End-of-buffer-visible-p) ...)
947
948;; Used to have a `save-window-excursion', but it obviously triggered
949;; redraws of the display. Check if I used it for anything.
950
951
952(defun follow-windows-start-end (windows)
953 "Builds a list of (WIN START END BUFFER-END-P) for every window in WINDOWS."
f3bfa025
KH
954 (if (follow-cache-valid-p windows)
955 follow-windows-start-end-cache
956 (let ((win-start-end '())
957 (orig-win (selected-window)))
958 (while windows
959 (select-window (car windows))
cb02be17
KH
960 (setq win-start-end
961 (cons (cons (car windows)
f3bfa025
KH
962 (cons (window-start)
963 (follow-calc-win-end)))
964 win-start-end))
965 (setq windows (cdr windows)))
966 (select-window orig-win)
967 (setq follow-windows-start-end-cache (nreverse win-start-end))
968 follow-windows-start-end-cache)))
969
970
971(defsubst follow-pos-visible (pos win win-start-end)
e79016aa
KH
972 "Non-nil when POS is visible in WIN."
973 (let ((wstart-wend-bend (cdr (assq win win-start-end))))
974 (and (>= pos (car wstart-wend-bend))
975 (or (< pos (car (cdr wstart-wend-bend)))
976 (nth 2 wstart-wend-bend)))))
977
978
979;; By `aligned' we mean that for all adjecent windows, the end of the
980;; first is equal with the start of the successor. The first window
981;; should start at a full screen line.
982
f3bfa025 983(defsubst follow-windows-aligned-p (win-start-end)
8cd3480b 984 "Non-nil if the follower windows are aligned."
cb02be17 985 (let ((res t))
e79016aa
KH
986 (save-excursion
987 (goto-char (window-start (car (car win-start-end))))
988 (if (bolp)
989 nil
990 (vertical-motion 0 (car (car win-start-end)))
991 (setq res (eq (point) (window-start (car (car win-start-end)))))))
992 (while (and res (cdr win-start-end))
993 ;; At least two followers left
f3bfa025
KH
994 (setq res (eq (car (cdr (cdr (car win-start-end))))
995 (car (cdr (car (cdr win-start-end))))))
e79016aa
KH
996 (setq win-start-end (cdr win-start-end)))
997 res))
998
999
1000;; Check if the point is visible in all windows. (So that
1001;; no one will be recentered.)
1002
1003(defun follow-point-visible-all-windows-p (win-start-end)
8cd3480b 1004 "Non-nil when the `window-point' is visible in all windows."
e79016aa
KH
1005 (let ((res t))
1006 (while (and res win-start-end)
f3bfa025
KH
1007 (setq res (follow-pos-visible (window-point (car (car win-start-end)))
1008 (car (car win-start-end))
1009 win-start-end))
e79016aa
KH
1010 (setq win-start-end (cdr win-start-end)))
1011 res))
1012
1013
1014;; Make sure WIN always starts at the beginning of an whole screen
1015;; line. If WIN is not aligned the start is updated which probably
1016;; will lead to a redisplay of the screen later on.
1017;;
1018;; This is used with the first window in a follow chain. The reason
1019;; is that we want to detect that the point is outside the window.
1020;; (Without the update, the start of the window will move as the
1021;; user presses BackSpace, and the other window redisplay routines
1022;; will move the start of the window in the wrong direction.)
1023
1024(defun follow-update-window-start (win)
1025 "Make sure that the start of WIN starts at a full screen line."
1026 (save-excursion
1027 (goto-char (window-start win))
1028 (if (bolp)
1029 nil
1030 (vertical-motion 0 win)
1031 (if (eq (point) (window-start win))
1032 nil
1033 (vertical-motion 1 win)
1034 (set-window-start win (point) 'noforce)))))
1035
1036;;}}}
1037;;{{{ Selection functions
1038
1039;; Make a window in WINDOWS selected if it currently
1040;; is displaying the position DEST.
1041;;
1042;; We don't select a window if it just has been moved.
1043
1044(defun follow-select-if-visible (dest win-start-end)
1045 "Select and return a window, if DEST is visible in it.
1046Return the selected window."
1047 (let ((win nil))
1048 (while (and (not win) win-start-end)
ff753438 1049 ;; Don't select a window that was just moved. This makes it
e79016aa
KH
1050 ;; possible to later select the last window after a `end-of-buffer'
1051 ;; command.
1052 (if (follow-pos-visible dest (car (car win-start-end)) win-start-end)
1053 (progn
1054 (setq win (car (car win-start-end)))
1055 (select-window win)))
1056 (setq win-start-end (cdr win-start-end)))
1057 win))
1058
1059
1060;; Lets select a window showing the end. Make sure we only select it if it
1061;; it wasn't just moved here. (i.e. M-> shall not unconditionally place
1062;; the point in the selected window.)
1063;;
ff753438 1064;; (Compability cludge: in Emacs `window-end' is equal to `point-max';
e79016aa 1065;; in XEmacs, it is equal to `point-max + 1'. Should I really bother
cb02be17 1066;; checking `window-end' now when I check `end-of-buffer' explicitly?)
e79016aa
KH
1067
1068(defun follow-select-if-end-visible (win-start-end)
1069 "Select and return a window, if end is visible in it."
1070 (let ((win nil))
1071 (while (and (not win) win-start-end)
ff753438 1072 ;; Don't select a window that was just moved. This makes it
e79016aa
KH
1073 ;; possible to later select the last window after a `end-of-buffer'
1074 ;; command.
1075 (if (and (eq (point-max) (nth 2 (car win-start-end)))
1076 (nth 3 (car win-start-end))
ff753438
RS
1077 ;; `window-end' might return nil.
1078 (let ((end (window-end (car (car win-start-end)))))
1079 (and end
1080 (eq (point-max) (min (point-max) end)))))
e79016aa
KH
1081 (progn
1082 (setq win (car (car win-start-end)))
1083 (select-window win)))
1084 (setq win-start-end (cdr win-start-end)))
1085 win))
1086
1087
ff753438 1088;; Select a window that will display the point if the windows would
e79016aa
KH
1089;; be redisplayed with the first window fixed. This is useful for
1090;; example when the user has pressed return at the bottom of a window
1091;; as the point is not visible in any window.
1092
1093(defun follow-select-if-visible-from-first (dest windows)
1094 "Select and return a window with DEST, if WINDOWS are redrawn from top."
1095 (let ((win nil)
1096 end-pos-end-p)
1097 (save-excursion
1098 (goto-char (window-start (car windows)))
1099 ;; Make sure the line start in the beginning of a real screen
1100 ;; line.
cb02be17 1101 (vertical-motion 0 (car windows))
e79016aa
KH
1102 (if (< dest (point))
1103 ;; Above the start, not visible.
1104 nil
1105 ;; At or below the start. Check the windows.
1106 (save-window-excursion
1107 (while (and (not win) windows)
1108 (set-window-start (car windows) (point) 'noforce)
1109 (setq end-pos-end-p (follow-calc-win-end (car windows)))
1110 (goto-char (car end-pos-end-p))
1111 ;; Visible, if dest above end, or if eob is visible inside
1112 ;; the window.
1113 (if (or (car (cdr end-pos-end-p))
1114 (< dest (point)))
1115 (setq win (car windows))
1116 (setq windows (cdr windows)))))))
cb02be17 1117 (if win
e79016aa
KH
1118 (select-window win))
1119 win))
1120
1121
1122;;}}}
cb02be17 1123;;{{{ Redisplay
e79016aa
KH
1124
1125;; Redraw all the windows on the screen, starting with the top window.
1126;; The window used as as marker is WIN, or the selcted window if WIN
1127;; is nil.
1128
1129(defun follow-redisplay (&optional windows win)
1130 "Reposition the WINDOWS around WIN.
1131Should the point be too close to the roof we redisplay everything
8cd3480b 1132from the top. WINDOWS should contain a list of windows to
cb02be17 1133redisplay, it is assumed that WIN is a member of the list.
e79016aa
KH
1134Should WINDOWS be nil, the windows displaying the
1135same buffer as WIN, in the current frame, are used.
cb02be17 1136Should WIN be nil, the selected window is used."
e79016aa
KH
1137 (or win
1138 (setq win (selected-window)))
cb02be17 1139 (or windows
e79016aa
KH
1140 (setq windows (follow-all-followers win)))
1141 (follow-downward windows (follow-calculate-first-window-start windows win)))
1142
1143
1144;; Redisplay a chain of windows. Start every window directly after the
1145;; end of the previous window, to make sure long lines are displayed
1146;; correctly.
1147
1148(defun follow-downward (windows pos)
1149 "Redisplay all WINDOWS starting at POS."
1150 (while windows
1151 (set-window-start (car windows) pos)
1152 (setq pos (car (follow-calc-win-end (car windows))))
1153 (setq windows (cdr windows))))
1154
1155
1156;;(defun follow-downward (windows pos)
1157;; "Redisplay all WINDOWS starting at POS."
1158;; (let (p)
1159;; (while windows
1160;; (setq p (window-point (car windows)))
1161;; (set-window-start (car windows) pos)
1162;; (set-window-point (car windows) (max p pos))
1163;; (setq pos (car (follow-calc-win-end (car windows))))
1164;; (setq windows (cdr windows)))))
1165
1166
1167;; Return the start of the first window.
1168;;
1169;; First, estimate the position. It the value is not perfect (i.e. we
1170;; have somewhere splited a line between windows) we try to enhance
1171;; the value.
1172;;
1173;; The guess is always perfect if no long lines is split between
1174;; windows.
1175;;
1176;; The worst case peformace of probably very bad, but it is very
1177;; unlikely that we ever will miss the correct start by more than one
1178;; or two lines.
1179
1180(defun follow-calculate-first-window-start (windows &optional win start)
1181 "Calculate the start of the first window.
1182
1183WINDOWS is a chain of windows to work with. WIN is the window
cb02be17 1184to recenter around. It is assumed that WIN starts at position
e79016aa 1185START."
cb02be17 1186 (or win
e79016aa 1187 (setq win (selected-window)))
cb02be17 1188 (or start
e79016aa
KH
1189 (setq start (window-start win)))
1190 (let ((guess (follow-estimate-first-window-start windows win start)))
1191 (if (car guess)
1192 (cdr guess)
1193 ;; The guess wasn't exact, try to enhance it.
1194 (let ((win-start (follow-calc-win-start windows (cdr guess) win)))
cb02be17 1195 (cond ((= win-start start)
e79016aa
KH
1196 (follow-debug-message "exact")
1197 (cdr guess))
1198 ((< win-start start)
1199 (follow-debug-message "above")
cb02be17 1200 (follow-calculate-first-window-start-from-above
e79016aa
KH
1201 windows (cdr guess) win start))
1202 (t
1203 (follow-debug-message "below")
cb02be17 1204 (follow-calculate-first-window-start-from-below
e79016aa
KH
1205 windows (cdr guess) win start)))))))
1206
1207
1208;; `exact' is disabled due to XEmacs and fonts of variable
1209;; height.
1210(defun follow-estimate-first-window-start (windows win start)
1211 "Estimate the position of the first window.
1212
8cd3480b
JB
1213Returns (EXACT . POS). If EXACT is non-nil, POS is the starting
1214position of the first window. Otherwise it is a good guess."
e79016aa
KH
1215 (let ((pred (car (follow-split-followers windows win)))
1216 (exact nil))
1217 (save-excursion
1218 (goto-char start)
1219 ;(setq exact (bolp))
1220 (vertical-motion 0 win)
1221 (while pred
1222 (vertical-motion (- 1 (window-height (car pred))) (car pred))
1223 (if (not (bolp))
1224 (setq exact nil))
1225 (setq pred (cdr pred)))
1226 (cons exact (point)))))
1227
1228
1229;; Find the starting point, start at GUESS and search downward.
1230;; The returned point is always a point below GUESS.
1231
cb02be17 1232(defun follow-calculate-first-window-start-from-above
e79016aa
KH
1233 (windows guess win start)
1234 (save-excursion
1235 (let ((done nil)
1236 win-start
1237 res)
1238 (goto-char guess)
1239 (while (not done)
1240 (if (not (= (vertical-motion 1 (car windows)) 1))
1241 ;; Hit bottom! (Can we really do this?)
1242 ;; We'll keep it, since it ensures termination.
1243 (progn
1244 (setq done t)
1245 (setq res (point-max)))
1246 (setq win-start (follow-calc-win-start windows (point) win))
1247 (if (>= win-start start)
cb02be17 1248 (progn
e79016aa
KH
1249 (setq done t)
1250 (setq res (point))))))
1251 res)))
1252
1253
1254;; Find the starting point, start at GUESS and search upward. Return
1255;; a point on the same line as GUESS, or above.
1256;;
1257;; (Is this ever used? I must make sure it works just in case it is
1258;; ever called.)
1259
1260(defun follow-calculate-first-window-start-from-below
1261 (windows guess &optional win start)
1262 (setq win (or win (selected-window)))
1263 (setq start (or start (window-start win)))
1264 (save-excursion
1265 (let ((done nil)
1266 win-start
1267 res)
fc779383 1268 ;; Always calculate what happens when no line is displayed in the first
e79016aa
KH
1269 ;; window. (The `previous' res is needed below!)
1270 (goto-char guess)
1271 (vertical-motion 0 (car windows))
1272 (setq res (point))
1273 (while (not done)
1274 (if (not (= (vertical-motion -1 (car windows)) -1))
1275 ;; Hit roof!
1276 (progn
1277 (setq done t)
1278 (setq res (point-min)))
1279 (setq win-start (follow-calc-win-start windows (point) win))
1280 (cond ((= win-start start) ; Perfect match, use this value
1281 (setq done t)
1282 (setq res (point)))
1283 ((< win-start start) ; Walked to far, use preious result
1284 (setq done t))
1285 (t ; Store result for next iteration
1286 (setq res (point))))))
1287 res)))
1288
1289;;}}}
1290;;{{{ Avoid tail recenter
1291
1292;; This sets the window internal flag `force_start'. The effect is that
1293;; windows only displaying the tail isn't recentered.
1294;; Has to be called before every redisplay... (Great isn't it?)
1295;;
1296;; XEmacs doesn't recenter the tail, GOOD!
1297;;
1298;; A window displaying only the tail, is a windows whose
1299;; window-start position is equal to (point-max) of the buffer it
1300;; displays.
1301;;
1302;; This function is also added to `post-command-idle-hook', introduced
1303;; in Emacs 19.30. This is needed since the vaccine injected by the
1304;; call from `post-command-hook' only works until the next redisplay.
1305;; It is possible that the functions in the `post-command-idle-hook'
1306;; can cause a redisplay, and hence a new vaccine is needed.
1307;;
1308;; Sometimes, calling this function could actually cause a redisplay,
1309;; especially if it is placed in the debug filter section. I must
1310;; investigate this further...
1311
1312(defun follow-avoid-tail-recenter (&rest rest)
1313 "Make sure windows displaying the end of a buffer aren't recentered.
1314
7194219d 1315This is done by reading and rewriting the start position of
17f6d002 1316non-first windows in Follow mode."
e79016aa
KH
1317 (if follow-avoid-tail-recenter-p
1318 (let* ((orig-buffer (current-buffer))
f3bfa025
KH
1319 (top (frame-first-window (selected-frame)))
1320 (win top)
1321 (who '()) ; list of (buffer . frame)
1322 start
1323 pair) ; (buffer . frame)
1324 ;; If the only window in the frame is a minibuffer
1325 ;; window, `next-window' will never find it again...
1326 (if (window-minibuffer-p top)
1327 nil
1328 (while ;; look, no body!
1329 (progn
1330 (setq start (window-start win))
1331 (set-buffer (window-buffer win))
1332 (setq pair (cons (window-buffer win) (window-frame win)))
1333 (if (member pair who)
cb02be17 1334 (if (and (boundp 'follow-mode) follow-mode
f3bfa025
KH
1335 (eq (point-max) start))
1336 ;; Write the same window start back, but don't
1337 ;; set the NOFORCE flag.
1338 (set-window-start win start))
1339 (setq who (cons pair who)))
1340 (setq win (next-window win 'not t))
1341 (not (eq win top)))) ;; Loop while this is true.
1342 (set-buffer orig-buffer)))))
e79016aa
KH
1343
1344;;}}}
1345
1346;;}}}
1347;;{{{ Post Command Hook
1348
08a1dbe6 1349;; The magic little box. This function is called after every command.
e79016aa
KH
1350
1351;; This is not as complicated as it seems. It is simply a list of common
1352;; display situations and the actions to take, plus commands for redrawing
1353;; the screen if it should be unaligned.
1354;;
1355;; We divide the check into two parts; whether we are at the end or not.
1356;; This is due to the fact that the end can actaually be visible
1357;; in several window even though they are aligned.
1358
1359(defun follow-post-command-hook ()
cb02be17 1360 "Ensure that the windows in Follow mode are adjacent after each command."
e79016aa
KH
1361 (setq follow-inside-post-command-hook t)
1362 (if (or (not (input-pending-p))
1363 ;; Sometimes, in XEmacs, mouse events are not handled
1364 ;; properly by `input-pending-p'. A typical example is
1365 ;; when clicking on a node in `info'.
1366 (and (boundp 'current-mouse-event)
1367 (symbol-value 'current-mouse-event)
1368 (fboundp 'button-event-p)
1369 (funcall (symbol-function 'button-event-p)
1370 (symbol-value 'current-mouse-event))))
1371 ;; Work in the selected window, not in the current buffer.
1372 (let ((orig-buffer (current-buffer))
1373 (win (selected-window)))
1374 (set-buffer (window-buffer win))
cb02be17 1375 (or (and (symbolp this-command)
f3bfa025
KH
1376 (get this-command 'follow-mode-use-cache))
1377 (follow-invalidate-cache))
e79016aa
KH
1378 (if (and (boundp 'follow-mode) follow-mode
1379 (not (window-minibuffer-p win)))
1380 ;; The buffer shown in the selected window is in follow
1381 ;; mode, lets find the current state of the display and
1382 ;; cache the result for speed (i.e. `aligned' and `visible'.)
1383 (let* ((windows (inline (follow-all-followers win)))
1384 (dest (point))
f3bfa025 1385 (win-start-end (inline
e79016aa
KH
1386 (follow-update-window-start (car windows))
1387 (follow-windows-start-end windows)))
1388 (aligned (follow-windows-aligned-p win-start-end))
1389 (visible (follow-pos-visible dest win win-start-end)))
f3bfa025
KH
1390 (if (not (and aligned visible))
1391 (follow-invalidate-cache))
1392 (inline (follow-avoid-tail-recenter))
e79016aa
KH
1393 ;; Select a window to display the point.
1394 (or follow-internal-force-redisplay
1395 (progn
1396 (if (eq dest (point-max))
d4b6b1af 1397 ;; We're at the end, we have to be careful since
e79016aa
KH
1398 ;; the display can be aligned while `dest' can
1399 ;; be visible in several windows.
1400 (cond
1401 ;; Select the current window, but only when
1402 ;; the display is correct. (When inserting
1403 ;; character in a tail window, the display is
1404 ;; not correct, as they are shown twice.)
1405 ;;
1406 ;; Never stick to the current window after a
1407 ;; deletion. The reason is cosmetic, when
1408 ;; typing `DEL' in a window showing only the
1409 ;; end of the file, character are removed
1410 ;; from the window above, which is very
1411 ;; unintuitive.
1412 ((and visible
1413 aligned
cb02be17 1414 (not (memq this-command
e79016aa
KH
1415 '(backward-delete-char
1416 delete-backward-char
1417 backward-delete-char-untabify
1418 kill-region))))
1419 (follow-debug-message "Max: same"))
1420 ;; If the end is visible, and the window
1421 ;; doesn't seems like it just has been moved,
1422 ;; select it.
1423 ((follow-select-if-end-visible win-start-end)
1424 (follow-debug-message "Max: end visible")
1425 (setq visible t)
1426 (setq aligned nil)
1427 (goto-char dest))
1428 ;; Just show the end...
1429 (t
1430 (follow-debug-message "Max: default")
1431 (select-window (car (reverse windows)))
1432 (goto-char dest)
1433 (setq visible nil)
1434 (setq aligned nil)))
cb02be17 1435
e79016aa
KH
1436 ;; We're not at the end, here life is much simpler.
1437 (cond
cb02be17 1438 ;; This is the normal case!
e79016aa
KH
1439 ;; It should be optimized for speed.
1440 ((and visible aligned)
1441 (follow-debug-message "same"))
1442 ;; Pick a position in any window. If the
1443 ;; display is ok, this will pick the `correct'
1444 ;; window. If the display is wierd do this
1445 ;; anyway, this will be the case after a delete
1446 ;; at the beginning of the window.
1447 ((follow-select-if-visible dest win-start-end)
1448 (follow-debug-message "visible")
1449 (setq visible t)
1450 (goto-char dest))
1451 ;; Not visible anywhere else, lets pick this one.
1452 ;; (Is this case used?)
1453 (visible
1454 (follow-debug-message "visible in selected."))
1455 ;; Far out!
1456 ((eq dest (point-min))
1457 (follow-debug-message "min")
1458 (select-window (car windows))
1459 (goto-char dest)
1460 (set-window-start (selected-window) (point-min))
1461 (setq win-start-end (follow-windows-start-end windows))
f3bfa025 1462 (follow-invalidate-cache)
e79016aa
KH
1463 (setq visible t)
1464 (setq aligned nil))
1465 ;; If we can position the cursor without moving the first
ff753438 1466 ;; window, do it. This is the case that catches `RET'
e79016aa
KH
1467 ;; at the bottom of a window.
1468 ((follow-select-if-visible-from-first dest windows)
1469 (follow-debug-message "Below first")
cb02be17 1470 (setq visible t)
e79016aa
KH
1471 (setq aligned t)
1472 (follow-redisplay windows (car windows))
1473 (goto-char dest))
1474 ;; None of the above. For simplicity, we stick to the
1475 ;; selected window.
1476 (t
1477 (follow-debug-message "None")
1478 (setq visible nil)
1479 (setq aligned nil))))
1480 ;; If a new window has been selected, make sure that the
1481 ;; old is not scrolled when the point is outside the
1482 ;; window.
1483 (or (eq win (selected-window))
1484 (let ((p (window-point win)))
1485 (set-window-start win (window-start win) nil)
1486 (set-window-point win p)))))
1487 ;; Make sure the point is visible in the selected window.
1488 ;; (This could lead to a scroll.)
1489 (if (or visible
1490 (follow-pos-visible dest win win-start-end))
1491 nil
1492 (sit-for 0)
1493 (follow-avoid-tail-recenter)
1494 (setq win-start-end (follow-windows-start-end windows))
f3bfa025 1495 (follow-invalidate-cache)
e79016aa
KH
1496 (setq aligned nil))
1497 ;; Redraw the windows whenever needed.
1498 (if (or follow-internal-force-redisplay
1499 (not (or aligned
1500 (follow-windows-aligned-p win-start-end)))
cb02be17 1501 (not (inline (follow-point-visible-all-windows-p
e79016aa
KH
1502 win-start-end))))
1503 (progn
1504 (setq follow-internal-force-redisplay nil)
1505 (follow-redisplay windows (selected-window))
1506 (setq win-start-end (follow-windows-start-end windows))
f3bfa025 1507 (follow-invalidate-cache)
e79016aa 1508 ;; When the point ends up in another window. This
fc779383 1509 ;; happens when dest is in the beginning of the
e79016aa 1510 ;; file and the selected window is not the first.
fc779383 1511 ;; It can also, in rare situations happen when
e79016aa
KH
1512 ;; long lines are used and there is a big
1513 ;; difference between the width of the windows.
1514 ;; (When scrolling one line in a wide window which
1515 ;; will cause a move larger that an entire small
1516 ;; window.)
1517 (if (follow-pos-visible dest win win-start-end)
1518 nil
1519 (follow-select-if-visible dest win-start-end)
1520 (goto-char dest))))
cb02be17 1521
e79016aa
KH
1522 ;; If the region is visible, make it look good when spanning
1523 ;; multiple windows.
1524 (if (or (and (boundp 'mark-active) (symbol-value 'mark-active))
ddb74107
RS
1525 ;; The following isn't used in Emacs,
1526 ;; since `mark-active' is bound.
cb02be17 1527 (and (fboundp 'region-active-p)
e79016aa 1528 (funcall (symbol-function 'region-active-p))))
cb02be17 1529 (follow-maximize-region
e79016aa
KH
1530 (selected-window) windows win-start-end))
1531
f3bfa025 1532 (inline (follow-avoid-tail-recenter))
e79016aa 1533 ;; DEBUG
cb02be17 1534 ;;(if (not (follow-windows-aligned-p
e79016aa
KH
1535 ;; (follow-windows-start-end windows)))
1536 ;; (message "follow-mode: windows still unaligend!"))
1537 ;; END OF DEBUG
1538 ) ; Matches (let*
1539 ;; Buffer not in follow mode:
1540 ;; We still must update the windows displaying the tail so that
1541 ;; Emacs won't recenter them.
1542 (follow-avoid-tail-recenter))
1543 (set-buffer orig-buffer)))
1544 (setq follow-inside-post-command-hook nil))
1545
1546;;}}}
1547;;{{{ The region
1548
1549;; Tries to make the highlighted area representing the region look
cb02be17 1550;; good when spanning several windows.
e79016aa
KH
1551;;
1552;; Not perfect, as the point can't be placed at window end, only at
cb02be17 1553;; end-1. This will highlight a little bit in windows above
e79016aa
KH
1554;; the current.
1555
1556(defun follow-maximize-region (win windows win-start-end)
cb02be17 1557 "Make a highlighted region stretching multiple windows look good."
e79016aa
KH
1558 (let* ((all (follow-split-followers windows win))
1559 (pred (car all))
1560 (succ (cdr all))
1561 data)
1562 (while pred
1563 (setq data (assq (car pred) win-start-end))
1564 (set-window-point (car pred) (max (nth 1 data) (- (nth 2 data) 1)))
1565 (setq pred (cdr pred)))
1566 (while succ
1567 (set-window-point (car succ) (nth 1 (assq (car succ) win-start-end)))
1568 (setq succ (cdr succ)))))
1569
1570;;}}}
1571;;{{{ Scroll bar
1572
1573;;;; Scroll-bar support code.
1574
08a1dbe6
SM
1575;; Why is it needed? Well, if the selected window is in follow mode,
1576;; all its follower stick to it blindly. If one of them is scrolled,
1577;; it immediately returns to the original position when the mouse is
1578;; released. If the selected window is not a follower of the dragged
1579;; window the windows will be unaligned.
e79016aa 1580
08a1dbe6
SM
1581;; The advices doesn't get compiled. Aestetically, this might be a
1582;; problem but in practical life it isn't.
e79016aa 1583
08a1dbe6
SM
1584;; Discussion: Now when the other windows in the chain follow the
1585;; dragged, should we really select it?
e79016aa
KH
1586
1587(cond ((fboundp 'scroll-bar-drag)
1588 ;;;
ff753438 1589 ;;; Emacs style scrollbars.
e79016aa
KH
1590 ;;;
1591
1592 ;; Select the dragged window if it is a follower of the
1593 ;; selected window.
1594 ;;
1595 ;; Generate advices of the form:
1596 ;; (defadvice scroll-bar-drag (after follow-scroll-bar-drag activate)
1597 ;; "Adviced by `follow-mode'."
1598 ;; (follow-redraw-after-event (ad-get-arg 0)))
1599 (let ((cmds '(scroll-bar-drag
1600 scroll-bar-drag-1 ; Executed at every move.
1601 scroll-bar-scroll-down
1602 scroll-bar-scroll-up
1603 scroll-bar-set-window-start)))
1604 (while cmds
1605 (eval
c86b6fd2 1606 `(defadvice ,(intern (symbol-name (car cmds)))
cb02be17 1607 (after
c86b6fd2 1608 ,(intern (concat "follow-" (symbol-name (car cmds))))
e79016aa 1609 activate)
17f6d002 1610 "Adviced by Follow mode."
c86b6fd2 1611 (follow-redraw-after-event (ad-get-arg 0))))
e79016aa 1612 (setq cmds (cdr cmds))))
cb02be17
KH
1613
1614
e79016aa
KH
1615 (defun follow-redraw-after-event (event)
1616 "Adviced by Follow mode."
1617 (condition-case nil
1618 (let* ((orig-win (selected-window))
cb02be17 1619 (win (nth 0 (funcall
e79016aa 1620 (symbol-function 'event-start) event)))
cb02be17
KH
1621 (fmode (assq 'follow-mode
1622 (buffer-local-variables
e79016aa
KH
1623 (window-buffer win)))))
1624 (if (and fmode (cdr fmode))
1625 ;; The selected window is in follow-mode
1626 (progn
1627 ;; Recenter around the dragged window.
1628 (select-window win)
1629 (follow-redisplay)
1630 (select-window orig-win))))
1631 (error nil))))
1632
1633
1634 ((fboundp 'scrollbar-vertical-drag)
1635 ;;;
1636 ;;; XEmacs style scrollbars.
1637 ;;;
1638
1639 ;; Advice all scrollbar functions on the form:
1640 ;;
cb02be17 1641 ;; (defadvice scrollbar-line-down
e79016aa
KH
1642 ;; (after follow-scrollbar-line-down activate)
1643 ;; (follow-xemacs-scrollbar-support (ad-get-arg 0)))
1644
1645 (let ((cmds '(scrollbar-line-down ; Window
1646 scrollbar-line-up
1647 scrollbar-page-down ; Object
1648 scrollbar-page-up
1649 scrollbar-to-bottom ; Window
1650 scrollbar-to-top
1651 scrollbar-vertical-drag ; Object
1652 )))
cb02be17 1653
e79016aa
KH
1654 (while cmds
1655 (eval
c86b6fd2 1656 `(defadvice ,(intern (symbol-name (car cmds)))
cb02be17 1657 (after
c86b6fd2 1658 ,(intern (concat "follow-" (symbol-name (car cmds))))
e79016aa
KH
1659 activate)
1660 "Adviced by `follow-mode'."
c86b6fd2 1661 (follow-xemacs-scrollbar-support (ad-get-arg 0))))
e79016aa
KH
1662 (setq cmds (cdr cmds))))
1663
1664
1665 (defun follow-xemacs-scrollbar-support (window)
1666 "Redraw windows showing the same buffer as shown in WINDOW.
1667WINDOW is either the dragged window, or a cons containing the
8cd3480b 1668window as its first element. This is called while the user drags
e79016aa
KH
1669the scrollbar.
1670
1671WINDOW can be an object or a window."
1672 (condition-case nil
1673 (progn
1674 (if (consp window)
1675 (setq window (car window)))
cb02be17
KH
1676 (let ((fmode (assq 'follow-mode
1677 (buffer-local-variables
e79016aa
KH
1678 (window-buffer window))))
1679 (orig-win (selected-window)))
1680 (if (and fmode (cdr fmode))
1681 (progn
1682 ;; Recenter around the dragged window.
1683 (select-window window)
1684 (follow-redisplay)
1685 (select-window orig-win)))))
1686 (error nil)))))
1687
1688;;}}}
1689;;{{{ Process output
1690
08a1dbe6
SM
1691;; The following sections installs a spy that listens to process
1692;; output and tries to reposition the windows whose buffers are in
1693;; Follow mode. We play safe as much as possible...
1694;;
1695;; When follow-mode is activated all active processes are
1696;; intercepted. All new processes that change their filter function
1697;; using `set-process-filter' are also intercepted. The reason is
1698;; that a process can cause a redisplay recentering "tail" windows.
1699;; Note that it doesn't hurt to spy on more processes than needed.
1700;;
1701;; Technically, we set the process filter to `follow-generic-filter'.
1702;; The original filter is stored in `follow-process-filter-alist'.
1703;; Our generic filter calls the original filter, or inserts the
1704;; output into the buffer, if the buffer originally didn't have an
1705;; output filter. It also makes sure that the windows connected to
1706;; the buffer are aligned.
1707;;
1708;; Discussion: How do we find processes that don't call
1709;; `set-process-filter'? (How often are processes created in a
1710;; buffer after Follow mode are activated?)
1711;;
1712;; Discussion: Should we also advice `process-filter' to make our
1713;; filter invisible to others?
e79016aa
KH
1714
1715;;{{{ Advice for `set-process-filter'
1716
1717;; Do not call this with 'follow-generic-filter as the name of the
1718;; filter...
1719
1720(defadvice set-process-filter (before follow-set-process-filter activate)
17f6d002 1721 "Ensure process output will be displayed correctly in Follow mode buffers.
e79016aa 1722
17f6d002 1723Follow mode inserts its own process filter to do its
e79016aa
KH
1724magic stuff before the real process filter is called."
1725 (if follow-intercept-processes
1726 (progn
1727 (setq follow-process-filter-alist
1728 (delq (assq (ad-get-arg 0) follow-process-filter-alist)
1729 follow-process-filter-alist))
1730 (follow-tidy-process-filter-alist)
1731 (cond ((eq (ad-get-arg 1) t))
1732 ((eq (ad-get-arg 1) nil)
1733 (ad-set-arg 1 'follow-generic-filter))
1734 (t
cb02be17
KH
1735 (setq follow-process-filter-alist
1736 (cons (cons (ad-get-arg 0) (ad-get-arg 1))
e79016aa
KH
1737 follow-process-filter-alist))
1738 (ad-set-arg 1 'follow-generic-filter))))))
1739
1740
1741(defun follow-call-set-process-filter (proc filter)
1742 "Call original `set-process-filter' without the Follow mode advice."
1743 (ad-disable-advice 'set-process-filter 'before
1744 'follow-set-process-filter)
1745 (ad-activate 'set-process-filter)
cb02be17 1746 (prog1
e79016aa
KH
1747 (set-process-filter proc filter)
1748 (ad-enable-advice 'set-process-filter 'before
1749 'follow-set-process-filter)
1750 (ad-activate 'set-process-filter)))
1751
1752
1753(defadvice process-filter (after follow-process-filter activate)
cb02be17 1754 "Return the original process filter, not `follow-generic-filter'."
e79016aa
KH
1755 (cond ((eq ad-return-value 'follow-generic-filter)
1756 (setq ad-return-value
cb02be17 1757 (cdr-safe (assq (ad-get-arg 0)
e79016aa
KH
1758 follow-process-filter-alist))))))
1759
1760
1761(defun follow-call-process-filter (proc)
1762 "Call original `process-filter' without the Follow mode advice."
1763 (ad-disable-advice 'process-filter 'after
1764 'follow-process-filter)
1765 (ad-activate 'process-filter)
cb02be17 1766 (prog1
e79016aa 1767 (process-filter proc)
cb02be17 1768 (ad-enable-advice 'process-filter 'after
e79016aa
KH
1769 'follow-process-filter)
1770 (ad-activate 'process-filter)))
cb02be17 1771
e79016aa
KH
1772
1773(defun follow-tidy-process-filter-alist ()
1774 "Remove old processes from `follow-process-filter-alist'."
1775 (let ((alist follow-process-filter-alist)
1776 (ps (process-list))
1777 (new ()))
1778 (while alist
cb02be17 1779 (if (and (not (memq (process-status (car (car alist)))
e79016aa
KH
1780 '(exit signal closed nil)))
1781 (memq (car (car alist)) ps))
1782 (setq new (cons (car alist) new)))
1783 (setq alist (cdr alist)))
1784 (setq follow-process-filter-alist new)))
1785
1786;;}}}
1787;;{{{ Start/stop interception of processes.
1788
1789;; Normally, all new processed are intercepted by our `set-process-filter'.
ff753438 1790;; This is needed to intercept old processed that were started before we were
e79016aa
KH
1791;; loaded, and processes we have forgotten by calling
1792;; `follow-stop-intercept-process-output'.
1793
1794(defun follow-intercept-process-output ()
1795 "Intercept all active processes.
1796
17f6d002 1797This is needed so that Follow mode can track all display events in the
8cd3480b 1798system. (See `follow-mode'.)"
e79016aa
KH
1799 (interactive)
1800 (let ((list (process-list)))
1801 (while list
1802 (if (eq (process-filter (car list)) 'follow-generic-filter)
1803 nil
1804 ;; The custom `set-process-filter' defined above.
1805 (set-process-filter (car list) (process-filter (car list))))
1806 (setq list (cdr list))))
1807 (setq follow-intercept-processes t))
1808
1809
1810(defun follow-stop-intercept-process-output ()
17f6d002 1811 "Stop Follow mode from spying on processes.
e79016aa
KH
1812
1813All current spypoints are removed and no new will be added.
1814
cb02be17
KH
1815The effect is that Follow mode won't be able to handle buffers
1816connected to processes.
e79016aa
KH
1817
1818The only reason to call this function is if the Follow mode spy filter
1819would interfere with some other package. If this happens, please
08a1dbe6 1820report this using the `report-emacs-bug' function."
e79016aa
KH
1821 (interactive)
1822 (follow-tidy-process-filter-alist)
1ee4a6c5
JB
1823 (dolist (process (process-list))
1824 (when (eq (follow-call-process-filter process) 'follow-generic-filter)
1825 (follow-call-set-process-filter
1826 process
1827 (cdr-safe (assq process follow-process-filter-alist)))
1828 (setq follow-process-filter-alist
1829 (delq (assq process follow-process-filter-alist)
1830 follow-process-filter-alist))))
e79016aa
KH
1831 (setq follow-intercept-processes nil))
1832
1833;;}}}
1834;;{{{ The filter
1835
08a1dbe6
SM
1836;; The following section is a naive method to make buffers with
1837;; process output to work with Follow mode. Whenever the start of the
1838;; window displaying the buffer is moved, we moves it back to its
1839;; original position and try to select a new window. (If we fail,
1840;; the normal redisplay functions of Emacs will scroll it right
1841;; back!)
e79016aa
KH
1842
1843(defun follow-generic-filter (proc output)
1844 "Process output filter for process connected to buffers in Follow mode."
1845 (let* ((old-buffer (current-buffer))
1846 (orig-win (selected-window))
1847 (buf (process-buffer proc))
1848 (win (and buf (if (eq buf (window-buffer orig-win))
1849 orig-win
1850 (get-buffer-window buf t))))
1851 (return-to-orig-win (and win (not (eq win orig-win))))
1852 (orig-window-start (and win (window-start win))))
1853
1854 ;; If input is pending, the `sit-for' below won't redraw the
1855 ;; display. In that case, calling `follow-avoid-tail-recenter' may
1856 ;; provoke the process hadnling code to sceduling a redisplay.
1857 ;(or (input-pending-p)
1858 ; (follow-avoid-tail-recenter))
1859
1860 ;; Output the `output'.
1861 (let ((filter (cdr-safe (assq proc follow-process-filter-alist))))
cb02be17 1862 (cond
e79016aa
KH
1863 ;; Call the original filter function
1864 (filter
1865 (funcall filter proc output))
1866
1867 ;; No filter, but we've got a buffer. Just output into it.
1868 (buf
1869 (set-buffer buf)
1870 (if (not (marker-buffer (process-mark proc)))
1871 (set-marker (process-mark proc) (point-max)))
1872 (let ((moving (= (point) (process-mark proc)))
bbf04be4
RS
1873 deactivate-mark
1874 (inhibit-read-only t))
e79016aa
KH
1875 (save-excursion
1876 (goto-char (process-mark proc))
1877 ;; `insert-before-markers' just in case the users next
1878 ;; command is M-y.
1879 (insert-before-markers output)
1880 (set-marker (process-mark proc) (point)))
bbf04be4 1881 (if moving (goto-char (process-mark proc)))))))
e79016aa
KH
1882
1883 ;; If we're in follow mode, do our stuff. Select a new window and
1884 ;; redisplay. (Actually, it is redundant to check `buf', but I
1885 ;; feel it's more correct.)
09c013ef 1886 (if (and buf (window-live-p win))
e79016aa
KH
1887 (progn
1888 (set-buffer buf)
1889 (if (and (boundp 'follow-mode) follow-mode)
cb02be17 1890 (progn
e79016aa
KH
1891 (select-window win)
1892 (let* ((windows (follow-all-followers win))
1893 (win-start-end (follow-windows-start-end windows))
1894 (new-window-start (window-start win))
1895 (new-window-point (window-point win)))
1896 (cond
bb40a524
PJ
1897 ;; The start of the selected window was repositioned.
1898 ;; Try to use the original start position and continue
1899 ;; working with a window to the "right" in the window
1900 ;; chain. This will create the effect that the output
1901 ;; starts in one window and continues into the next.
1902
1903 ;; If the display has changed so much that it is not
1904 ;; possible to keep the original window fixed and still
1905 ;; display the point then we give up and use the new
1906 ;; window start.
1907
1908 ;; This case is typically used when the process filter
1909 ;; tries to reposition the start of the window in order
1910 ;; to view the tail of the output.
e79016aa
KH
1911 ((not (eq orig-window-start new-window-start))
1912 (follow-debug-message "filter: Moved")
1913 (set-window-start win orig-window-start)
1914 (follow-redisplay windows win)
1915 (setq win-start-end (follow-windows-start-end windows))
cb02be17 1916 (follow-select-if-visible new-window-point
e79016aa
KH
1917 win-start-end)
1918 (goto-char new-window-point)
1919 (if (eq win (selected-window))
1920 (set-window-start win new-window-start))
1921 (setq win-start-end (follow-windows-start-end windows)))
1922 ;; Stick to this window, if point is visible in it.
1923 ((pos-visible-in-window-p new-window-point)
1924 (follow-debug-message "filter: Visible in window"))
1925 ;; Avoid redisplaying the first window. If the
1926 ;; point is visible at a window below,
1927 ;; redisplay and select it.
cb02be17 1928 ((follow-select-if-visible-from-first
e79016aa
KH
1929 new-window-point windows)
1930 (follow-debug-message "filter: Seen from first")
1931 (follow-redisplay windows (car windows))
1932 (goto-char new-window-point)
1933 (setq win-start-end
1934 (follow-windows-start-end windows)))
1935 ;; None of the above. We stick to the current window.
cb02be17 1936 (t
e79016aa
KH
1937 (follow-debug-message "filter: nothing")))
1938
1939 ;; Here we have slected a window. Make sure the
1940 ;; windows are aligned and the point is visible
1941 ;; in the selected window.
cb02be17 1942 (if (and (not (follow-pos-visible
e79016aa
KH
1943 (point) (selected-window) win-start-end))
1944 (not return-to-orig-win))
1945 (progn
1946 (sit-for 0)
cb02be17 1947 (setq win-start-end
e79016aa
KH
1948 (follow-windows-start-end windows))))
1949
1950 (if (or follow-internal-force-redisplay
1951 (not (follow-windows-aligned-p win-start-end)))
1952 (follow-redisplay windows)))))))
1953
1954 ;; return to the original window.
1955 (if return-to-orig-win
1956 (select-window orig-win))
c8d05b03
KH
1957 ;; Restore the orignal buffer, unless the filter explicitly
1958 ;; changed buffer or killed the old buffer.
1959 (if (and (eq buf (current-buffer))
1960 (buffer-name old-buffer))
1961 (set-buffer old-buffer)))
cb02be17 1962
f3bfa025
KH
1963 (follow-invalidate-cache)
1964
1965 ;; Normally, if the display has been changed, it is redrawn. All
4b4d84b4
EZ
1966 ;; windows showing only the end of a buffer are unconditionally
1967 ;; recentered; we can't prevent that by calling
f3bfa025
KH
1968 ;; `follow-avoid-tail-recenter'.
1969 ;;
4b4d84b4
EZ
1970 ;; We force a redisplay here on our own, so Emacs does need to.
1971 ;; (However, redisplaying when there's input available just seems
1972 ;; to make things worse, so we exclude that case.)
f3bfa025
KH
1973 (if (and follow-avoid-tail-recenter-p
1974 (not (input-pending-p)))
1975 (sit-for 0)))
e79016aa
KH
1976
1977;;}}}
1978
1979;;}}}
1980;;{{{ Window size change
1981
1982;; In Emacs 19.29, the functions in `window-size-change-functions' are
1983;; called every time a window in a frame changes size. Most notably, it
1984;; is called after the frame has been resized.
1985;;
ff753438 1986;; We basically call our post-command-hook for every buffer that is
e79016aa
KH
1987;; visible in any window in the resized frame, which is in follow-mode.
1988;;
1989;; Since this function can be called indirectly from
1990;; `follow-post-command-hook' we have a potential infinite loop. We
1991;; handle this problem by simply not doing anything at all in this
1992;; situation. The variable `follow-inside-post-command-hook' contains
1993;; information about whether the execution actually is inside the
1994;; post-command-hook or not.
1995
1996(if (boundp 'window-size-change-functions)
1997 (add-hook 'window-size-change-functions 'follow-window-size-change))
1998
1999
2000(defun follow-window-size-change (frame)
2001 "Redraw all windows in FRAME, when in Follow mode."
7dcef48d
SM
2002 ;; Below, we call `post-command-hook'. This makes sure that we
2003 ;; don't start a mutually recursive endless loop.
e79016aa
KH
2004 (if follow-inside-post-command-hook
2005 nil
2006 (let ((buffers '())
2007 (orig-window (selected-window))
2008 (orig-buffer (current-buffer))
2009 (orig-frame (selected-frame))
2010 windows
2011 buf)
2012 (select-frame frame)
2013 (unwind-protect
cb02be17
KH
2014 (walk-windows
2015 (function
e79016aa
KH
2016 (lambda (win)
2017 (setq buf (window-buffer win))
2018 (if (memq buf buffers)
2019 nil
2020 (set-buffer buf)
2021 (if (and (boundp 'follow-mode)
2022 follow-mode)
2023 (progn
2024 (setq windows (follow-all-followers win))
2025 (if (memq orig-window windows)
2026 (progn
7dcef48d
SM
2027 ;; Make sure we're redrawing around the
2028 ;; selected window.
2029 ;;
2030 ;; We must be really careful not to do this
2031 ;; when we are (indirectly) called by
2032 ;; `post-command-hook'.
e79016aa
KH
2033 (select-window orig-window)
2034 (follow-post-command-hook)
2035 (setq orig-window (selected-window)))
2036 (follow-redisplay windows win))
2037 (setq buffers (cons buf buffers))))))))
2038 (select-frame orig-frame)
2039 (set-buffer orig-buffer)
2040 (select-window orig-window)))))
2041
2042;;}}}
2043
2044;;{{{ XEmacs isearch
2045
2046;; In XEmacs, isearch often finds matches in other windows than the
2047;; currently selected. However, when exiting the old window
2048;; configuration is restored, with the exception of the beginning of
2049;; the start of the window for the selected window. This is not much
2050;; help for us.
2051;;
2052;; We overwrite the stored window configuration with the current,
2053;; unless we are in `slow-search-mode', i.e. only a few lines
2054;; of text is visible.
2055
08a1dbe6 2056(if (featurep 'xemacs)
e79016aa
KH
2057 (defadvice isearch-done (before follow-isearch-done activate)
2058 (if (and (boundp 'follow-mode)
2059 follow-mode
2060 (boundp 'isearch-window-configuration)
2061 isearch-window-configuration
2062 (boundp 'isearch-slow-terminal-mode)
2063 (not isearch-slow-terminal-mode))
2064 (let ((buf (current-buffer)))
cb02be17 2065 (setq isearch-window-configuration
e79016aa
KH
2066 (current-window-configuration))
2067 (set-buffer buf)))))
2068
2069;;}}}
2070;;{{{ Tail window handling
2071
08a1dbe6 2072;; In Emacs (not XEmacs) windows showing nothing are sometimes
17f6d002 2073;; recentered. When in Follow mode, this is not desirable for
08a1dbe6
SM
2074;; non-first windows in the window chain. This section tries to
2075;; make the windows stay where they should be.
2076;;
2077;; If the display is updated, all windows starting at (point-max) are
2078;; going to be recentered at the next redisplay, unless we do a
2079;; read-and-write cycle to update the `force' flag inside the windows.
2080;;
2081;; In 19.30, a new varible `window-scroll-functions' is called every
2082;; time a window is recentered. It is not perfect for our situation,
2083;; since when it is called for a tail window, it is to late. However,
2084;; if it is called for another window, we can try to update our
2085;; windows.
2086;;
2087;; By patching `sit-for' we can make sure that to catch all explicit
2088;; updates initiated by lisp programs. Internal calls, on the other
2089;; hand, are not handled.
2090;;
2091;; Please note that the function `follow-avoid-tail-recenter' is also
2092;; called from other places, e.g. `post-command-hook' and
2093;; `post-command-idle-hook'.
e79016aa 2094
c8d05b03
KH
2095;; If this function is called it is too late for this window, but
2096;; we might save other windows from being recentered.
e79016aa
KH
2097
2098(if (and follow-avoid-tail-recenter-p (boundp 'window-scroll-functions))
2099 (add-hook 'window-scroll-functions 'follow-avoid-tail-recenter t))
2100
2101
ff753438 2102;; This prevents all packages that calls `sit-for' directly
e79016aa
KH
2103;; to recenter tail windows.
2104
2105(if follow-avoid-tail-recenter-p
2106 (defadvice sit-for (before follow-sit-for activate)
17f6d002 2107 "Adviced by Follow mode.
e79016aa
KH
2108
2109Avoid to recenter windows displaying only the end of a file as when
17f6d002 2110displaying a short file in two windows, using Follow mode."
e79016aa
KH
2111 (follow-avoid-tail-recenter)))
2112
2113
2114;; Without this advice, `mouse-drag-region' would start to recenter
2115;; tail windows.
2116
2117(if (and follow-avoid-tail-recenter-p
2118 (fboundp 'move-overlay))
2119 (defadvice move-overlay (before follow-move-overlay activate)
17f6d002 2120 "Adviced by Follow mode.
cb02be17
KH
2121Don't recenter windows showing only the end of a buffer.
2122This prevents `mouse-drag-region' from messing things up."
e79016aa
KH
2123 (follow-avoid-tail-recenter)))
2124
2125;;}}}
2126;;{{{ profile support
2127
2128;; The following (non-evaluated) section can be used to
2129;; profile this package using `elp'.
2130;;
2131;; Invalid indentation on purpose!
2132
2133(cond (nil
2134(setq elp-function-list
cb02be17
KH
2135 '(window-end
2136 vertical-motion
e79016aa
KH
2137 ; sit-for ;; elp can't handle advices...
2138 follow-mode
2139 follow-all-followers
cb02be17 2140 follow-split-followers
e79016aa
KH
2141 follow-redisplay
2142 follow-downward
2143 follow-calculate-first-window-start
2144 follow-estimate-first-window-start
2145 follow-calculate-first-window-start-from-above
2146 follow-calculate-first-window-start-from-below
2147 follow-calc-win-end
2148 follow-calc-win-start
2149 follow-pos-visible
2150 follow-windows-start-end
f3bfa025 2151 follow-cache-valid-p
e79016aa
KH
2152 follow-select-if-visible
2153 follow-select-if-visible-from-first
2154 follow-windows-aligned-p
2155 follow-point-visible-all-windows-p
2156 follow-avoid-tail-recenter
2157 follow-update-window-start
2158 follow-post-command-hook
2159 ))))
2160
2161;;}}}
2162
2163;;{{{ The end
2164
fc779383 2165(defun follow-unload-function ()
fc8c78cc 2166 "Unload Follow mode library."
fc779383
JB
2167 (easy-menu-remove-item nil '("Tools") "Follow")
2168 (follow-stop-intercept-process-output)
2169 (dolist (group '((before
2170 ;; XEmacs
2171 isearch-done
2172 ;; both
2173 set-process-filter sit-for move-overlay)
2174 (after
2175 ;; Emacs
2176 scroll-bar-drag scroll-bar-drag-1 scroll-bar-scroll-down
2177 scroll-bar-scroll-up scroll-bar-set-window-start
2178 ;; XEmacs
2179 scrollbar-line-down scrollbar-line-up scrollbar-page-down
2180 scrollbar-page-up scrollbar-to-bottom scrollbar-to-top
2181 scrollbar-vertical-drag
2182 ;; both
2183 process-filter)))
2184 (let ((class (car group)))
2185 (dolist (fun (cdr group))
2186 (when (functionp fun)
2187 (condition-case nil
2188 (progn
2189 (ad-remove-advice fun class
2190 (intern (concat "follow-" (symbol-name fun))))
2191 (ad-update fun))
2192 (error nil))))))
fc8c78cc 2193 ;; continue standard processing
fc779383
JB
2194 nil)
2195
08a1dbe6
SM
2196;;
2197;; We're done!
2198;;
e79016aa
KH
2199
2200(provide 'follow)
2201
2202;;}}}
2203
2204;; /------------------------------------------------------------------------\
2205;; | "I [..] am rarely happier then when spending an entire day programming |
2206;; | my computer to perform automatically a task that it would otherwise |
2207;; | take me a good ten seconds to do by hand. Ten seconds, I tell myself, |
2208;; | is ten seconds. Time is valuable and ten seconds' worth of it is well |
2209;; | worth the investment of a day's happy activity working out a way to |
2210;; | save it". -- Douglas Adams, "Last Chance to See" |
2211;; \------------------------------------------------------------------------/
2212
ffc30f4f 2213;; arch-tag: 7b16bb1a-808c-4991-a8cc-66d3822936d0
e79016aa 2214;;; follow.el ends here