How to use lein attempt in cider?

In Emacs / Cider, how to properly add some clojure libraries that I want to try?

If I do this from the shell, I just ran

$ lein try clj-time

But how do I do this with Emacs / Cider?

+4
source share
1 answer

The easiest way is to start lein try clj-timefrom the command line and then connect to this replica from emacs using M-x cider(use the localhostport number printed on the console at startup lein-try).

+1
source

Source: https://habr.com/ru/post/1536579/


All Articles