Function: cider--debug-goto-keyval
cider--debug-goto-keyval is a byte-compiled function defined in
cider-debug.el.
Signature
(cider--debug-goto-keyval KEY)
Documentation
Find KEY in current sexp or return nil.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-debug.el
(defun cider--debug-goto-keyval (key)
"Find KEY in current sexp or return nil."
(when-let* ((limit (ignore-errors (save-excursion (up-list) (point)))))
(search-forward-regexp (concat "\\_<" (regexp-quote key) "\\_>")
limit 'noerror)))