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