Function: cider-find-dwim-at-mouse
cider-find-dwim-at-mouse is an autoloaded, interactive and
byte-compiled function defined in cider-find.el.
Signature
(cider-find-dwim-at-mouse EVENT)
Documentation
Find and display variable or resource at mouse EVENT.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-find.el
;;;###autoload
(defun cider-find-dwim-at-mouse (event)
"Find and display variable or resource at mouse EVENT."
(interactive "e")
(if-let* ((symbol-file (save-excursion
(mouse-set-point event)
(cider-symbol-at-point 'look-back))))
(cider-find-dwim symbol-file)
(user-error "No variable or resource here")))