Function: follow-scroll-down-window
follow-scroll-down-window is an autoloaded, interactive and
byte-compiled function defined in follow.el.gz.
Signature
(follow-scroll-down-window &optional ARG)
Documentation
Scroll text in a Follow mode window down by that window's size.
The other windows in the window chain will scroll synchronously.
If called with no ARG, the next-screen-context-lines top lines of
the window in the chain will be visible after the scroll.
If called with an argument, scroll ARG lines down. Negative ARG means scroll upward.
Works like scroll-down when not in Follow mode.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/follow.el.gz
;;;###autoload
(defun follow-scroll-down-window (&optional arg)
"Scroll text in a Follow mode window down by that window's size.
The other windows in the window chain will scroll synchronously.
If called with no ARG, the `next-screen-context-lines' top lines of
the window in the chain will be visible after the scroll.
If called with an argument, scroll ARG lines down.
Negative ARG means scroll upward.
Works like `scroll-down' when not in Follow mode."
(interactive "P")
(cond ((not follow-mode)
(scroll-down-command arg))
((eq arg '-)
(follow-scroll-up-window))
(t (follow-scroll-down-arg arg))))