You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type alias Person={ firstname :String}getFirstname:Person->StringgetFirstname person =
person.firstname
While hovering over person here does reveal person : Person the hover menu provides no link to the Person definition, which would be handy for functions that are so long that you need to scroll up to reach the type definition.
I'm assuming that because of a limitation with VS Code these types in the hover menu cannot be linked directly, but it would also be helpful if the links were provided below, like for example rust-analyzer does it:
The text was updated successfully, but these errors were encountered:
I didn't give the best example. I am more thinking of e.g. an update function of an Elm app with many cases that are pattern matched. in the middle of the function you only have the variables from the pattern, there is no definition you can quickly jump to.
While hovering over
person
here does revealperson : Person
the hover menu provides no link to thePerson
definition, which would be handy for functions that are so long that you need to scroll up to reach the type definition.I'm assuming that because of a limitation with VS Code these types in the hover menu cannot be linked directly, but it would also be helpful if the links were provided below, like for example rust-analyzer does it:
The text was updated successfully, but these errors were encountered: