emacs

Consider also joining #cider, #lsp and #inf-clojure, where most of the tool-specific discussions are happening.
2020-03-04T00:35:44.112200Z

fwiw, https://github.com/sogaiu/alc.index-defs will generate TAGS (etags) / tags (ctags) for clojure source projects. i use emacs with the generated TAGS file -- it works with the dependencies as well. i use the ctags output for other editors (e.g. vscode).

practicalli-john 2020-03-04T11:06:04.113200Z

Looks very interesting, I will give it a try, thank you.

2020-03-04T11:16:19.113400Z

however it turns out, i hope you can find some good jump-to-def solution -- can be so helpful in maintaining concentration and focus.

dotemacs 2020-03-09T09:29:49.120900Z

Thanks for sharing this @sogaiu it reminded me a bit about this project: https://github.com/sanel/lein-codeindex

2020-03-09T09:36:39.121200Z

thanks for taking an interest! ah, i see it's by the author of monroe -- nice! lein-codeindex may be more useful now than before because the universal ctags side of things has improved their clojure support somewhat in recent times. i would guess it's faster than alc.index-defs too. i don't know what's involved in getting ctags and/or friends to go over the dependecies of one's project. do you happen to know? i'm guessing that alc.index-defs does a somewhat more accurate (and broader?) job of analyzing things because it uses clj-kondo (assuming i didn't mess things up 🙂 )

2020-03-09T09:39:04.121400Z

btw, you might find this of interest if you haven't seen it already: https://github.com/jpmonettas/clindex (maintainer was very nice too)

dotemacs 2020-03-09T14:53:01.129700Z

Oh, wow, this is very cool. TIL. I was even “fantasising” that when I get some free time, it would be cool to create a tool that would be a replacement for what <http://crossclj.info|crossclj.info> (now dead) service used to do: index all the opensource projects and make them available for reference. Looks like this tool handles most of that now. Obviously it would need some extra work, but it would be a useful resource.

dotemacs 2020-03-09T15:12:23.129900Z

The reason clindex resonated with me is because it reminded me of this post: https://outline.com/2eMR6C

2020-03-04T00:36:20.113Z

it uses clj-kondo to perform the analysis -- it is thorough but definitely not real-time.