4 * v1.0 by Patrice De Saint Steban (2007/01/03)
\r
7 editAreaLoader.load_syntax["ruby"] = {
\r
8 'COMMENT_SINGLE' : {1 : '#'}
\r
9 ,'COMMENT_MULTI' : {}
\r
10 ,'QUOTEMARKS' : {1: "'", 2: '"'}
\r
11 ,'KEYWORD_CASE_SENSITIVE' : true
\r
14 'alias', 'and', 'BEGIN', 'begin', 'break', 'case', 'class', 'def', 'defined', 'do', 'else',
\r
15 'elsif', 'END', 'end', 'ensure', 'false', 'for', 'if',
\r
16 'in', 'module', 'next', 'not', 'or', 'redo', 'rescue', 'retry',
\r
17 'return', 'self', 'super', 'then', 'true', 'undef', 'unless', 'until', 'when', 'while', 'yield'
\r
21 '+', '-', '/', '*', '=', '<', '>', '%', '!', '&', ';', '?', '`', ':', ','
\r
24 '(', ')', '[', ']', '{', '}'
\r
28 'search' : '()([A-Z]\\w*)()'
\r
29 ,'class' : 'constants'
\r
31 ,'execute' : 'before'
\r
34 'search' : '()([\$\@\%]+\\w+)()'
\r
35 ,'class' : 'variables'
\r
37 ,'execute' : 'before'
\r
40 'search' : '()(-?[0-9]+)()'
\r
41 ,'class' : 'numbers'
\r
43 ,'execute' : 'before'
\r
46 'search' : '()(:\\w+)()'
\r
47 ,'class' : 'symbols'
\r
49 ,'execute' : 'before'
\r
53 'COMMENTS': 'color: #AAAAAA;'
\r
54 ,'QUOTESMARKS': 'color: #660066;'
\r
56 'reserved' : 'font-weight: bold; color: #0000FF;'
\r
58 ,'OPERATORS' : 'color: #993300;'
\r
59 ,'DELIMITERS' : 'color: #993300;'
\r
61 'variables' : 'color: #E0BD54;'
62 ,'numbers' : 'color: green;'
63 ,'constants' : 'color: #00AA00;'
64 ,'symbols' : 'color: #879EFA;'