Function: clojure-move-to-let

clojure-move-to-let is an autoloaded, interactive and byte-compiled function defined in clojure-mode.el.

Signature

(clojure-move-to-let)

Documentation

Move the form at point to a binding in the nearest let.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/clojure-mode-20260325.811/clojure-mode.el
;;;###autoload
(defun clojure-move-to-let ()
  "Move the form at point to a binding in the nearest let."
  (interactive)
  (clojure--move-to-let-internal (read-from-minibuffer "Name of bound symbol: ")))