We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
il
Place the current form inside a new let form.
let
Given this:
(defn handle-request {:status 200 :body (find-body abc)})
With the cursor in front of (find-body abc), I do cljr-introduce-let:
(find-body abc)
cljr-introduce-let
(defn handle-request {:status 200 :body (let [X (find-body abc)] X)})
Now I have two cursors where the Xes are. Just type out the name, and press enter.
X