Variable: aw-dispatch-alist
aw-dispatch-alist is a variable defined in ace-window.el.
Value
((120 aw-delete-window "Delete Window")
(109 aw-swap-window "Swap Windows") (77 aw-move-window "Move Window")
(99 aw-copy-window "Copy Window")
(106 aw-switch-buffer-in-window "Select Buffer") (110 aw-flip-window)
(117 aw-switch-buffer-other-window "Switch Buffer Other Window")
(101 aw-execute-command-other-window "Execute Command Other Window")
(70 aw-split-window-fair "Split Fair Window")
(118 aw-split-window-vert "Split Vert Window")
(98 aw-split-window-horz "Split Horz Window")
(111 delete-other-windows "Delete Other Windows")
(84 aw-transpose-frame "Transpose Frame") (63 aw-show-dispatch-help))
Documentation
List of actions for aw-dispatch-default.
Each action is a list of either:
(char function description) where function takes a single window argument
or
(char function) where function takes no argument and the description is omitted.
Source Code
;; Defined in ~/.emacs.d/elpa/ace-window-20220911.358/ace-window.el
;; Must be defined before `aw-make-frame-char' since its :set function references this.
(defvar aw-dispatch-alist
'((?x aw-delete-window "Delete Window")
(?m aw-swap-window "Swap Windows")
(?M aw-move-window "Move Window")
(?c aw-copy-window "Copy Window")
(?j aw-switch-buffer-in-window "Select Buffer")
(?n aw-flip-window)
(?u aw-switch-buffer-other-window "Switch Buffer Other Window")
(?e aw-execute-command-other-window "Execute Command Other Window")
(?F aw-split-window-fair "Split Fair Window")
(?v aw-split-window-vert "Split Vert Window")
(?b aw-split-window-horz "Split Horz Window")
(?o delete-other-windows "Delete Other Windows")
(?T aw-transpose-frame "Transpose Frame")
;; ?i ?r ?t are used by hyperbole.el
(?? aw-show-dispatch-help))
"List of actions for `aw-dispatch-default'.
Each action is a list of either:
(char function description) where function takes a single window argument
or
(char function) where function takes no argument and the description is omitted.")