Variable: multi-isearch-pause

multi-isearch-pause is a customizable variable defined in misearch.el.gz.

Value

t

Documentation

A choice defining where to pause the search.

If the value is nil, don't pause before going to the next buffer. If the value is initial, pause only after a failing search in the initial buffer. If t, pause in all buffers that contain the search string.

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

Source Code

;; Defined in /usr/src/emacs/lisp/misearch.el.gz
(defcustom multi-isearch-pause t
  "A choice defining where to pause the search.
If the value is nil, don't pause before going to the next buffer.
If the value is `initial', pause only after a failing search in the
initial buffer.
If t, pause in all buffers that contain the search string."
  :type '(choice
	  (const :tag "Don't pause" nil)
	  (const :tag "Only in initial buffer" initial)
	  (const :tag "All buffers" t))
  :version "23.1")