Revision: 1409 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1409&view=re... Author: colombanw Date: 2010-05-26 14:58:04 +0000 (Wed, 26 May 2010)
Log Message: ----------- GeanyGenDoc: Fix "brief" Doxygen tag in C configuration
Modified Paths: -------------- trunk/geany-plugins/geanygendoc/data/filetypes/c.conf
Modified: trunk/geany-plugins/geanygendoc/data/filetypes/c.conf =================================================================== --- trunk/geany-plugins/geanygendoc/data/filetypes/c.conf 2010-05-25 20:04:45 UTC (rev 1408) +++ trunk/geany-plugins/geanygendoc/data/filetypes/c.conf 2010-05-26 14:58:04 UTC (rev 1409) @@ -73,14 +73,14 @@ }
doxygen = { - function.template = "/**\n * {doxygen_prefix}brief: {cursor}\n{for a in argument_list} * {doxygen_prefix}param {a} \n{end}{if returns} * {doxygen_prefix}returns \n{end}{if write_since} * {doxygen_prefix}since \n{end} * \n * \n */\n"; - macro.template = "/**\n * {doxygen_prefix}brief: {cursor}\n{for a in argument_list} * {doxygen_prefix}param {a} \n{end}{if returns} * {doxygen_prefix}returns \n{end}{if write_since} * {doxygen_prefix}since \n{end} * \n * \n */\n"; + function.template = "/**\n * {doxygen_prefix}brief {cursor}\n{for a in argument_list} * {doxygen_prefix}param {a} \n{end}{if returns} * {doxygen_prefix}returns \n{end}{if write_since} * {doxygen_prefix}since \n{end} * \n * \n */\n"; + macro.template = "/**\n * {doxygen_prefix}brief {cursor}\n{for a in argument_list} * {doxygen_prefix}param {a} \n{end}{if returns} * {doxygen_prefix}returns \n{end}{if write_since} * {doxygen_prefix}since \n{end} * \n * \n */\n"; struct.member = { template = " /**< {cursor} */"; position = AFTER; } struct = { - template = "/**\n * {doxygen_prefix}brief: {cursor}\n * \n * \n */\n"; + template = "/**\n * {doxygen_prefix}brief {cursor}\n * \n * \n */\n"; auto_doc_children = True; } union.member = { @@ -88,19 +88,19 @@ position = AFTER; } union = { - template = "/**\n * {doxygen_prefix}brief: {cursor}\n * \n * \n */\n"; + 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"; + template = "/**\n * {doxygen_prefix}brief {cursor}\n * \n * \n */\n"; auto_doc_children = True; } enum.enumval = { template = " /**< {cursor} */"; position = AFTER; } - typedef.template = "/**\n * {doxygen_prefix}brief: {cursor}\n * \n * \n */\n"; - define.template = "/**\n * {doxygen_prefix}brief: {cursor}\n * \n * \n */\n"; + typedef.template = "/**\n * {doxygen_prefix}brief {cursor}\n * \n * \n */\n"; + define.template = "/**\n * {doxygen_prefix}brief {cursor}\n * \n * \n */\n"; } }
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
plugins-commits@lists.geany.org