I think such a feature is available in common lisp's slime. It shouldn't be hard to implement in clojure, particularly considering how helpful namespaces are.
one would miss calls through eval etc, but that happens in statically-typed langs too (think reflection). On Wed, May 1, 2013 at 1:36 PM, Colin Yates <[email protected]> wrote: > Without static typing, I guess grep is the best? > > > On 1 May 2013 12:13, Ulises <[email protected]> wrote: > >> > The biggest 'ah - got it' for me was when I realised IDEs are great for >> navigating huge object models which are relatively narrow but deep (i.e. >> lots of nested relationships). This requires a special set of navigation >> skills (cntrl-click to go to declaration, autocompletion etc). Clojure >> (and I guess FP) code tends to be a much wider and shallower surface (i.e. >> lots of sibling functions with a few well defined data structures). The >> other huge win is the REPL. Trying things out, viewing the doc or source >> of functions etc. is just such a liberating experience. >> >> Try M-. (and M-,) on a symbol. If your nrepl is set up correctly, etc. >> that should take you to the code for a function/macro and back. >> >> The one thing I sorely miss in nrepl is a 'who-calls' type of >> functionality. Is this implemented and I just haven't found it yet? >> >> U >> >> -- >> -- >> You received this message because you are subscribed to the Google >> Groups "Clojure" group. >> To post to this group, send email to [email protected] >> Note that posts from new members are moderated - please be patient with >> your first post. >> To unsubscribe from this group, send email to >> [email protected] >> For more options, visit this group at >> http://groups.google.com/group/clojure?hl=en >> --- >> You received this message because you are subscribed to a topic in the >> Google Groups "Clojure" group. >> To unsubscribe from this topic, visit >> https://groups.google.com/d/topic/clojure/Uhe5Wjmkb5s/unsubscribe?hl=en. >> To unsubscribe from this group and all its topics, send an email to >> [email protected]. >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> > -- > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To post to this group, send email to [email protected] > Note that posts from new members are moderated - please be patient with > your first post. > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/clojure?hl=en > --- > You received this message because you are subscribed to a topic in the > Google Groups "Clojure" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/clojure/Uhe5Wjmkb5s/unsubscribe?hl=en. > To unsubscribe from this group and all its topics, send an email to > [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
