halohalospecial / atom-elmjutsu

A bag of tricks for developing with Elm. (Atom package)
https://atom.io/packages/elmjutsu
MIT License
192 stars 24 forks source link

Feature: Autocomplete function from type definition #2

Closed brasilikum closed 7 years ago

brasilikum commented 8 years ago
add : Int -> Model -> Model

could suggest

add : Int -> Model -> Model
add int model = 

What do you think?

halohalospecial commented 8 years ago

Hi @brasilikum, how will this work? Is it a new command or part of autocomplete? Let's say the cursor is at the end of add : Int -> Model -> Model, it will suggest add int model =? I'm planning to do auto complete next and this seems useful!