Under development
There's a lot of features regarding autocompleting java which is not complete yet. Parsing Java with all its quirks is complicated and it will take a long time to get everything right.
Read the CONTRIBUTING guidelines before opening PRs or Issues.
Autocomplete suggestions for Java.
Create a file named .classpath
in the project root.
This file will be parsed an classes will be extracted from it and added to autocomplete suggestions.
It should have the same format as the classpath has on your platform. On UNIX it would look something like
/path/to/one/dependency.jar:/home/noseglid/devel/JavaProject/build/classes
autocomplete-java-minus
will parse dependency.jar
as well as any
class or JAR file under /home/noseglid/devel/JavaProject/build/classes
autocomplete-java-minus
differs from autocomplete-java
in that it:
jdjs
to parse JARs/Classes. It's a native javascript implementation which is way faster, consumes less resources and offers more flexibility than spawning javap
over and over again.autocomplete-java-minus
aims to only handle auto completion. Thus, the following will not be implemented in the scope of this package.
.class
-fileWhile these may be desired features, it is left up to other packages to implement.
In java it is quite tedious to look up which package/namespace
a class belongs to. autocomplete-java-minus
will work with
java-import-wiz
to automatically insert import
statements when an autocompletion is accepted.
Parse implicit Java JARs (rt.jar
, javaws.jar
, etc).
.classpath
parsing:
Autocomplete suggestions for parsed classes
Autocomplete non-static members
Integrated with java-import-wiz for auto import
statements.
Good catch. Let us know what about this package looks wrong to you, and we'll investigate right away.