Re: [viewing clojure datastructures] Is there something better than clojure.inspector?

2012-08-23 Thread Denis Labaye
at which point? $ lein deps $ lein repl user= (use 'clj-ns-browser.sdoc) user= (sdoc) On Thu, Aug 23, 2012 at 4:48 AM, blackblock mathn...@gmail.com wrote: I get this with Lein2 with lein repl: IllegalStateException escape-html already refers to: #'hiccup.core/escape-html in namespace:

Re: [viewing clojure datastructures] Is there something better than clojure.inspector?

2012-08-23 Thread Denis Labaye
On Thu, Aug 23, 2012 at 8:39 AM, Denis Labaye denis.lab...@gmail.comwrote: at which point? $ lein deps $ lein repl user= (use 'clj-ns-browser.sdoc) user= (sdoc) On Thu, Aug 23, 2012 at 4:48 AM, blackblock mathn...@gmail.com wrote: I get this with Lein2 with lein repl:

Re: [viewing clojure datastructures] Is there something better than clojure.inspector?

2012-08-23 Thread Stuart Sierra
Somewhat-related, I started working on a graphical pretty-printer library for ClojureScript: https://github.com/stuartsierra/cljs-formatter Here's a screenshot: https://github.com/stuartsierra/cljs-formatter/blob/master/screenshot-1.png -S -- You received this message because you are

[viewing clojure datastructures] Is there something better than clojure.inspector?

2012-08-22 Thread Denis Labaye
Hi everyone, The clojure.inspector functions are ... mmm ... a bit rough on the edge =) Is there any lib that provide better support for exploring Clojure data-structures? I am surprised I didn't found anything on Google, GitHub, ... Data-structures are at the core of Clojure, so being able

Re: [viewing clojure datastructures] Is there something better than clojure.inspector?

2012-08-22 Thread Nahuel Greco
Another nice and simple addition to clojure.inspector would be add auto-refreshing, so you can pass a reference and it and will display always his latest version (maybe by using a watcher). It will be nice for live debugging. Saludos, Nahuel Greco. On Wed, Aug 22, 2012 at 5:58 PM, Denis Labaye

Re: [viewing clojure datastructures] Is there something better than clojure.inspector?

2012-08-22 Thread Frank Siebenlist
Check out clj-ns-browser (https://github.com/franks42/clj-ns-browser;). When a var is defined, you can look at it's value, which is presented with pprint, which means that most data structures are nicely displayed. When the value is a list/tree-like data structure, you can bring up Rich's

Re: [viewing clojure datastructures] Is there something better than clojure.inspector?

2012-08-22 Thread Nahuel Greco
You can set the clj-ns-browser browser to auto-refresh but you need to utilize a full browser window just to watch a Var, and also the value not as nicely displayed as using clojure.inspector. A nice addition to clj-ns-browser will be to make possible create many auto-refreshing clojure.inspector

Re: [viewing clojure datastructures] Is there something better than clojure.inspector?

2012-08-22 Thread Nahuel Greco
You can set the clj-ns-browser browser to auto-refresh but you need to utilize a full browser window just to watch a Var, and also the value not as nicely displayed as using clojure.inspector. A nice addition to clj-ns-browser will be to make possible create many auto-refreshing clojure.inspector

Re: [viewing clojure datastructures] Is there something better than clojure.inspector?

2012-08-22 Thread Denis Labaye
On Wed, Aug 22, 2012 at 11:33 PM, Frank Siebenlist frank.siebenl...@gmail.com wrote: Check out clj-ns-browser (https://github.com/franks42/clj-ns-browser;). This is really cool! I love the tree like view of the global environmental. Great for exploring clojure.core and libs. It doesn't

Re: [viewing clojure datastructures] Is there something better than clojure.inspector?

2012-08-22 Thread blackblock
I get this with Lein2 with lein repl: IllegalStateException escape-html already refers to: #'hiccup.core/escape-html in namespace: hiccup.page clojure.lang.Namespace.warnOrFailOnReplace (Namespace.java:88) On Thursday, August 23, 2012 7:33:44 AM UTC+10, FrankS wrote: Check out