Function: treemacs-next-line-other-window

treemacs-next-line-other-window is an interactive and byte-compiled function defined in treemacs-interface.el.

Signature

(treemacs-next-line-other-window &optional COUNT)

Documentation

Scroll forward COUNT lines in next-window.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-interface.el
(defun treemacs-next-line-other-window (&optional count)
  "Scroll forward COUNT lines in `next-window'."
  (interactive "p")
  (treemacs-without-following
   (with-selected-window (next-window)
     (scroll-up-line count))))