Function: minibuffer-scroll-other-window-down

minibuffer-scroll-other-window-down is an interactive and byte-compiled function defined in minibuffer.el.gz.

Signature

(minibuffer-scroll-other-window-down &optional ARG)

Documentation

Run scroll-other-window-down from the minibuffer in its original window.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/minibuffer.el.gz
(defun minibuffer-scroll-other-window-down (&optional arg)
  "Run `scroll-other-window-down' from the minibuffer in its original window."
  (interactive "^P")
  (with-minibuffer-selected-window
    (scroll-other-window-down arg)))