Function: cider-stacktrace--inspect-mouse
cider-stacktrace--inspect-mouse is an interactive and byte-compiled
function defined in cider-stacktrace.el.
Signature
(cider-stacktrace--inspect-mouse EVENT &optional EX-DATA)
Documentation
Mouse handler for EVENT.
If EX-DATA is true, inspect ex-data of the exception instead.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-stacktrace.el
(defun cider-stacktrace--inspect-mouse (event &optional ex-data)
"Mouse handler for EVENT.
If EX-DATA is true, inspect ex-data of the exception instead."
(interactive "e")
(let* ((pos (posn-point (event-end event)))
(window (posn-window (event-end event)))
(buffer (window-buffer window))
(inspect-index (with-current-buffer buffer
(get-text-property pos 'inspect-index))))
(cider-inspector-inspect-last-exception inspect-index ex-data)))