Function: consult--copy-faces

consult--copy-faces is a byte-compiled function defined in consult.el.

Signature

(consult--copy-faces BEG END STR)

Documentation

Copy faces from buffer region BEG to END to STR.

The string STR is modified.

Source Code

;; Defined in ~/.emacs.d/elpa/consult-20260805.1130/consult.el
(defun consult--copy-faces (beg end str)
  "Copy faces from buffer region BEG to END to STR.
The string STR is modified."
  (consult--copy-property beg end str 'face)
  (consult--copy-property beg end str 'invisible)
  (consult--copy-property beg end str 'display))