Function: View-revert-buffer-scroll-page-forward
View-revert-buffer-scroll-page-forward is an interactive and
byte-compiled function defined in view.el.gz.
Signature
(View-revert-buffer-scroll-page-forward &optional LINES)
Documentation
Scroll forward, reverting buffer if needed, in View mode.
If buffer has not been changed and the corresponding file is newer, first revert the buffer, then scroll. This command is useful if you are viewing a changing file.
The prefix argument LINES says how many lines to scroll.
If you don't specify a prefix argument, it uses the number of lines set by
M-x View-scroll-page-forward-set-page-size (View-scroll-page-forward-set-page-size) or
M-x View-scroll-page-backward-set-page-size (View-scroll-page-backward-set-page-size).
If LINES is more than a window-full, only the last window-full is shown.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/view.el.gz
(defun View-revert-buffer-scroll-page-forward (&optional lines)
"Scroll forward, reverting buffer if needed, in View mode.
If buffer has not been changed and the corresponding file is newer, first
revert the buffer, then scroll.
This command is useful if you are viewing a changing file.
The prefix argument LINES says how many lines to scroll.
If you don't specify a prefix argument, it uses the number of lines set by
\\[View-scroll-page-forward-set-page-size] or
\\[View-scroll-page-backward-set-page-size].
If LINES is more than a window-full, only the last window-full is shown."
(interactive "P")
(let ((view-scroll-auto-exit nil)
(view-try-extend-at-buffer-end t))
(view-scroll-lines lines nil (view-page-size-default view-page-size) nil)))