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

Show constructor type in sidekick? #27

Closed aryairani closed 7 years ago

aryairani commented 7 years ago

Given a type like:

module MyModule exposing (..)
type Foo = Bar Int

The sidekick shows

MyModule.Bar : Foo

but I think it should show

MyModule.Bar : Int -> Foo

Is this something that can be fixed within elmjutsu?