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
This is a feature request, which would be fairly easy to add to this package.
Changing line 50 in the generator to
arguments[#arguments].displayName = string.format( '[%s=%s]', v.name, v.default )
This would autocomplete functions like:
love.graphics.printf(string,x, y, [align=left], [r=0], [sx=1], [sy=sx], [ox=0], [oy=0], [kx=0], [ky=0])
Note that the argument list can become quite long, so this should be carefully considered
The text was updated successfully, but these errors were encountered:
Hm that could be an issue, but the length wouldn't be a problem as soon as the line is pasted to the editor, right?
Sorry, something went wrong.
When the autocomplete is performed it becomes:
love.graphics.printf(string,x, y, align, r, sx, sy, ox, oy, kx, ky)
This is autocomplete-lua behaviour (argDisplay is only used in the autocomplete tooltip)
argDisplay
No branches or pull requests
This is a feature request, which would be fairly easy to add to this package.
Changing line 50 in the generator to
This would autocomplete functions like:
Note that the argument list can become quite long, so this should be carefully considered
The text was updated successfully, but these errors were encountered: