Function: cider-eval-sexp-at-point-in-context
cider-eval-sexp-at-point-in-context is an interactive and
byte-compiled function defined in cider-eval.el.
Signature
(cider-eval-sexp-at-point-in-context GUESS)
Documentation
Evaluate the sexp around point in user-supplied context.
The context is just a let binding vector (without the brackets). The context is remembered between command invocations.
When GUESS is non-nil, or called interactively with C-u (universal-argument),
attempt to extract the context from parent let-bindings.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-eval.el
(defun cider-eval-sexp-at-point-in-context (guess)
"Evaluate the sexp around point in user-supplied context.
The context is just a let binding vector (without the brackets).
The context is remembered between command invocations.
When GUESS is non-nil, or called interactively with \\[universal-argument],
attempt to extract the context from parent let-bindings."
(interactive "P")
(cider--eval-in-context (cider-sexp-at-point 'bounds) guess))