Function: window-layout-flip-topdown

window-layout-flip-topdown is an autoloaded, interactive and byte-compiled function defined in window-x.el.gz.

Signature

(window-layout-flip-topdown &optional WINDOW)

Documentation

Vertically flip windows under WINDOW.

Flip the window layout so that the top window becomes the bottom window, and vice-versa.

If WINDOW is nil, it defaults to the root window of the selected frame.

Interactively, a prefix argument says to flip the parent window of the selected window.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/window-x.el.gz
;;;###autoload
(defun window-layout-flip-topdown (&optional window)
  "Vertically flip windows under WINDOW.

Flip the window layout so that the top window becomes the bottom window,
and vice-versa.

If WINDOW is nil, it defaults to the root window of the selected frame.

Interactively, a prefix argument says to flip the parent window of the
selected window."
  (interactive (list (window--rotate-interactive-arg)))
  (window--transpose window '(above . right) t))