Function: windmove-display-down

windmove-display-down is an autoloaded, interactive and byte-compiled function defined in windmove.el.gz.

Signature

(windmove-display-down &optional ARG)

Documentation

Display the next buffer in window below the current one.

See the logic of the prefix ARG and windmove-display-no-select in windmove-display-in-direction.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/windmove.el.gz
;;;###autoload
(defun windmove-display-down (&optional arg)
  "Display the next buffer in window below the current one.
See the logic of the prefix ARG and `windmove-display-no-select'
in `windmove-display-in-direction'."
  (interactive "P")
  (windmove-display-in-direction 'down arg))