Function: treemacs-previous-line-other-window

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

Signature

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

Documentation

Scroll backward COUNT lines in next-window.

Key Bindings

Source Code

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