Revision: 650 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=650&view=rev Author: frlan Date: 2009-05-15 21:33:22 +0000 (Fri, 15 May 2009)
Log Message: ----------- GeanyLaTeX: Add some more environments to pulldown of insert environment dialog
Modified Paths: -------------- trunk/geanylatex/ChangeLog trunk/geanylatex/src/latexenvironments.c
Modified: trunk/geanylatex/ChangeLog =================================================================== --- trunk/geanylatex/ChangeLog 2009-05-15 21:32:22 UTC (rev 649) +++ trunk/geanylatex/ChangeLog 2009-05-15 21:33:22 UTC (rev 650) @@ -1,3 +1,8 @@ +2009-05-15 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + + * Adding a toolbar for common LaTeX format topics. + + 2009-04-17 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
* Set undo points for better redo/undo on inserting formatings.
Modified: trunk/geanylatex/src/latexenvironments.c =================================================================== --- trunk/geanylatex/src/latexenvironments.c 2009-05-15 21:32:22 UTC (rev 649) +++ trunk/geanylatex/src/latexenvironments.c 2009-05-15 21:33:22 UTC (rev 650) @@ -26,12 +26,14 @@ { ENVIRONMENT_CAT_FORMAT, N_("Formating"), TRUE}, { ENVIRONMENT_CAT_STRUCTURE, N_("Document Structure"), TRUE}, { ENVIRONMENT_CAT_LISTS, N_("Lists"), TRUE}, + { ENVIRONMENT_CAT_MATH, N_("Math"), TRUE}, { 0, NULL, FALSE} };
SubMenuTemplate glatex_environment_array[] = { /* General document structure environments */ + {ENVIRONMENT_CAT_STRUCTURE, "block", "block"}, {ENVIRONMENT_CAT_STRUCTURE, "document", "document"}, {ENVIRONMENT_CAT_STRUCTURE, "frame", "frame"}, {ENVIRONMENT_CAT_STRUCTURE, "table", "table"}, @@ -41,6 +43,10 @@ {ENVIRONMENT_CAT_LISTS, "itemize", "itemize"}, {ENVIRONMENT_CAT_LISTS, "enumerate", "enumerate"}, {ENVIRONMENT_CAT_LISTS, "description", "description"}, + /* Math stuff */ + {ENVIRONMENT_CAT_MATH, "displaymath", "displaymath"}, + {ENVIRONMENT_CAT_MATH, "equation", "equation"}, + {ENVIRONMENT_CAT_MATH, "eqnarray", "eqnarray"},
{0, NULL, NULL}, };
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.