clj2el
clj2el copied to clipboard
Transpile Clojure to Emacs Lisp!
trafficstars
clj2el
The clj2el tool transpiles Clojure to Emacs Lisp. It is currently incomplete, but contributions are welcome. It is targeted at folks who know Clojure better than Emacs Lisp.
See the interactive web page here.
CLI
There's also a tiny babashka CLI: clj2el. The CLI can be installed with
bbin:
bbin install io.github.borkdude/clj2el --latest-sha
And used like this:
$ cat source.clj
(defn foo [x & xs] xs)
(inc 2)
(map inc [1 2 3])
$ cat source.clj | clj2el
(defun foo (x &rest xs) xs)
(1+ 2)
(mapcar #'1+ (vector 1 2 3))
Note that you can replace a region with clj2el in emacs with C-u M-|.
Using clj2el.el from Doom Emacs
;; packages.el
(package! clj2el :recipe (:host github :repo "borkdude/clj2el" :files ("*.el")))
;; config.el
(use-package! clj2el)