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 will be much helpful to show the trait info in LSP completion.
For example, there's a function write_object:
write_object
pub fn Logger::write_object[Obj : Show](self : Logger, obj : Obj) -> Unit { obj.output(self) }
Now, LSP will show info like this
It's unhelpful since I don't what Obj is here. I have to jump to the definition of Logger::write_object to get enough informations.
Obj
Logger::write_object
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It will be much helpful to show the trait info in LSP completion.
For example, there's a function
write_object
:Now, LSP will show info like this
It's unhelpful since I don't what
Obj
is here. I have to jump to the definition ofLogger::write_object
to get enough informations.The text was updated successfully, but these errors were encountered: