Revision: 1100 http://svn.sourceforge.net/geany/?rev=1100&view=rev Author: ntrel Date: 2006-12-15 04:40:18 -0800 (Fri, 15 Dec 2006)
Log Message: ----------- Show D typedefs in bold.
Modified Paths: -------------- trunk/ChangeLog trunk/data/filetypes.d trunk/src/highlighting.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2006-12-15 11:57:48 UTC (rev 1099) +++ trunk/ChangeLog 2006-12-15 12:40:18 UTC (rev 1100) @@ -3,6 +3,8 @@ * src/sci_cb.c: Only remove extra space indent after a multiline comment if the indent contains one too many spaces. + * src/highlighting.c, data/filetypes.d: + Show D typedefs in bold.
2006-12-14 Frank Lanitz frank@frank.uvena.de
Modified: trunk/data/filetypes.d =================================================================== --- trunk/data/filetypes.d 2006-12-15 11:57:48 UTC (rev 1099) +++ trunk/data/filetypes.d 2006-12-15 12:40:18 UTC (rev 1100) @@ -10,7 +10,7 @@ word=0x00007f;0xffffff;true;false word2=0x991111;0xffffff;true;false word3=0x991111;0xffffff;true;false -typedef=0x0000d0;0xffffff;false;false +typedef=0x0000d0;0xffffff;true;false string=0xff901e;0xffffff;false;false stringeol=0x000000;0xe0c0e0;false;false character=0xff901e;0xffffff;false;false
Modified: trunk/src/highlighting.c =================================================================== --- trunk/src/highlighting.c 2006-12-15 11:57:48 UTC (rev 1099) +++ trunk/src/highlighting.c 2006-12-15 12:40:18 UTC (rev 1100) @@ -2536,7 +2536,7 @@ get_keyfile_hex(config, config_home, "styling", "word", "0x00007f", "0xffffff", "true", &style_sets[GEANY_FILETYPES_D].styling[6]); get_keyfile_hex(config, config_home, "styling", "word2", "0x991111", "0xffffff", "true", &style_sets[GEANY_FILETYPES_D].styling[7]); get_keyfile_hex(config, config_home, "styling", "word3", "0x991111", "0xffffff", "true", &style_sets[GEANY_FILETYPES_D].styling[8]); - get_keyfile_hex(config, config_home, "styling", "typedef", "0x0000d0", "0xffffff", "false", &style_sets[GEANY_FILETYPES_D].styling[9]); + get_keyfile_hex(config, config_home, "styling", "typedef", "0x0000d0", "0xffffff", "true", &style_sets[GEANY_FILETYPES_D].styling[9]); get_keyfile_hex(config, config_home, "styling", "string", "0xff901e", "0xffffff", "false", &style_sets[GEANY_FILETYPES_D].styling[10]); get_keyfile_hex(config, config_home, "styling", "stringeol", "0x000000", "0xe0c0e0", "false", &style_sets[GEANY_FILETYPES_D].styling[11]); get_keyfile_hex(config, config_home, "styling", "character", "0xff901e", "0xffffff", "false", &style_sets[GEANY_FILETYPES_D].styling[12]);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.