aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LocalFilesEditor/editarea/reg_syntax/brainfuck.js
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/LocalFilesEditor/editarea/reg_syntax/brainfuck.js')
-rw-r--r--plugins/LocalFilesEditor/editarea/reg_syntax/brainfuck.js45
1 files changed, 0 insertions, 45 deletions
diff --git a/plugins/LocalFilesEditor/editarea/reg_syntax/brainfuck.js b/plugins/LocalFilesEditor/editarea/reg_syntax/brainfuck.js
deleted file mode 100644
index 6f8f06345..000000000
--- a/plugins/LocalFilesEditor/editarea/reg_syntax/brainfuck.js
+++ /dev/null
@@ -1,45 +0,0 @@
-editAreaLoader.load_syntax["brainfuck"] = {
- 'DISPLAY_NAME' : 'Brainfuck'
- ,'COMMENT_SINGLE' : {}
- ,'COMMENT_MULTI' : {}
- ,'QUOTEMARKS' : {}
- ,'KEYWORD_CASE_SENSITIVE' : true
- ,'OPERATORS' :[
- '+', '-'
- ]
- ,'DELIMITERS' :[
- '[', ']'
- ]
- ,'REGEXPS' : {
- 'bfispis' : {
- 'search' : '()(\\.)()'
- ,'class' : 'bfispis'
- ,'modifiers' : 'g'
- ,'execute' : 'before'
- }
- ,'bfupis' : {
- 'search' : '()(\\,)()'
- ,'class' : 'bfupis'
- ,'modifiers' : 'g'
- ,'execute' : 'before'
- }
- ,'bfmemory' : {
- 'search' : '()([<>])()'
- ,'class' : 'bfmemory'
- ,'modifiers' : 'g'
- ,'execute' : 'before'
- }
- }
- ,'STYLES' : {
- 'COMMENTS': 'color: #AAAAAA;'
- ,'QUOTESMARKS': 'color: #6381F8;'
- ,'OPERATORS' : 'color: #88AA00;'
- ,'DELIMITERS' : 'color: #00C138;'
- ,'REGEXPS' : {
- 'bfispis' : 'color: #EE0000;'
- ,'bfupis' : 'color: #4455ee;'
- ,'bfmemory' : 'color: #DD00DD;'
- }
- }
-};
-