Function: hypb:toggle-isearch-invisible

hypb:toggle-isearch-invisible is an interactive and byte-compiled function defined in hypb.el.

Signature

(hypb:toggle-isearch-invisible &optional ARG)

Documentation

Toggle interactive invisible searching on or off.

This determines whether to search inside invisible text or not. Toggles the variable isearch-invisible between values nil and a non-nil value of the option `search-invisible’
(or open if search-invisible is nil).

With optional prefix ARG > 0, turn on searching invisible text. If ARG <= 0, turn search only visible text.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hypb.el
(defun hypb:toggle-isearch-invisible (&optional arg)
  "Toggle interactive invisible searching on or off.
This determines whether to search inside invisible text or not.
Toggles the variable `isearch-invisible' between values
nil and a non-nil value of the option `search-invisible’
\(or `open' if `search-invisible' is nil).

With optional prefix ARG > 0, turn on searching invisible text.
If ARG <= 0, turn search only visible text."
  (interactive "P")
  (if (not (boundp 'isearch-invisible))
      (error "(hypb:toggle-isearch-invisible): Feature not supported by the version of Emacs")
    (setq isearch-invisible (if (if (null arg)
				    (not isearch-invisible)
				  (> (prefix-numeric-value arg) 0))
				(or search-invisible 'open)))
    (message "I-search will %ssearch invisible text"
	     (if isearch-invisible "" "not "))))