Function: corfu-sort-length-alpha

corfu-sort-length-alpha is a byte-compiled function defined in corfu.el.

Signature

(corfu-sort-length-alpha LIST)

Documentation

Sort LIST by length and alphabetically.

Source Code

;; Defined in ~/.emacs.d/elpa/corfu-20260813.950/corfu.el
(defun corfu-sort-length-alpha (list)
  "Sort LIST by length and alphabetically."
  (sort list #'corfu--length-string<))