Function: windmove-display-up

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

Signature

(windmove-display-up &optional ARG)

Documentation

Display the next buffer in window above 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-up (&optional arg)
  "Display the next buffer in window above 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 'up arg))