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
lua-language-server allows to define the type for functions like fun(PARAM: TYPE): RETURN_TYPE
fun(PARAM: TYPE): RETURN_TYPE
It appears that lemmy-help currently stops at the first whitespace.
In something like this:
---@alias TestRunner fun(classname: string, methodname: string):string, string[]
It only renders:
Type: ~ fun(classname:
Without whitespace it works:
---@alias TestRunner fun(classname:string,methodname:string):(string,string[])
Would be nice if the variant with whitespaces worked too.
Update: I just noticed #47, so this is already getting addressed?
The text was updated successfully, but these errors were encountered:
Yup, most types will be parsed correctly after #47. Although after seeing your example I might also need to handle multiple returns 🙂
Sorry, something went wrong.
7e46731
Successfully merging a pull request may close this issue.
lua-language-server allows to define the type for functions like
fun(PARAM: TYPE): RETURN_TYPE
It appears that lemmy-help currently stops at the first whitespace.
In something like this:
It only renders:
Without whitespace it works:
Would be nice if the variant with whitespaces worked too.
Update: I just noticed #47, so this is already getting addressed?
The text was updated successfully, but these errors were encountered: