SF.net SVN: geany:[3870] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Wed Jun 17 11:17:07 UTC 2009


Revision: 3870
          http://geany.svn.sourceforge.net/geany/?rev=3870&view=rev
Author:   ntrel
Date:     2009-06-17 11:17:07 +0000 (Wed, 17 Jun 2009)

Log Message:
-----------
Make C++, D lexer filetypes use named styles (apart from uuid,
verbatim, regex styles).

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/HACKING
    trunk/data/filetypes.actionscript
    trunk/data/filetypes.c
    trunk/data/filetypes.common
    trunk/data/filetypes.cpp
    trunk/data/filetypes.cs
    trunk/data/filetypes.d
    trunk/data/filetypes.ferite
    trunk/data/filetypes.glsl
    trunk/data/filetypes.haxe
    trunk/data/filetypes.java
    trunk/data/filetypes.javascript
    trunk/data/filetypes.vala

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2009-06-17 10:56:37 UTC (rev 3869)
+++ trunk/ChangeLog	2009-06-17 11:17:07 UTC (rev 3870)
@@ -6,6 +6,13 @@
  * src/editor.c:
    Only autocomplete scope for scopes matching the current filetype's
    language.
+ * data/filetypes.java, data/filetypes.cpp, data/filetypes.vala,
+   data/filetypes.haxe, data/filetypes.common, data/filetypes.glsl,
+   data/filetypes.actionscript, data/filetypes.cs,
+   data/filetypes.ferite, data/filetypes.c, data/filetypes.d,
+   data/filetypes.javascript, HACKING:
+   Make C++, D lexer filetypes use named styles (apart from uuid,
+   verbatim, regex styles).
 
 
 2009-06-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>

Modified: trunk/HACKING
===================================================================
--- trunk/HACKING	2009-06-17 10:56:37 UTC (rev 3869)
+++ trunk/HACKING	2009-06-17 11:17:07 UTC (rev 3870)
@@ -245,7 +245,9 @@
    ``styleset_case(GEANY_FILETYPES_FOO, foo);``.
 
 Please try to make your styles fit in with the other filetypes' default
-colors.
+colors, and to use named styles where possible. Filetypes that share a
+lexer should have the same colors. Normally, styles should leave the
+background color empty to match the default color.
 
 Error message parsing
 ^^^^^^^^^^^^^^^^^^^^^

Modified: trunk/data/filetypes.actionscript
===================================================================
--- trunk/data/filetypes.actionscript	2009-06-17 10:56:37 UTC (rev 3869)
+++ trunk/data/filetypes.actionscript	2009-06-17 11:17:07 UTC (rev 3870)
@@ -1,26 +1,28 @@
 # For complete documentation of this file, please see Geany's main documentation
 [styling]
 # foreground;background;bold;italic
-default=0x000000;0xffffff;false;false
-comment=0xd00000;0xffffff;false;false
-commentline=0xd00000;0xffffff;false;false
-commentdoc=0x3f5fbf;0xffffff;false;false
-number=0x007f00;0xffffff;false;false
-word=0x00007f;0xffffff;true;false
-word2=0x991111;0xffffff;true;false
-string=0xff901e;0xffffff;false;false
-character=0xff901e;0xffffff;false;false
-uuid=0x404080;0xffffff;false;false
-preprocessor=0x007F7F;0xffffff;false;false
-operator=0x301010;0xffffff;false;false
-identifier=0x000000;0xffffff;false;false
-stringeol=0x000000;0xe0c0e0;false;false
-verbatim=0x101030;0xffffff;false;false
-regex=0x105090;0xffffff;false;false
-commentlinedoc=0x3f5fbf;0xffffff;true;false
-commentdockeyword=0x3f5fbf;0xffffff;true;true
-commentdockeyworderror=0x3f5fbf;0xffffff;false;false
-globalclass=0x0000d0;0xffffff;true;false
+default=default
+comment=comment
+commentline=comment
+commentdoc=commentdoc
+number=number
+word=word
+word2=word2
+string=string
+character=string
+uuid=0x404080
+preprocessor=preprocessor
+operator=operator
+identifier=default
+stringeol=stringeol
+# @"verbatim"
+verbatim=0x101030
+# (/regex/)
+regex=0x105090
+commentlinedoc=commentdoc,bold
+commentdockeyword=commentdoc,bold,italic
+commentdockeyworderror=commentdoc
+globalclass=type
 
 [keywords]
 # all items must be in one line

