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
Hi
I would like to suggest you support the auto-comment generation feature for solidity extension.
For example: let's assume we have this function.
function setAdmin(address _admin, bool _enabled) external onlyOwner { _admins[_admin] = _enabled; emit SetAdminAccess(true); }
Then I want to have a comment skeleton like this when I write /** and press enter.
/**
enter
/** * @notice * * @param _admin * @param _enabled */
I think this is possible because you are providing this for javascript/typescript already.
Looking forward to hearing from you.
Best regards, Meanking
The text was updated successfully, but these errors were encountered:
That is a great suggestion.
We are focused on vim.coc support right now, but we will be looking generally at how we deal with comments in the new year.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Hi
I would like to suggest you support the auto-comment generation feature for solidity extension.
For example:
let's assume we have this function.
Then I want to have a comment skeleton like this when I write
/**
and pressenter
.I think this is possible because you are providing this for javascript/typescript already.
Looking forward to hearing from you.
Best regards,
Meanking
The text was updated successfully, but these errors were encountered: