lsp-ui
lsp-ui copied to clipboard
Doxygen method documentation displayed by `lsp-ui`
Hello,
I write a java project in which I make the documentation for doxygen like this :
/**
* My method brief.
* Some details.
* \param param1 This is the first parameter.
* \param param2 This is the second parameter.
* \return The returned value
*/
When I place the cursor of one call of this method, it shows this documentation like this :
My method brief. Some details. \param param1 This is the first parameter. \param param2 This is the second parameter. \return The returned value.
* Parameters
- parameter1
- parameter2
It seems the doc is retrieved without interpreting the newline. How can I make it appear better ?
Regards
The current behavior is really annoying and I'd like to help fix it. Can anyone point us in the right direction?
I works perfectly fine for me in Java projects, however in C++ projects I have this exact issue.