Function: cider-stacktrace-jump

cider-stacktrace-jump is an interactive and byte-compiled function defined in cider-stacktrace.el.

Signature

(cider-stacktrace-jump &optional ARG)

Documentation

Find definition for stack frame at point, if available.

The prefix ARG and cider-prompt-for-symbol decide whether to prompt and whether to use a new window. Similar to cider-find-var.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-stacktrace.el
(defun cider-stacktrace-jump (&optional arg)
  "Find definition for stack frame at point, if available.
The prefix ARG and `cider-prompt-for-symbol' decide whether to
prompt and whether to use a new window.  Similar to `cider-find-var'."
  (interactive "P")
  (let ((button (button-at (point))))
    (if (and button (button-get button 'line))
        (cider-stacktrace-navigate button)
      (cider-find-var arg))))