Modified: trunk/data/filetypes.c
===================================================================
--- trunk/data/filetypes.c	2009-06-17 10:56:37 UTC (rev 3869)
+++ trunk/data/filetypes.c	2009-06-17 11:17:07 UTC (rev 3870)
@@ -1,26 +1,28 @@
 # For complete documentation of this file, please see Geany's main documentation
 [styling]
 # foreground;background;bold;italic
-default=0x000000;0xffffff;false;false
-comment=0xd00000;0xffffff;false;false
-commentline=0xd00000;0xffffff;false;false
-commentdoc=0x3f5fbf;0xffffff;false;false
-number=0x007f00;0xffffff;false;false
-word=0x00007f;0xffffff;true;false
-word2=0x991111;0xffffff;true;false
-string=0xff901e;0xffffff;false;false
-character=0xff901e;0xffffff;false;false
-uuid=0x404080;0xffffff;false;false
-preprocessor=0x007F7F;0xffffff;false;false
-operator=0x301010;0xffffff;false;false
-identifier=0x000000;0xffffff;false;false
-stringeol=0x000000;0xe0c0e0;false;false
-verbatim=0x101030;0xffffff;false;false
-regex=0x105090;0xffffff;false;false
-commentlinedoc=0x3f5fbf;0xffffff;true;false
-commentdockeyword=0x3f5fbf;0xffffff;true;true
-commentdockeyworderror=0x3f5fbf;0xffffff;false;false
-globalclass=0x0000d0;0xffffff;true;false
+default=default
+comment=comment
+commentline=comment
+commentdoc=commentdoc
+number=number
+word=word
+word2=word2
+string=string
+character=string
+uuid=0x404080
+preprocessor=preprocessor
+operator=operator
+identifier=default
+stringeol=stringeol
+# @"verbatim"
+verbatim=0x101030
+# (/regex/)
+regex=0x105090
+commentlinedoc=commentdoc,bold
+commentdockeyword=commentdoc,bold,italic
+commentdockeyworderror=commentdoc
+globalclass=type
 # whether arguments of preprocessor commands should be styled (only first argument is used)
 # 1 to enable, 0 to disable
 styling_within_preprocessor=1;0;false;false

Modified: trunk/data/filetypes.common
===================================================================
--- trunk/data/filetypes.common	2009-06-17 10:56:37 UTC (rev 3869)
+++ trunk/data/filetypes.common	2009-06-17 11:17:07 UTC (rev 3870)
@@ -84,3 +84,20 @@
 # which characters should be skipped when moving (or included when deleting) to word boundaries
 # should always include space and tab (\s\t)
 whitespace_chars=\s\t!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~
+
+[named_styles]
+# style names to use in filetypes.* [styling] sections
+default=0x000000;0xffffff;false;false
+comment=0xd00000;0xffffff;false;false
+commentdoc=0x3f5fbf;0xffffff;false;false
+number=0x007f00;0xffffff;false;false
+# keyword
+word=0x00007f;0xffffff;true;false
+# e.g. types from global tags file
+word2=0x991111;0xffffff;true;false
+string=0xff901e;0xffffff;false;false
+preprocessor=0x007f7f;0xffffff;false;false
+operator=0x301010;0xffffff;false;false
+# unterminated string
+stringeol=0x000000;0xe0c0e0;false;false
+type=0x0000d0;0xffffff;true;false

Modified: trunk/data/filetypes.cpp
===================================================================
--- trunk/data/filetypes.cpp	2009-06-17 10:56:37 UTC (rev 3869)
+++ trunk/data/filetypes.cpp	2009-06-17 11:17:07 UTC (rev 3870)
@@ -1,26 +1,28 @@
 # For complete documentation of this file, please see Geany's main documentation
 [styling]
 # foreground;background;bold;italic
