Function: evil-ex-hl-window

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

Signature

(evil-ex-hl-window evil-ex-hl-window X)

Documentation

Access slot "window" of evil-ex-hl struct 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."))