Open rwols opened 3 years ago
By the way, consider adding a sublime-package.json file that describes the settings with a schema for LSP-json: https://github.com/sublimelsp/LSP-json#schemas-contributed-by-packages
Thank you for the suggestion
The settings section of the documentation explains the format (expand the settings for more details) It's not easy to understand, because the format have changed from the initial version and the compatibility has been preserved. Feel free to ask more specific questions or suggest a better explanation if the documentation is not clear.
To answer your example, the settings could start like this
"preferred_comments_styles": [
[
[ "/// " ],
[ "/// " ],
],
Ironically I don't understand how
preferred_comments_styles
works precisely...///
higher it seems to prefer that.What I want to achieve is this kind of comment style:
I did discover that
"doxygen_command_prefix": "\\",
does what I want with respect to\param
vs@param
.