-default=0x000000;0xffffff;false;false
-comment=0xd00000;0xffffff;false;false
-commentline=0xd00000;0xffffff;false;false
-commentdoc=0x3f5fbf;0xffffff;false;false
-number=0x007f00;0xffffff;false;false
-word=0x00007f;0xffffff;true;false
-word2=0x991111;0xffffff;true;false
-string=0xff901e;0xffffff;false;false
-character=0xff901e;0xffffff;false;false
-uuid=0x404080;0xffffff;false;false
-preprocessor=0x007F7F;0xffffff;false;false
-operator=0x301010;0xffffff;false;false
-identifier=0x000000;0xffffff;false;false
-stringeol=0x000000;0xe0c0e0;false;false
-verbatim=0x101030;0xffffff;false;false
-regex=0x105090;0xffffff;false;false
-commentlinedoc=0x3f5fbf;0xffffff;true;false
-commentdockeyword=0x3f5fbf;0xffffff;true;true
-commentdockeyworderror=0x3f5fbf;0xffffff;false;false
-globalclass=0x0000d0;0xffffff;true;false
+default=default
+comment=comment
+commentline=comment
+commentdoc=commentdoc
+number=number
+word=word
+word2=word2
+string=string
+character=string
+uuid=0x404080
+preprocessor=preprocessor
+operator=operator
+identifier=default
+stringeol=stringeol
+# @"verbatim"
+verbatim=0x101030
+# (/regex/)
+regex=0x105090
+commentlinedoc=commentdoc,bold
+commentdockeyword=commentdoc,bold,italic
+commentdockeyworderror=commentdoc
+globalclass=type
 # whether arguments of preprocessor commands should be styled (only first argument is used)
 # 1 to enable, 0 to disable
 styling_within_preprocessor=1;0;false;false

Modified: trunk/data/filetypes.cs
===================================================================
--- trunk/data/filetypes.cs	2009-06-17 10:56:37 UTC (rev 3869)
+++ trunk/data/filetypes.cs	2009-06-17 11:17:07 UTC (rev 3870)
@@ -1,26 +1,28 @@
 # For complete documentation of this file, please see Geany's main documentation
 [styling]
 # foreground;background;bold;italic
-default=0x000000;0xffffff;false;false
-comment=0xd00000;0xffffff;false;false
-commentline=0xd00000;0xffffff;false;false
-commentdoc=0x3f5fbf;0xffffff;false;false
-number=0x007f00;0xffffff;false;false
-word=0x00007f;0xffffff;true;false
-word2=0x991111;0xffffff;true;false
-string=0xff901e;0xffffff;false;false
-character=0xff901e;0xffffff;false;false
-uuid=0x404080;0xffffff;false;false
-preprocessor=0x007F7F;0xffffff;false;false
-operator=0x301010;0xffffff;false;false
-identifier=0x000000;0xffffff;false;false
-stringeol=0x000000;0xe0c0e0;false;false
-verbatim=0x101030;0xffffff;false;false
-regex=0x105090;0xffffff;false;false
-commentlinedoc=0x3f5fbf;0xffffff;true;false
-commentdockeyword=0x3f5fbf;0xffffff;true;true
-commentdockeyworderror=0x3f5fbf;0xffffff;false;false
-globalclass=0x0000d0;0xffffff;true;false
+default=default
+comment=comment
+commentline=comment
+commentdoc=commentdoc
+number=number
+word=word
+word2=word2
+string=string
+character=string
+uuid=0x404080
+preprocessor=preprocessor
+operator=operator
+identifier=default
+stringeol=stringeol
+# @"verbatim"
+verbatim=0x101030
+# (/regex/)
+regex=0x105090
+commentlinedoc=commentdoc,bold
+commentdockeyword=commentdoc,bold,italic
+commentdockeyworderror=commentdoc
+globalclass=type
 # whether arguments of preprocessor commands should be styled (only first argument is used)
 # 1 to enable, 0 to disable
 styling_within_preprocessor=1;0;false;false

Modified: trunk/data/filetypes.d
===================================================================
--- trunk/data/filetypes.d	2009-06-17 10:56:37 UTC (rev 3869)
+++ trunk/data/filetypes.d	2009-06-17 11:17:07 UTC (rev 3870)
@@ -1,24 +1,24 @@
 # For complete documentation of this file, please see Geany's main documentation
 [styling]
 # foreground;background;bold;italic
-default=0x000000;0xffffff;false;false
-comment=0xd00000;0xffffff;false;false
-commentline=0xd00000;0xffffff;false;false
-commentdoc=0x3f5fbf;0xffffff;false;false
-commentdocnested=0x3f5fbf;0xffffff;false;false
-number=0x007f00;0xffffff;false;false
-word=0x00007f;0xffffff;true;false
-word2=0x991111;0xffffff;true;false
-word3=0x991111;0xffffff;true;false
-typedef=0x0000d0;0xffffff;true;false
-string=0xff901e;0xffffff;false;false
-stringeol=0x000000;0xe0c0e0;false;false
-character=0xff901e;0xffffff;false;false
-operator=0x301010;0xffffff;false;false
-identifier=0x000000;0xffffff;false;false
-commentlinedoc=0x3f5fbf;0xffffff;true;false
-commentdockeyword=0x3f5fbf;0xffffff;true;true
-commentdockeyworderror=0x3f5fbf;0xffffff;false;false
+default=default
+comment=comment
+commentline=comment
+commentdoc=commentdoc
+commentdocnested=commentdoc
+number=number
+word=word
+word2=word2
+word3=word2
+typedef=type
+string=string
+stringeol=stringeol
+character=string
+operator=operator
+identifier=default
+commentlinedoc=commentdoc,bold
+commentdockeyword=commentdoc,bold,italic
+commentdockeyworderror=commentdoc
 
 [keywords]
 # all items must be in one line

