aboutsummaryrefslogtreecommitdiffstats
path: root/library/Text_Highlighter/ruby.xml
blob: 599f5af178501ae97a4ae9a089da71eef3ef598b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?xml version="1.0"?>
<!-- $Id: ruby.xml,v 1.1 2007-06-03 02:35:28 ssttoo Exp $ -->

<highlight lang="ruby" case="no">

  <authors>
    <author name="Andrey Demenev" email="demenev@gmail.com"/>
  </authors>

  <comment>
FIXME:  While this construction : s.split /z/i 
is valid, regular expression is not recognized as such
(/ folowing an identifier or number is not recognized as
start of RE), making highlighting improper

%q(a (nested) string) does not get highlighted correctly
  </comment>

  <default innerClass="code" />

  <region name="data" start="/^__END__$/m" end="$" delimClass="reserved" innerClass="comment" never-conteined="yes" />
  
  <region name="strdouble" delimClass="quotes" innerClass="string" 
          start="&quot;" end="&quot;" >
  </region>

  <region name="qstrdouble" delimClass="quotes" innerClass="string" 
      start="%[Qx]([!&quot;#\$%&amp;'+\-*.\/:;=?@^`|~{&lt;\[(])" end="%b1%"  remember="yes" />
  
  <region name="strsingle" delimClass="quotes" innerClass="string" 
          start="'" end="'" />

  <region name="qstrsingle" delimClass="quotes" innerClass="string" 
      start="%[wq]([!&quot;#\$%&amp;'+\-*.\/:;=?@^`|~{&lt;\[(])" end="%b1%"  remember="yes" />

  <block name="global" match="\$(\W|\w+)" innerClass="var" />

  <block name="classvar" match="/@@?[_a-z][\d_a-z]*/i" innerClass="var" />
  
  <region name="brackets" delimClass="brackets" innerClass="code" start="\(" end="\)" >
    <contains all="yes"/>
  </region>

  <region name="sqbrackets" delimClass="brackets" innerClass="code" start="\[" end="\]" >
    <contains all="yes"/>
  </region>

  <block name="escaped" match="\\." innerClass="special" contained="yes">
    <onlyin region="qstrsingle"/>
    <onlyin region="strsingle"/>
    <onlyin region="qstrdouble"/>
    <onlyin region="strdouble"/>
    <onlyin region="regexp"/>
  </block>

  <block name="identifier" match="[a-z_]\w*" innerClass="identifier" />

  <block name="exponent" 
         match="((\d+|((\d*\.\d+)|(\d+\.\d*)))[eE][+-]?\d+)" 
         innerClass="number" />

  <block name="float" match="(\d*\.\d+)|(\d+\.\d*)" innerClass="number"/>

  <block name="hexinteger" match="0[xX][\da-f]+l?" innerClass="number" />
  
  <block name="integer" match="\d+l?|\b0l?\b" innerClass="number" />

  <block name="octinteger" match="0[0-7]+l?" innerClass="number" />


  <region name="rubydoc" start="/^=begin$/m" end="/^=end$/m" delimClass="comment" innerClass="comment">
      <contains block="cvstag" />
  </region>
  
  <block name="cvstag" match="\$\w+\s*:.+\$" innerClass="inlinedoc" contained="yes">
    <onlyin region="comment"/>
    <onlyin region="rubydoc"/>
  </block>

  <region name="comment" innerClass="comment" start="#" end="/$/m" delimClass="comment" >
      <contains block="cvstag" />
  </region>

  <region name="regexp" delimClass="quotes" innerClass="string" start="\s*\/" end="\/[iomx]*" 
   neverAfter="(?&lt;!\band|\bor|\bwhile|\buntil|\bunless|\bif|\belsif|\bwhen|[~=!|&amp;(,\[])$">
  </region>
  
  <keywords name="reserved" inherits="identifier" innerClass="reserved" case = "yes">
      <keyword match="__FILE__" />
      <keyword match="require" />
      <keyword match="and" />
      <keyword match="def" />
      <keyword match="end" />
      <keyword match="in" />
      <keyword match="or" />
      <keyword match="self" />
      <keyword match="unless" />
      <keyword match="__LINE__" />
      <keyword match="begin" />
      <keyword match="defined?" />
      <keyword match="ensure" />
      <keyword match="module" />
      <keyword match="redo" />
      <keyword match="super" />
      <keyword match="until" />
      <keyword match="BEGIN" />
      <keyword match="break" />
      <keyword match="do" />
      <keyword match="false" />
      <keyword match="next" />
      <keyword match="rescue" />
      <keyword match="then" />
      <keyword match="when" />
      <keyword match="END" />
      <keyword match="case" />
      <keyword match="else" />
      <keyword match="for" />
      <keyword match="nil" />
      <keyword match="retry" />
      <keyword match="true" />
      <keyword match="while" />
      <keyword match="alias" />
      <keyword match="module_function" />
      <keyword match="private" />
      <keyword match="public" />
      <keyword match="protected" />
      <keyword match="attr_reader" />
      <keyword match="attr_writer" />
      <keyword match="attr_accessor" />
      <keyword match="class" />
      <keyword match="elsif" />
      <keyword match="if" />
      <keyword match="not" />
      <keyword match="return" />
      <keyword match="undef" />
      <keyword match="yield" />
  </keywords>


</highlight>