This is reported on Visual Studio at
https://developercommunity.visualstudio.com/content/problem/1105383/comments-without-doxygen-tags-is-not-parsed-correc.html. Please upvote the Visual Studio feedback ticket to increase priority of issue as this feature is a shared API between Visual Studio C++ IntelliSense and the VS Code C++ extension.
Sample code:
/**
* Hello there
* blue sky.
*
* @return this is return note
*/
int test()
{
return 0;
}
Repro steps:
- In a C++ source, use the sample code provided.
- Hover over the function
test().
- Tooltip display result: “Hello thereblue sky”

Expected result in tooltip display:
“Hello there blue sky”
Note:
This issue only occurs when the comment has Doxygen tags.
This is reported on Visual Studio at
https://developercommunity.visualstudio.com/content/problem/1105383/comments-without-doxygen-tags-is-not-parsed-correc.html. Please upvote the Visual Studio feedback ticket to increase priority of issue as this feature is a shared API between Visual Studio C++ IntelliSense and the VS Code C++ extension.
Sample code:
Repro steps:
test().Expected result in tooltip display:
“Hello there blue sky”
Note:
This issue only occurs when the comment has Doxygen tags.