Function: cider-inspector-operate-on-click

cider-inspector-operate-on-click is an interactive and byte-compiled function defined in cider-inspector.el.

Signature

(cider-inspector-operate-on-click EVENT)

Documentation

Move to EVENT's position and operate the part.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-inspector.el
(defun cider-inspector-operate-on-click (event)
  "Move to EVENT's position and operate the part."
  (interactive "@e")
  (let ((point (posn-point (event-end event))))
    (cond ((and point
                (or (get-text-property point 'cider-value-idx)))
           (goto-char point)
           (cider-inspector-operate-on-point))
          (t
           (error "No clickable part here")))))