-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
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
Support direction (or "['dir']") optional attribute of Doxygen \param #5773
Comments
Ensure "[in.out"] and not having "[dir]" is supported. |
Taking this out of tracking, as the tracked VS issue appears to have been fixed. |
Hi @aschlicht Regarding colorization; The C/C++ Extension provides colorization for semantic tokens, but syntax based colorization is provided by VS Code via it's TextMate grammar for C/C++. Given that the colorization you are referring to is in comments, it would be coming from VS Code. You might consider opening an issue in the repo for the C/C++ TextMate grammar used by VS Code, which is here: https://github.com/jeff-hykin/cpp-textmate-grammar |
It turns out the feedback ticket to support direction ['dir'] attribute on the Visual Studio side was unintentionally set to complete. The support has not been implemented yet. The feedback ticket status was reset to "under review". |
@bcaddy |
Thank you! |
I open an issue in the cpp-textmate-grammer repo, as suggested in other comments, for [in] and [out] syntax coloring. |
@JohanBertrand Not sure -- if it's fixed we could create a new issue to track it. |
@JohanBertrand the link to the original Visual Studio feedback got updated. I updated the link to https://developercommunity.visualstudio.com/t/support-dir-optional-attribute-of-doxygen-param/1112281. |
Are there still plans to roll out this feature, even when used correctly, i.e. |
Is this feature dependent on Visual Studio fixing the ticket linked above, or is there a path forward within VScode? |
Feature requested on Visual Studio at https://developercommunity.visualstudio.com/t/support-dir-optional-attribute-of-doxygen-param/1112281
Feature details:
This is a feature request to support parsing of the direction (or ‘[‘dir’]’) optional attribute of the Doxygen command \param '[‘dir’]'
Information about the direction or “dir” attribute:
https://www.doxygen.nl/manual/commands.html#cmdparam
Example:
If ‘[‘dir’]’ is supported, the hover info of the
memcpy
would show which param are [in] and which are [out].The text was updated successfully, but these errors were encountered: