Function: orderless-ivy-highlight
orderless-ivy-highlight is a byte-compiled function defined in
orderless.el.
Signature
(orderless-ivy-highlight STR)
Documentation
Highlight a match in STR of each regexp in ivy-regex.
This function is for integration of orderless with ivy.
Source Code
;; Defined in ~/.emacs.d/elpa/orderless-20260519.1029/orderless.el
(defun orderless-ivy-highlight (str)
"Highlight a match in STR of each regexp in `ivy-regex'.
This function is for integration of orderless with ivy."
(orderless--highlight (mapcar #'car ivy-regex) t str) str)