Variable: lazy-count-suffix-format

lazy-count-suffix-format is a customizable variable defined in isearch.el.gz.

Value

nil

Documentation

Format of the current/total number of matches for the prompt suffix.

This variable was added, or its default value changed, in Emacs 27.1.

View in manual

Probably introduced at or before Emacs version 27.1.

Source Code

;; Defined in /usr/src/emacs/lisp/isearch.el.gz
(defcustom lazy-count-suffix-format nil
  "Format of the current/total number of matches for the prompt suffix."
  :type '(choice (const :tag "No suffix" nil)
                 (string :tag "Suffix format string" " [%s of %s]"))
  :group 'lazy-count
  :version "27.1")