Function: avy--next-visible-point

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

Signature

(avy--next-visible-point)

Documentation

Return the next closest point without invisible property.

Source Code

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