Re: lein-codox custom writer

2018-03-05 Thread James Reeves
Leiningen has an "update-in" task for updating the project map on the fly, so something like: lein update-in :codox assoc :writer my.custom/writer -- codox You have to make sure that the custom writer is on the classpath of course, which may require updating the project file to include new de

lein-codox custom writer

2018-03-05 Thread Janko Muzykant
Codox documentation mentions how to set up a custom output writer using leiningen :codox option: :codox {:writer codox.writer.html/write-docs} Is there any way to achieve the same without touching project.clj, eg. by providing writer location at lein command-line (similarly to what boot-codox

Re: Developing in Clojure with Emacs: Mastering the Keyboard

2018-03-05 Thread Leandro Doctors
Hi, Chris, Have you tried Spacemacs? It comes with a pre-configured Clojure layer... Spacemacs.org For me, it worked flawlessly (the only big difference with the default configuration being using parinfer instead of paredit). Best, Leandro On 3 Mar 2018 13:11, "Chris Shellenbarger" wrote: > I

Re: Developing in Clojure with Emacs: Mastering the Keyboard

2018-03-05 Thread Didier
I'd second spacemacs, just make sure you go Holy and use Ivy. Helm I find is way too slow. And with Evil mode, you are now learning 3 things at once, Clojure, Emacs and Vim. Unless you already master Vim, then you can go Evil. -- You received this message because you are subscribed to the Goog

Re: Developing in Clojure with Emacs: Mastering the Keyboard

2018-03-05 Thread Mark Stang
I have found spacemacs to be the easiest to get things running. Clojure Development with Cider (https://practicalli.github.io/spacemacs/) I have used Cursive over the years, but I don't use it enough to justify continuing to pay for it. Spacemacs provides a whole group of editors for odd languag

Re: Developing in Clojure with Emacs: Mastering the Keyboard

2018-03-05 Thread Phillip Lord
which-key is a fantastic package. The Emacs out-of-the-box experience is getting better, but slowly; this sort of functionality really needs to be in core, automatically active. Phil Chris Shellenbarger writes: > I found them useful for getting the repl to run - after following these > instr

Re: What’s the best way to browse all lein templates?

2018-03-05 Thread jmckitrick
I'll definitely try that again, but since I'm not read to get specific yet, I'm still working at a 'fuzzy logic' level. I'm especially interested in what is most popular, current, and has a lot of community support. On Sun, Mar 4, 2018 at 8:11 PM Edward Knyshov wrote: > Did you try to narrow dow

[ANN] clj-memory meter – measure the memory used by arbitrary objects

2018-03-05 Thread Alexander Yakushev
I'm happy to release the first version of clj-memory-meter . It's a thin wrapper around jamm which allows measuring how much space an arbitrary object occupies. clj-memory-meter is usable from the REPL, can

Re: Why does the `def-` not exist?

2018-03-05 Thread Chris Ford
This isn't foolproof Léo, but sometimes folks use docstrings to make that distinction i.e. if it's got a docstring it's part of the public API. Codox, for example, takes this approach when deciding what to include in generated API documentation. On 4 March 2018 at 12:50, Léo Noel wrote: > Or may