Function: cider-stacktrace--inspect-kbd

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

Signature

(cider-stacktrace--inspect-kbd &optional EX-DATA)

Documentation

Keyboard handler.

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-kbd (&optional ex-data)
  "Keyboard handler.
If EX-DATA is true, inspect ex-data of the exception instead."
  (interactive)
  (when-let ((inspect-index (get-text-property (point) 'inspect-index)))
    (cider-inspector-inspect-last-exception inspect-index ex-data)))