emacs-eclim
emacs-eclim copied to clipboard
Incorrect imports for nested classes when using company autocompletion
Suppose I have a class like following
package com.example;
class OuterClass {
class InnerClass {
}
}
The correct import for this should be import com.example.OuterClass.InnerClass;
. When I am using auto-complete, it works perfectly. But when I am using company for completion, the automatically added import is import com.example.InnerClass;
.
Development for this repository has moved to emacs-eclim/emacs-eclim. Please submit your issue there.