Re: Clojure Full Syntactical Reference

2012-12-18 Thread Niels van Klaveren
I wonder if this couldn't have been better implemented as nrepl middleware. On Tuesday, December 18, 2012 10:34:01 AM UTC+1, Niels van Klaveren wrote: > > It's a feature of the REPLy NREPL client. See > https://github.com/trptcolin/reply/blob/master/src/clj/reply/initialization.cljhow > it works

Re: Clojure Full Syntactical Reference

2012-12-18 Thread Niels van Klaveren
It's a feature of the REPLy NREPL client. See https://github.com/trptcolin/reply/blob/master/src/clj/reply/initialization.clj how it works so you can emulate it. On Tuesday, December 18, 2012 5:10:00 AM UTC+1, Karim A. Nassar wrote: > > When using nrepl in emacs (cdoc ) emits: > > CompilerExcep

Re: Clojure Full Syntactical Reference

2012-12-17 Thread Karim A. Nassar
When using nrepl in emacs (cdoc ) emits: CompilerException java.lang.RuntimeException: Unable to resolve symbol: cdoc in this context, compiling:(NO_SOURCE_PATH:1) However, in "lein repl" I see: Loading clojuredocs-client... How do I make nrepl as smart as lein repl? On Fri, Dec 14, 2012 at

Re: Clojure Full Syntactical Reference

2012-12-15 Thread John Gabriele
On Friday, December 14, 2012 6:40:50 PM UTC-5, lin...@redhandgaming.net wrote: > > Where can I find, or does there exist, a place where I can view all > Clojure's built in functions with a short description of their arguments > and what they do? > As Andy pointed out, Clojuredocs is the place

Re: Clojure Full Syntactical Reference

2012-12-14 Thread Andy Fingerhut
I would recommend checking out http://clojuredocs.org If you use Leiningen version 2, you can get similar output with these two commands: lein repl user=> (doc first) user=> (cdoc first) doc gives the "doc string" built into Clojure. cdoc gives the examples from ClojureDocs.org for that symb

Clojure Full Syntactical Reference

2012-12-14 Thread lincoln
I'm learning Clojure, and I learn best by jumping in. I'm interested in using Noir. Noir has a full API reference, so when I'm reading other people's Noir code, I can just look up the exact function and see what it does. I can't find a similar thing for Clojure. I'm looking through other peopl