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-20260414.1619/cider-find.el
(defun cider--find-dwim-interactive (prompt)
"Get interactive arguments for jump-to functions using PROMPT as needed."
(if (cider--prompt-for-symbol-p current-prefix-arg)
(list
(cider-read-from-minibuffer prompt (thing-at-point 'filename)))
(list (or (thing-at-point 'filename) "")))) ; No prompt.