Function: orderless-initialism
orderless-initialism is a byte-compiled function defined in
orderless.el.
Signature
(orderless-initialism COMPONENT)
Documentation
Match a component as an initialism.
This means the characters in COMPONENT must occur in the candidate, in that order, at the beginning of words.
Source Code
;; Defined in ~/.emacs.d/elpa/orderless-20260519.1029/orderless.el
(defun orderless-initialism (component)
"Match a component as an initialism.
This means the characters in COMPONENT must occur in the
candidate, in that order, at the beginning of words."
(orderless--separated-by '(zero-or-more nonl)
(cl-loop for char across component collect `(seq word-start ,char))))