You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have java project where the source codes for external libs (incl. the jdk) are in jars. When I run the eclimd command that eclim-emacs dumps in the terminal I get result, but it's filtered out from what I can see in the source code.
Details:
eclim grep view pops-up and shows empty result. Same also with a class from another lib where the jar contains the .class as well as the .java files.
I suspect that this is where these results are filtered out: https://github.com/senny/emacs-eclim/blob/master/eclim.el#L371
I guess there is good reason for that. I am interested to understand how to set-up my project so that emacs-eclim would be able to display these results
The text was updated successfully, but these errors were encountered:
+1 This is very useful for android programming as I quite often need to look up builtin class definitions. The default behavior in the Vim plugin is locating the jar and opening the class file.
This command will create a temporary file that contains the contents of the decompiled java file just as you would see when using eclipse to "goto declaration".
EDIT:
Example command executed by the vim plugin:
-editor vim -command archive_read -f "jar:///Users/path/to/.m2/repository/org/apache/curator/curator-framework/2.7.1/curator-framework-2.7.1-sources.jar!/org/apache/curator/framework/CuratorFramework.java"
I have java project where the source codes for external libs (incl. the jdk) are in jars. When I run the eclimd command that eclim-emacs dumps in the terminal I get result, but it's filtered out from what I can see in the source code.
Details:
the terminal command
result
eclim grep view pops-up and shows empty result. Same also with a class from another lib where the jar contains the .class as well as the .java files.
I suspect that this is where these results are filtered out: https://github.com/senny/emacs-eclim/blob/master/eclim.el#L371
I guess there is good reason for that. I am interested to understand how to set-up my project so that emacs-eclim would be able to display these results
The text was updated successfully, but these errors were encountered: