Function: avy--next-invisible-point

avy--next-invisible-point is a byte-compiled function defined in avy.el.

Signature

(avy--next-invisible-point)

Documentation

Return the next closest point with invisible property.

Source Code

;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
(defun avy--next-invisible-point ()
  "Return the next closest point with `invisible' property."
  (let ((s (point)))
    (while (and (not (= (point-max) (setq s (next-char-property-change s))))
                (avy--visible-p s)))
    s))