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