We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be nice to have inlay hints showing the type of each line in a pipeline expression (that span across multiple lines)
This is the way this is shown in Rust:
I have a working POC in this PR
a |> f() |> ... |> g()
a
html: Html
#2319, #2393, #2525
The text was updated successfully, but these errors were encountered:
Sounds good! One thing I want to make sure is that we don't make it too overwhelming with too much information.
should we show it even if the value if a simple literal (e.g. string or int)?
Let's not show it.
should we show it even if the value is a variable whose type is a type with the same name? (e.g. html: Html)
Yes
Sorry, something went wrong.
No branches or pull requests
It would be nice to have inlay hints showing the type of each line in a pipeline expression (that span across multiple lines)
This is the way this is shown in Rust:
I have a working POC in this PR
Open questions
a |> f() |> ... |> g()
expression, should we showa
's type? (Rust shows it)html: Html
)Previous attempts
#2319, #2393, #2525
The text was updated successfully, but these errors were encountered: