Clj2el Save Abandoned

Transpile Clojure to Emacs Lisp!

Project README

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)
Open Source Agenda is not affiliated with "Clj2el" Project. README Source: borkdude/clj2el
Stars
53
Open Issues
2
Last Commit
5 months ago
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating