Subversion Repositories wimsdev

Rev

Rev 4870 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4870 Rev 4874
Line 7... Line 7...
7
        ,'OPERATORS' :[
7
        ,'OPERATORS' :[
8
                '@', '*', '+', '-', '/', '^', ':=', '<', '=', '>','//','$'
8
                '@', '*', '+', '-', '/', '^', ':=', '<', '=', '>','//','$'
9
        ]
9
        ]
10
        ,'DELIMITERS' :[
10
        ,'DELIMITERS' :[
11
                '(', ')', '[', ']','{','}','\(', '\)','??','??'
11
                '(', ')', '[', ']','{','}','\(', '\)','??','??'
12
        ],
12
        ]
13
        'REGEXPS' :
13
        ,'REGEXPS' :
14
        {
14
        {
15
                'wimsvariables' : { 'search': '(\\$)([a-zA-Z0-9_]*)()',
15
                'wimsvariables' : { 'search': '(\\$)([a-zA-Z0-9_]*)()',
16
                        'class' : 'wimsvariables',
16
                        'class' : 'wimsvariables',
17
                        'modifiers' : 'g', 'execute' : 'before' },
17
                        'modifiers' : 'g', 'execute' : 'before' },
18
                'record' : { 'search': '(\n)(:)()',
18
                'record' : { 'search': '(\n)(:)()',
19
                        'class' : 'record',
19
                        'class' : 'record',
20
                        'modifiers' : 'g', 'execute' : 'before' },
20
                        'modifiers' : 'g', 'execute' : 'before' },
21
                'question' : { 'search': '(\\?\\?)([^\\?]+)(\\?\\?)',
21
                'question' : { 'search': '(\\?\\?)([^\\?]+)(\\?\\?)',
22
                        'class' : 'question',
22
                        'class' : 'question',
23
                        'modifiers' : 'g', 'execute' : 'after' },
23
                        'modifiers' : 'g', 'execute' : 'after' }
24
        }
24
        }
25
        ,'STYLES' : {
25
        ,'STYLES' : {
26
                'COMMENTS': 'color: #AAAAAA;'
26
                'COMMENTS': 'color: #0000CD;'
27
                ,'QUOTESMARKS': 'color: #6381F8;'
27
                ,'QUOTESMARKS': 'color: #6381F8;'
28
                ,'KEYWORDS' : {
28
                ,'KEYWORDS' : {
29
                        'c' : 'color: #48BDDF;'
29
                        'c' : 'color: #48BDDF;'
30
                        }
30
                        }
31
                ,'OPERATORS' : 'color: #60CA00;'
31
                ,'OPERATORS' : 'color: #60CA00;'
32
                ,'DELIMITERS' : 'color: #60CA00;',
32
                ,'DELIMITERS' : 'color: #60CA00;',
33
                'REGEXPS': {
33
                'REGEXPS': {
34
                        'wimsvariables' : 'color: #FF3A6E;'
34
                        'wimsvariables' : 'color: #FF3A6E;'
35
                        ,'question' : 'color:red;'
35
                        ,'question' : 'color:#985717;'
36
                        ,'record' : 'color:blue;'
36
                        ,'record' : 'color:blue;'
37
                }
37
                }
38
        }
38
        }
39
};
39
};