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

Incorrect imports for nested classes when using company autocompletion #279

Open amol-mandhane opened 8 years ago

amol-mandhane commented 8 years ago

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;.

nloyola commented 8 years ago

Development for this repository has moved to emacs-eclim/emacs-eclim. Please submit your issue there.