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函数代码,什么样的注释格式才可以在使用该函数时触发注释文档提示? 例如以下的求和函数:
function Sum(a, b) local sum = a + b return sum end
The text was updated successfully, but these errors were encountered:
暂时还不支持提示注释哈。后续再看是不是加上去
Sorry, something went wrong.
@liwangqian 能根据函数的签名自动生成注释内容是一个很方便的注释方式,希望尽可能加上这个功能,类似插件“Lua Analyzer”具有这样的功能,作者可以参考下。
No branches or pull requests
给定一段Lua函数代码,什么样的注释格式才可以在使用该函数时触发注释文档提示?
例如以下的求和函数:
The text was updated successfully, but these errors were encountered: