senny / emacs-eclim

This project brings some of the great eclipse features to emacs developers. It is based on the eclim project, which provides eclipse features for vim.
http://www.emacswiki.org/emacs/EmacsEclim
587 stars 102 forks source link

Completing static imports adds to much info #201

Open kleewho opened 9 years ago

kleewho commented 9 years ago

Completing static imports adds all info about types instead of just a name of method or field. For fields it will be solved with https://github.com/senny/emacs-eclim/issues/193 but static methods will need separate fix.

If there's way to force eclim to autoimport statics then it's easier to live with this issue. Usually for me situation looks like this:

public void methodName(@Nonnull String arg) {

}

And then I need to add @Nonnull. Unfortunatelly eclim doesn't have it in corrections nor do not want to import it so I'm doing it semi-manually.