Modified: trunk/data/filetypes.ferite
===================================================================
--- trunk/data/filetypes.ferite	2009-06-17 10:56:37 UTC (rev 3869)
+++ trunk/data/filetypes.ferite	2009-06-17 11:17:07 UTC (rev 3870)
@@ -1,26 +1,28 @@
 # For complete documentation of this file, please see Geany's main documentation
 [styling]
 # foreground;background;bold;italic
-default=0x000000;0xffffff;false;false
-comment=0xd00000;0xffffff;false;false
-commentline=0xd00000;0xffffff;false;false
-commentdoc=0x3f5fbf;0xffffff;false;false
-number=0x007f00;0xffffff;false;false
-word=0x00007f;0xffffff;true;false
-word2=0x991111;0xffffff;true;false
-string=0xff901e;0xffffff;false;false
-character=0xff901e;0xffffff;false;false
-uuid=0x404080;0xffffff;false;false
-preprocessor=0x007F7F;0xffffff;false;false
-operator=0x301010;0xffffff;false;false
-identifier=0x000000;0xffffff;false;false
-stringeol=0x000000;0xe0c0e0;false;false
-verbatim=0x101030;0xffffff;false;false
-regex=0x105090;0xffffff;false;false
-commentlinedoc=0x3f5fbf;0xffffff;true;false
-commentdockeyword=0x3f5fbf;0xffffff;true;true
-commentdockeyworderror=0x3f5fbf;0xffffff;false;false
-globalclass=0x0000d0;0xffffff;true;false
+default=default
+comment=comment
+commentline=comment
+commentdoc=commentdoc
+number=number
+word=word
+word2=word2
+string=string
+character=string
+uuid=0x404080
+preprocessor=preprocessor
+operator=operator
+identifier=default
+stringeol=stringeol
+# @"verbatim"
+verbatim=0x101030
+# (/regex/)
+regex=0x105090
+commentlinedoc=commentdoc,bold
+commentdockeyword=commentdoc,bold,italic
+commentdockeyworderror=commentdoc
+globalclass=type
 
 [keywords]
 # all items must be in one line

Modified: trunk/data/filetypes.glsl
===================================================================
--- trunk/data/filetypes.glsl	2009-06-17 10:56:37 UTC (rev 3869)
+++ trunk/data/filetypes.glsl	2009-06-17 11:17:07 UTC (rev 3870)
@@ -1,26 +1,28 @@
 # For complete documentation of this file, please see Geany's main documentation
 [styling]
 # foreground;background;bold;italic
-default=0x000000;0xffffff;false;false
-comment=0xd00000;0xffffff;false;false
-commentline=0xd00000;0xffffff;false;false
-commentdoc=0x3f5fbf;0xffffff;false;false
-number=0x007f00;0xffffff;false;false
-word=0x00007f;0xffffff;true;false
-word2=0x991111;0xffffff;true;false
-string=0xff901e;0xffffff;false;false
-character=0xff901e;0xffffff;false;false
-uuid=0x404080;0xffffff;false;false
-preprocessor=0x007F7F;0xffffff;false;false
-operator=0x301010;0xffffff;false;false
-identifier=0x000000;0xffffff;false;false
-stringeol=0x000000;0xe0c0e0;false;false
-verbatim=0x101030;0xffffff;false;false
-regex=0x105090;0xffffff;false;false
-commentlinedoc=0x3f5fbf;0xffffff;true;false
-commentdockeyword=0x3f5fbf;0xffffff;true;true
-commentdockeyworderror=0x3f5fbf;0xffffff;false;false
-globalclass=0x0000d0;0xffffff;true;false
+default=default
+comment=comment
+commentline=comment
+commentdoc=commentdoc
+number=number
+word=word
+word2=word2
+string=string
+character=string
+uuid=0x404080
+preprocessor=preprocessor
+operator=operator
+identifier=default
+stringeol=stringeol
+# @"verbatim"
+verbatim=0x101030
+# (/regex/)
+regex=0x105090
+commentlinedoc=commentdoc,bold
+commentdockeyword=commentdoc,bold,italic
+commentdockeyworderror=commentdoc
+globalclass=type
 # whether arguments of preprocessor commands should be styled (only first argument is used)
 # 1 to enable, 0 to disable
 styling_within_preprocessor=1;0;false;false

