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
One key feature of the language server is to support contextual information via hovering over code. It's useful for developers to not only be able to see the types that a function deals with, but also it's documentation.
When hovering over String.flatten below:
let str = String.flatten([err, "\n", hig]);
The user should be able to see something like:
String.flatten(xs: List(String)): String
flatten takes a List of Strings and concatenates them into a single String.
The text was updated successfully, but these errors were encountered:
One key feature of the language server is to support contextual information via hovering over code. It's useful for developers to not only be able to see the types that a function deals with, but also it's documentation.
When hovering over
String.flatten
below:The user should be able to see something like:
The text was updated successfully, but these errors were encountered: