source: trunk/plugins/LocalFilesEditor/editarea/reg_syntax/brainfuck.js @ 5160

Last change on this file since 5160 was 5160, checked in by patdenice, 14 years ago

Editor
Update editarea to 0.8.2.
Remove CSS tab.
Fix jQuery path.

File size: 939 bytes
Line 
1editAreaLoader.load_syntax["brainfuck"] = {
2        'DISPLAY_NAME' : 'Brainfuck'
3        ,'COMMENT_SINGLE' : {}
4        ,'COMMENT_MULTI' : {}
5        ,'QUOTEMARKS' : {}
6        ,'KEYWORD_CASE_SENSITIVE' : true
7        ,'OPERATORS' :[
8                '+', '-'
9        ]
10        ,'DELIMITERS' :[
11                '[', ']'
12        ]
13        ,'REGEXPS' : {
14                'bfispis' : {
15                        'search' : '()(\\.)()'
16                        ,'class' : 'bfispis'
17                        ,'modifiers' : 'g'
18                        ,'execute' : 'before'
19                }
20                ,'bfupis' : {
21                        'search' : '()(\\,)()'
22                        ,'class' : 'bfupis'
23                        ,'modifiers' : 'g'
24                        ,'execute' : 'before'
25                }
26                ,'bfmemory' : {
27                        'search' : '()([<>])()'
28                        ,'class' : 'bfmemory'
29                        ,'modifiers' : 'g'
30                        ,'execute' : 'before'
31                }
32        }
33        ,'STYLES' : {
34                'COMMENTS': 'color: #AAAAAA;'
35                ,'QUOTESMARKS': 'color: #6381F8;'
36                ,'OPERATORS' : 'color: #88AA00;'
37                ,'DELIMITERS' : 'color: #00C138;'
38                ,'REGEXPS' : {
39                        'bfispis' : 'color: #EE0000;'
40                        ,'bfupis' : 'color: #4455ee;'
41                        ,'bfmemory' : 'color: #DD00DD;'
42                }
43        }
44};
45
Note: See TracBrowser for help on using the repository browser.