Fork me on GitHub
#spacemacs
<
2020-12-21
>
jumar16:12:30

Is there an easy way to transform the first form into the second?

(testing "abc"
  (let [a 1]))
;;=>
(let [a 1]
  (testing "abc"
    ))

sgepigon18:12:17

(cljr-expand-let) ;; SPC m r e l

erwinrooijakkers20:12:11

this can be done with convolute of lisp-mode with SPC-kc

erwinrooijakkers20:12:25

The ,rel example I did not know, seems to do something similar but only with the first let