Closed lamm45 closed 1 year ago
In Doxygen, multiple parameters in a comma separated list will use the same description: https://doxygen.nl/manual/commands.html#cmdparam
However, currently only the first listed parameter is highlighted in a Doxygen comment block.
"C_Cpp.enhancedColorization": "Disabled"
/** Sets the position. * @param x,y,z Coordinates of the position in 3D space. */ void setPosition(double x,double y,double z,double t) { }
Default dark theme in VS Code 1.72.2:
Variables x, y and z should all be in the same color in the comment block.
should now be fixed on v1.17.2
v1.17.2
In Doxygen, multiple parameters in a comma separated list will use the same description: https://doxygen.nl/manual/commands.html#cmdparam
However, currently only the first listed parameter is highlighted in a Doxygen comment block.
Checklist
"C_Cpp.enhancedColorization": "Disabled"
The code with a problem is:
It looks like:
Default dark theme in VS Code 1.72.2:
It should look like:
Variables x, y and z should all be in the same color in the comment block.