Christoph Schlosser
Christoph Schlosser
Thank you. I will try to reproduce it.
I tried to implement this once but couldn't figure it out back then. Do you know how the API works?
Hi @Rossettaylm , this isn't possible yet. Thank you for requesting this feature.
Hi @KUGA2 , Please try with these configuration settings: ```json "doxdocgen.generic.order": [ "empty", "tparam", "param", "empty", "return" ], "doxdocgen.generic.paramTemplate": "\param {param} ", "doxdocgen.generic.returnTemplate": "\retval ", "doxdocgen.c.commentPrefix": "//! ", "doxdocgen.c.firstLine": "//!",...
Hi @KUGA2 , > Are there templates for brief and description? Yes and no. There is a template for `brief` (and it's default value): ```json "doxdocgen.generic.briefTemplate": "@brief {text}" ``` There...
Hi @KUGA2 , > Also, the brief collides with the c/dtor texts: If you want to disable these texts you can set `"doxdocgen.generic.generateSmartText": false`. > However, on other C(++) elements,...
Hi @moonlightsh, thank you for reaching out. I don't have a satisfying solution for you yet but could your try using `"doxdocgen.generic.filteredKeywords": []`? Something along the lines of ```json "doxdocgen.generic.filteredKeywords":...
Thank you for your suggestion. This will be possible if/once the plugin supports a language server for parsing instead of a custom lexer which is not going to happen soon.
The available template replacement's are documented for each setting where they can be used.
Thanks for bringing this to my attention. That's actually quite weird as when VS Code introduced that feature for C++ it broke the extension and I had to write a...