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