Function: cider--find-dwim-interactive
cider--find-dwim-interactive is a byte-compiled function defined in
cider-find.el.
Signature
(cider--find-dwim-interactive PROMPT)
Documentation
Get interactive arguments for jump-to functions using PROMPT as needed.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-find.el
(defun cider--find-dwim-interactive (prompt)
"Get interactive arguments for jump-to functions using PROMPT as needed."
(let ((thing (cider--find-dwim-thing-at-point)))
(if (cider--prompt-for-symbol-p current-prefix-arg)
(list (cider-read-from-minibuffer prompt thing))
(list (or thing ""))))) ; No prompt.