Function: which-key-key-order-alpha
which-key-key-order-alpha is a byte-compiled function defined in
which-key.el.gz.
Signature
(which-key-key-order-alpha ACONS BCONS)
Documentation
Order key descriptions A and B.
Order is lexicographic within a "class", where the classes and the ordering of classes are listed below.
special (SPC,TAB,...) < single char < mod (C-,M-,...) < other. Sorts single characters alphabetically with lowercase coming before upper.
Source Code
;; Defined in /usr/src/emacs/lisp/which-key.el.gz
(defsubst which-key-key-order-alpha (acons bcons)
"Order key descriptions A and B.
Order is lexicographic within a \"class\", where the classes and
the ordering of classes are listed below.
special (SPC,TAB,...) < single char < mod (C-,M-,...) < other.
Sorts single characters alphabetically with lowercase coming
before upper."
(which-key--key-description< (car acons) (car bcons) t))