Function: evil-ex-pattern-whole-line

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

Signature

(evil-ex-pattern-whole-line PATTERN)

Documentation

Return t if and only if PATTERN should match all occurences of a line.

Otherwise PATTERN matches only the first occurence.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-search.el
(defun evil-ex-pattern-whole-line (pattern)
  "Return t if and only if PATTERN should match all occurences of a line.
Otherwise PATTERN matches only the first occurence."
  (nth 2 pattern))