Function: evil-ex-hl-get-max

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

Signature

(evil-ex-hl-get-max NAME)

Documentation

Return the maximal position of the highlight with name NAME.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-search.el
(defun evil-ex-hl-get-max (name)
  "Return the maximal position of the highlight with name NAME."
  (let ((hl (cdr (assq name evil-ex-active-highlights-alist))))
    (and hl (evil-ex-hl-max hl))))