Function: evil-ex-hl-pattern

evil-ex-hl-pattern is a byte-compiled function defined in evil-search.el.

Signature

(evil-ex-hl-pattern CL-X)

Documentation

Access slot "pattern" of evil-ex-hl struct CL-X.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-search.el
;;; Highlight

(cl-defstruct (evil-ex-hl (:type vector) (:constructor nil)
                          (:copier nil) (:predicate nil))
  (name nil :read-only t) pattern
  (face nil :read-only t) (window nil :read-only t)
  (min nil :documentation "The minimal buffer position of the highlight.")
  (max nil :documentation "The maximal buffer position of the highlight.")
  (match-hook nil :read-only t) (update-hook nil :read-only t)
  (overlays nil :documentation "The active overlays of the highlight."))