Variable: which-key-side-window-location
which-key-side-window-location is a customizable variable defined in
which-key.el.gz.
Value
bottom
Documentation
Location of which-key popup when which-key-popup-type is side-window.
Should be one of top, bottom, left or right. You can also specify a list of two locations, like (right bottom). In this case, the first location is tried. If there is not enough room, the second location is tried.
This variable was added, or its default value changed, in which-key version 1.0.
Source Code
;; Defined in /usr/src/emacs/lisp/which-key.el.gz
(defcustom which-key-side-window-location 'bottom
"Location of which-key popup when `which-key-popup-type' is side-window.
Should be one of top, bottom, left or right. You can also specify
a list of two locations, like (right bottom). In this case, the
first location is tried. If there is not enough room, the second
location is tried."
:type '(radio (const right)
(const bottom)
(const left)
(const top)
(const (right bottom))
(const (bottom right)))
:package-version '(which-key . "1.0") :version "30.1")