Function: windmove-delete-up
windmove-delete-up is an autoloaded, interactive and byte-compiled
function defined in windmove.el.gz.
Signature
(windmove-delete-up &optional ARG)
Documentation
Delete the window above the current one.
If prefix ARG is C-u (universal-argument), delete the selected window and
select the window that was above the current one.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/windmove.el.gz
;;;###autoload
(defun windmove-delete-up (&optional arg)
"Delete the window above the current one.
If prefix ARG is \\[universal-argument], delete the selected window and
select the window that was above the current one."
(interactive "P")
(windmove-delete-in-direction 'up arg))