Modified: trunk/data/filetypes.haxe
===================================================================
--- trunk/data/filetypes.haxe	2009-06-17 10:56:37 UTC (rev 3869)
+++ trunk/data/filetypes.haxe	2009-06-17 11:17:07 UTC (rev 3870)
@@ -1,26 +1,28 @@
 # For complete documentation of this file, please see Geany's main documentation
 [styling]
 # foreground;background;bold;italic
-default=0x000000;0xffffff;false;false
-comment=0xd00000;0xffffff;false;false
-commentline=0xd00000;0xffffff;false;false
-commentdoc=0x3f5fbf;0xffffff;false;false
-number=0x007f00;0xffffff;false;false
-word=0x00007f;0xffffff;true;false
-word2=0x991111;0xffffff;true;false
-string=0xff901e;0xffffff;false;false
-character=0xff901e;0xffffff;false;false
-uuid=0x404080;0xffffff;false;false
-preprocessor=0x007F7F;0xffffff;false;false
-operator=0x301010;0xffffff;false;false
-identifier=0x000000;0xffffff;false;false
-stringeol=0x000000;0xe0c0e0;false;false
-verbatim=0x101030;0xffffff;false;false
-regex=0x105090;0xffffff;false;false
-commentlinedoc=0x3f5fbf;0xffffff;true;false
-commentdockeyword=0x3f5fbf;0xffffff;true;true
-commentdockeyworderror=0x3f5fbf;0xffffff;false;false
-globalclass=0x0000d0;0xffffff;true;false
+default=default
+comment=comment
+commentline=comment
+commentdoc=commentdoc
+number=number
+word=word
+word2=word2
+string=string
+character=string
+uuid=0x404080
+preprocessor=preprocessor
+operator=operator
+identifier=default
+stringeol=stringeol
+# @"verbatim"
+verbatim=0x101030
+# (/regex/)
+regex=0x105090
+commentlinedoc=commentdoc,bold
+commentdockeyword=commentdoc,bold,italic
+commentdockeyworderror=commentdoc
+globalclass=type
 
 [keywords]
 # all items must be in one line

Modified: trunk/data/filetypes.java
===================================================================
--- trunk/data/filetypes.java	2009-06-17 10:56:37 UTC (rev 3869)
+++ trunk/data/filetypes.java	2009-06-17 11:17:07 UTC (rev 3870)
@@ -1,26 +1,28 @@
 # For complete documentation of this file, please see Geany's main documentation
 [styling]
 # foreground;background;bold;italic
-default=0x000000;0xffffff;false;false
-comment=0xd00000;0xffffff;false;false
-commentline=0xd00000;0xffffff;false;false
-commentdoc=0x3f5fbf;0xffffff;false;false
-number=0x007f00;0xffffff;false;false
-word=0x00007f;0xffffff;true;false
-word2=0x991111;0xffffff;true;false
-string=0xff901e;0xffffff;false;false
-character=0xff901e;0xffffff;false;false
-uuid=0x404080;0xffffff;false;false
-preprocessor=0x007F7F;0xffffff;false;false
-operator=0x301010;0xffffff;false;false
-identifier=0x000000;0xffffff;false;false
-stringeol=0x000000;0xe0c0e0;false;false
-verbatim=0x101030;0xffffff;false;false
-regex=0x105090;0xffffff;false;false
-commentlinedoc=0x3f5fbf;0xffffff;true;false
-commentdockeyword=0x3f5fbf;0xffffff;true;true
-commentdockeyworderror=0x3f5fbf;0xffffff;false;false
-globalclass=0x0000d0;0xffffff;true;false
+default=default
+comment=comment
+commentline=comment
+commentdoc=commentdoc
+number=number
+word=word
+word2=word2
+string=string
+character=string
+uuid=0x404080
+preprocessor=preprocessor
+operator=operator
+identifier=default
+stringeol=stringeol
+# @"verbatim"
+verbatim=0x101030
+# (/regex/)
+regex=0x105090
+commentlinedoc=commentdoc,bold
+commentdockeyword=commentdoc,bold,italic
+commentdockeyworderror=commentdoc
+globalclass=type
 
 [keywords]
 primary=abstract assert break case catch class const continue default do else extends final finally for future generic goto if implements import inner instanceof interface native new outer package private protected public rest return static super switch synchronized this throw throws transient try var volatile while true false null

