Function: cider-search-property-change
cider-search-property-change is a byte-compiled function defined in
cider-repl.el.
Signature
(cider-search-property-change PROP &optional BACKWARD)
Documentation
Search forward for a property change to PROP.
If BACKWARD is non-nil search backward.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-search-property-change (prop &optional backward)
"Search forward for a property change to PROP.
If BACKWARD is non-nil search backward."
(cond (backward
(goto-char (previous-single-char-property-change (point) prop)))
(t
(goto-char (next-single-char-property-change (point) prop)))))