Revision: 1311 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1311&view=re... Author: colombanw Date: 2010-04-26 23:03:40 +0000 (Mon, 26 Apr 2010)
Log Message: ----------- GeanyGenDoc: Use new auto-generation of children documentation
Use auto-generation of children's documentation for structures, unions and enumerations in Doxygen format.
Modified Paths: -------------- trunk/geanygendoc/data/filetypes/c.conf
Modified: trunk/geanygendoc/data/filetypes/c.conf =================================================================== --- trunk/geanygendoc/data/filetypes/c.conf 2010-04-26 23:03:10 UTC (rev 1310) +++ trunk/geanygendoc/data/filetypes/c.conf 2010-04-26 23:03:40 UTC (rev 1311) @@ -79,13 +79,22 @@ template = " /**< {cursor} */"; position = AFTER; } - struct.template = "/**\n * {doxygen_prefix}brief: {cursor}\n * \n * \n */\n"; + struct = { + template = "/**\n * {doxygen_prefix}brief: {cursor}\n * \n * \n */\n"; + auto_doc_children = True; + } union.member = { template = " /**< {cursor} */"; position = AFTER; } - union.template = "/**\n * {doxygen_prefix}brief: {cursor}\n * \n * \n */\n"; - enum.template = "/**\n * {doxygen_prefix}brief: {cursor}\n * \n * \n */\n"; + union = { + template = "/**\n * {doxygen_prefix}brief: {cursor}\n * \n * \n */\n"; + auto_doc_children = True; + } + enum = { + template = "/**\n * {doxygen_prefix}brief: {cursor}\n * \n * \n */\n"; + auto_doc_children = True; + } enum.enumval = { template = " /**< {cursor} */"; position = AFTER;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.