elm-language-server icon indicating copy to clipboard operation
elm-language-server copied to clipboard

Completions for nested types

Open jmbockhorst opened this issue 4 years ago • 1 comments

There should be completions for nested types. For example:

type alias Data =
    { prop : String
    }


type alias Model =
    { data : Data
    }


test : Model -> String
test model = model.data.|

model.data. should have completions for the Data type.

jmbockhorst avatar Mar 30 '20 14:03 jmbockhorst

We need to figure out how to get the tree to be stable enough to recommend correctly, when you press Control+Space after a dot.

razzeee avatar Apr 17 '20 10:04 razzeee