Modified: trunk/data/filetypes.javascript
===================================================================
--- trunk/data/filetypes.javascript	2009-06-17 10:56:37 UTC (rev 3869)
+++ trunk/data/filetypes.javascript	2009-06-17 11:17:07 UTC (rev 3870)
@@ -1,26 +1,28 @@
 # For complete documentation of this file, please see Geany's main documentation
 [styling]
 # foreground;background;bold;italic
-default=0x000000;0xffffff;false;false
-comment=0xd00000;0xffffff;false;false
-commentline=0xd00000;0xffffff;false;false
-commentdoc=0x3f5fbf;0xffffff;false;false
-number=0x007f00;0xffffff;false;false
-word=0x00007f;0xffffff;true;false
-word2=0x991111;0xffffff;true;false
-string=0xff901e;0xffffff;false;false
-character=0xff901e;0xffffff;false;false
-uuid=0x404080;0xffffff;false;false
-preprocessor=0x007F7F;0xffffff;false;false
-operator=0x301010;0xffffff;false;false
-identifier=0x000000;0xffffff;false;false
-stringeol=0x000000;0xe0c0e0;false;false
-verbatim=0x101030;0xffffff;false;false
-regex=0x105090;0xffffff;false;false
-commentlinedoc=0x3f5fbf;0xffffff;true;false
-commentdockeyword=0x3f5fbf;0xffffff;true;true
-commentdockeyworderror=0x3f5fbf;0xffffff;false;false
-globalclass=0x0000d0;0xffffff;true;false
+default=default
+comment=comment
+commentline=comment
+commentdoc=commentdoc
+number=number
+word=word
+word2=word2
+string=string
+character=string
+uuid=0x404080
+preprocessor=preprocessor
+operator=operator
+identifier=default
+stringeol=stringeol
+# @"verbatim"
+verbatim=0x101030
+# (/regex/)
+regex=0x105090
+commentlinedoc=commentdoc,bold
+commentdockeyword=commentdoc,bold,italic
+commentdockeyworderror=commentdoc
+globalclass=type
 
 [keywords]
 # all items must be in one line

Modified: trunk/data/filetypes.vala
===================================================================
--- trunk/data/filetypes.vala	2009-06-17 10:56:37 UTC (rev 3869)
+++ trunk/data/filetypes.vala	2009-06-17 11:17:07 UTC (rev 3870)
@@ -1,26 +1,28 @@
 # For complete documentation of this file, please see Geany's main documentation
 [styling]
 # foreground;background;bold;italic
-#default=0x000000;0xffffff;false;false
-#comment=0xd00000;0xffffff;false;false
-#commentline=0xd00000;0xffffff;false;false
-#commentdoc=0x3f5fbf;0xffffff;false;false
-#number=0x007f00;0xffffff;false;false
-#word=0x00007f;0xffffff;true;false
-#word2=0x991111;0xffffff;true;false
-#string=0xff901e;0xffffff;false;false
-#character=0xff901e;0xffffff;false;false
-#uuid=0x404080;0xffffff;false;false
-#preprocessor=0x007F7F;0xffffff;false;false
-#operator=0x301010;0xffffff;false;false
-#identifier=0x000000;0xffffff;false;false
-#stringeol=0x000000;0xe0c0e0;false;false
-#verbatim=0x101030;0xffffff;false;false
-#regex=0x105090;0xffffff;false;false
-#commentlinedoc=0x3f5fbf;0xffffff;true;false
-#commentdockeyword=0x3f5fbf;0xffffff;true;true
-#commentdockeyworderror=0x3f5fbf;0xffffff;false;false
-#globalclass=0x0000d0;0xffffff;true;false
+default=default
+comment=comment
+commentline=comment
+commentdoc=commentdoc
+number=number
+word=word
+word2=word2
+string=string
+character=string
+uuid=0x404080
+preprocessor=preprocessor
+operator=operator
+identifier=default
+stringeol=stringeol
+# @"verbatim"
+verbatim=0x101030
+# (/regex/)
+regex=0x105090
+commentlinedoc=commentdoc,bold
+commentdockeyword=commentdoc,bold,italic
+commentdockeyworderror=commentdoc
+globalclass=type
 
 [keywords]
 # all items must be in one line


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list