Function: cider-test-jump
cider-test-jump is an interactive and byte-compiled function defined
in cider-test.el.
Signature
(cider-test-jump &optional ARG)
Documentation
Find definition for test 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-test.el
(defun cider-test-jump (&optional arg)
"Find definition for test 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 ((ns (get-text-property (point) 'ns))
(var (get-text-property (point) 'var))
(line (get-text-property (point) 'line)))
(if (and ns var)
(cider-find-var arg (concat ns "/" var) line)
(cider-find-var arg))))