Function: cider-kill-last-result

cider-kill-last-result is an interactive and byte-compiled function defined in cider-eval.el.

Signature

(cider-kill-last-result)

Documentation

Save the last evaluated result into the kill ring.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-eval.el
(defun cider-kill-last-result ()
  "Save the last evaluated result into the kill ring."
  (interactive)
  (kill-new
   (nrepl-dict-get (cider-nrepl-sync-request:eval "*1") "value")))