~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/core/Mono.Texteditor/SyntaxModes/CSyntaxMode.xml

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
        <Property name="StringQuote">"</Property>
32
32
        <Property name="StringQuote">'</Property>
33
33
                
34
 
        <Span color = "comment" rule="Comment" tagColor="text.preprocessor">
 
34
        <Span color = "Comment(Line)" rule="Comment" tagColor="Preprocessor">
35
35
                <Begin>#if 0</Begin>
36
36
                <End>#endif|#else</End>
37
37
        </Span>
38
38
        
39
 
        <EolSpan color = "text.preprocessor" rule="text.preprocessor" continuation="\">#</EolSpan>
40
 
        <EolSpan color = "comment" rule="Comment">//</EolSpan>
 
39
        <EolSpan color = "Preprocessor" rule="text.preprocessor" continuation="\">#</EolSpan>
 
40
        <EolSpan color = "Comment(Line)" rule="Comment">//</EolSpan>
41
41
        
42
 
        <Span color = "comment" rule="Comment" tagColor="comment.tag">
 
42
        <Span color = "Comment(Line)" rule="Comment">
43
43
                <Begin>/*</Begin>
44
44
                <End>*/</End>
45
45
        </Span>
46
46
        
47
 
        <Span color = "string" rule="String" stopateol = "true" escape='\'>
 
47
        <Span color = "String" rule="String" stopateol = "true" escape='\'>
48
48
                <Begin>"</Begin>
49
49
                <End>"</End>
50
50
        </Span>
51
51
        
52
 
        <Span color = "string" rule="String" stopateol = "true" escape='\'>
 
52
        <Span color = "String" rule="String" stopateol = "true" escape='\'>
53
53
                <Begin>&apos;</Begin>
54
54
                <End>&apos;</End>
55
55
        </Span>
56
56
        
57
 
        <Match color = "string">CSharpNumber</Match>
 
57
        <Match color = "String">CSharpNumber</Match>
58
58
        
59
 
        <Keywords color = "keyword.operator">
 
59
        <Keywords color = "Keyword(Operator)">
60
60
                <Word>sizeof</Word>
61
61
        </Keywords>
62
62
        
63
 
        <Keywords color = "keyword.selection">
 
63
        <Keywords color = "Keyword(Selection)">
64
64
                <Word>else</Word>
65
65
                <Word>if</Word>
66
66
                <Word>switch</Word>
68
68
                <Word>default</Word>
69
69
        </Keywords>
70
70
        
71
 
        <Keywords color = "keyword.iteration">
 
71
        <Keywords color = "Keyword(Iteration)">
72
72
                <Word>do</Word>
73
73
                <Word>for</Word>
74
74
                <Word>while</Word>
75
75
        </Keywords>
76
76
        
77
 
        <Keywords color = "keyword.jump">
 
77
        <Keywords color = "Keyword(Jump)">
78
78
                <Word>break</Word>
79
79
                <Word>continue</Word>
80
80
                <Word>goto</Word>
81
81
                <Word>return</Word>
82
82
        </Keywords>
83
83
        
84
 
        <Keywords color = "constant.language">
85
 
                <Word>true</Word>
86
 
                <Word>false</Word>
 
84
        <Keywords color = "Keyword(Constants)">
87
85
                <Word>NULL</Word>
88
86
        </Keywords>
89
87
        
90
 
        <Keywords color = "keyword.modifier">
 
88
        <Keywords color = "Keyword(Modifiers)">
91
89
                <Word>const</Word>
92
90
                <Word>extern</Word>
93
91
                <Word>static</Word>
96
94
                <Word>register</Word>
97
95
        </Keywords>
98
96
        
99
 
        <Keywords color = "keyword.type">
100
 
                <Word>bool</Word>
 
97
        <Keywords color = "Keyword(Type)">
101
98
                <Word>char</Word>
102
99
                
103
100
                <Word>double</Word>
111
108
                <Word>unsigned</Word>
112
109
        </Keywords>
113
110
        
114
 
        <Keywords color = "constant.language.void">
 
111
        <Keywords color = "Keyword(Void)">
115
112
                <Word>void</Word>
116
113
        </Keywords>
117
114
        
118
 
        <Keywords color = "keyword.declaration">
 
115
        <Keywords color = "Keyword(Declaration)">
119
116
                <Word>enum</Word>
120
117
                <Word>struct</Word>
121
118
                <Word>union</Word>
122
119
                <Word>typedef</Word>
123
120
        </Keywords>
124
121
        
125
 
        <Keywords color = "keyword.misc">
 
122
        <Keywords color = "Keyword(Other)">
126
123
                <Word>asm</Word>
127
124
                <Word>auto</Word>
128
125
                <Word>_Bool</Word>
132
129
        </Keywords>
133
130
 
134
131
        <Rule name = "text.preprocessor">
135
 
                <Keywords color="text.preprocessor.keyword">
 
132
                <Keywords color="Preprocessor">
136
133
                        <Word>if</Word>
137
134
                        <Word>ifn</Word>
138
135
                        <Word>else</Word>
145
142
        </Rule>
146
143
        
147
144
        <Rule name = "Comment">
148
 
                <Keywords color="comment.keyword.todo" ignorecase="True">
 
145
                <Keywords color="Comment Tag" ignorecase="True">
149
146
                        <Word>TODO</Word>
150
147
                        <Word>FIXME</Word>
151
148
                        <Word>HACK</Word>