Function: treemacs-previous-page-other-window
treemacs-previous-page-other-window is an interactive and
byte-compiled function defined in treemacs-interface.el.
Signature
(treemacs-previous-page-other-window &optional COUNT)
Documentation
Scroll backward COUNT pages in next-window.
For slower scrolling see treemacs-previous-line-other-window
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-interface.el
(defun treemacs-previous-page-other-window (&optional count)
"Scroll backward COUNT pages in `next-window'.
For slower scrolling see `treemacs-previous-line-other-window'"
(interactive "p")
(treemacs-without-following
(with-selected-window (next-window)
(condition-case _
(dotimes (_ (or count 1))
(scroll-down nil))
(beginning-of-buffer (goto-char (point-min)))))))