Variable: window-layout-rotate-repeat-map

window-layout-rotate-repeat-map is a variable defined in window.el.gz.

Value

<left>   window-layout-rotate-anticlockwise
<right>  window-layout-rotate-clockwise

Documentation

Keymap to repeat window layout-rotating commands.

Used in repeat-mode(var)/repeat-mode(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/window.el.gz
(defvar-keymap window-layout-rotate-repeat-map
  :doc "Keymap to repeat window layout-rotating commands.
Used in `repeat-mode'."
  :repeat t
  "<left>" #'window-layout-rotate-anticlockwise
  "<right>" #'window-layout-rotate-clockwise)