Open
Description
If you have the following scala class in the default package:
class Application extends Controller {
def index = Action {
Ok("hello")
}
}
after completing for Application
, completion will not work on its members.
However, it should first be further investigated to see if play supports action methods coming from these type of sources (classes, objects, and package objects in the default package) before implementing a fix. If play does not support them, then perhaps modules/classes/package-objects in the default package should not appear in the autocompletion suggestion list.