SF.net SVN: geany-plugins:[1311] trunk/geanygendoc/data/filetypes/c.conf
colombanw at users.sourceforge.net
colombanw at xxxxx
Mon Apr 26 23:03:40 UTC 2010
Revision: 1311
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1311&view=rev
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.
More information about the Plugins-Commits
mailing list