Variable: isearch-lazy-count
isearch-lazy-count is a customizable variable defined in
isearch.el.gz.
Value
nil
Documentation
Show match numbers in the search prompt.
When both this option and isearch-lazy-highlight are non-nil,
show the current match number and the total number of matches
in the buffer (or its restriction), including all hidden matches.
This variable was added, or its default value changed, in Emacs 27.1.
Probably introduced at or before Emacs version 27.1.
Source Code
;; Defined in /usr/src/emacs/lisp/isearch.el.gz
(defcustom isearch-lazy-count nil
"Show match numbers in the search prompt.
When both this option and `isearch-lazy-highlight' are non-nil,
show the current match number and the total number of matches
in the buffer (or its restriction), including all hidden matches."
:type 'boolean
:group 'lazy-count
:group 'isearch
:version "27.1")