hey folks, what do I need to be able to navigate to java method definitions when using interop
or rather how do you currently navigate to java source code
You can navigate to clojure source because the clojure source is on the classpath but afaik you normally just have .class files on your classpath and not java source.
Yes , this is possible in intellij since it pulls in the java source code aswell apparently so was wondering what vim folks do
I've just checked that vim-iced can navigate and show source of java class. And I've used this approach to fetch missing sources using maven https://stackoverflow.com/a/14395560/187261
@zyxmndaleyjes I am sure this is not what you had in mind, but I tend to use the javadoc
function, which opens the API documentation in my browser
(in a default repl, javadoc is bound to clojure.java.javadoc/javadoc)
@zyxmndaleyjes there's a lein plugin that'll add the java sources to the classpath, I used it for a while a long time ago and it worked perfectly wwith fireplace
Perfect , I'll have a looksie
Thanks
Yea I came across that . It's pretty useful
Oh sweet 🤙
Thanks