Hey is there an easy way to jump to Java code defintions with Fireplace (or another tool) ? ie jumping to the source of imported Java classes - I can do that with required clojure but it doesn’t seem to work with imported Java. I was thinking there might be a way to setup ctags for this but not 100% sure how to go about this.
You can just run ctags -R
in the root of your project directory and then use Ctrl-] to jump to a tag.
can you get it to tag the java imports etc - didn’t really tag much when I used it in the root of my project
I’ve had some luck with conjure in neovim, including clojure core source, IIRC.
OK cheers I will take a look, I wanted to give conjure a go anyway