Fork me on GitHub
#vim
<
2019-11-27
>
tzzh09:11:09

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.

joe-withey16:11:48

You can just run ctags -R in the root of your project directory and then use Ctrl-] to jump to a tag.

tzzh17:11:49

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

penryu20:11:41

I’ve had some luck with conjure in neovim, including clojure core source, IIRC.

tzzh21:11:51

OK cheers I will take a look, I wanted to give conjure a go anyway