Function: rotate-windows-back
rotate-windows-back is an autoloaded, interactive and byte-compiled
function defined in window-x.el.gz.
Signature
(rotate-windows-back &optional WINDOW)
Documentation
Rotate windows under WINDOW backward in cyclic ordering.
If WINDOW is nil, it defaults to the root window of the selected frame.
Interactively, a prefix argument says to rotate the parent window of the selected window.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/window-x.el.gz
;;;###autoload
(defun rotate-windows-back (&optional window)
"Rotate windows under WINDOW backward in cyclic ordering.
If WINDOW is nil, it defaults to the root window of the selected frame.
Interactively, a prefix argument says to rotate the parent window of the
selected window."
(interactive (list (window--rotate-interactive-arg)))
(rotate-windows window t))