Function: windmove-display-left
windmove-display-left is an autoloaded, interactive and byte-compiled
function defined in windmove.el.gz.
Signature
(windmove-display-left &optional ARG)
Documentation
Display the next buffer in window to the left of 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-left (&optional arg)
"Display the next buffer in window to the left of 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 'left arg))