Function: kview:char-invisible-p

kview:char-invisible-p is an autoloaded and byte-compiled function defined in kview.el.

Signature

(kview:char-invisible-p &optional POS)

Documentation

Return t if the character after point is invisible/hidden, else nil.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kview.el
;;;###autoload
(defun kview:char-invisible-p (&optional pos)
  "Return t if the character after point is invisible/hidden, else nil."
  (when (get-char-property (or pos (point)) 'invisible)
    t))