On Nov 9, 6:36 am, Stuart Halloway <stuart.hallo...@gmail.com> wrote:
> I have a poor man's version:
>
>    find . -name '*.clj' | xargs etags --regex=@/Users/stuart/bin/
> clojure.tags
>
>    clojure.tags =>
>    /[ \t\(]*def[a-z]* \([a-z-!]+\)/\1/
>    /[ \t\(]*ns \([a-z.]+\)/\1/
>
> Anyone have a better approach?

If you've got slime running, M-. will be bound to slime-edit-
definition, which queries the actual live instance to jump directly to
the file/line that defs the var. No need to maintain an independent
database. Of course, this only works for vars that have been required,
but this is usually not a big deal.

-Phil
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to