vim

For discussion on all things (neo)vim.
tzzh 2019-11-27T09:46:09.488400Z

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-withey 2019-11-27T16:48:48.488500Z

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

tzzh 2019-11-27T17:16:49.488700Z

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

penryu 2019-11-27T20:13:41.490100Z

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

tzzh 2019-11-27T21:29:51.490300Z

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