Function: isearch-highlight-lines-matching-regexp

isearch-highlight-lines-matching-regexp is an interactive and byte-compiled function defined in isearch.el.gz.

Signature

(isearch-highlight-lines-matching-regexp)

Documentation

Exit Isearch mode and call highlight-lines-matching-regexp.

The arguments passed to highlight-lines-matching-regexp are the regexp from the last search and the face from hi-lock-read-face-name.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/isearch.el.gz
(defun isearch-highlight-lines-matching-regexp ()
  "Exit Isearch mode and call `highlight-lines-matching-regexp'.
The arguments passed to `highlight-lines-matching-regexp' are the
regexp from the last search and the face from `hi-lock-read-face-name'."
  (interactive)
  (isearch--highlight-regexp-or-lines
   #'(lambda (regexp face _lighter)
       (highlight-lines-matching-regexp regexp face))))