forked from O-n-y/SyntaxLume
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormatDefinitions.cs
More file actions
336 lines (313 loc) · 9.84 KB
/
FormatDefinitions.cs
File metadata and controls
336 lines (313 loc) · 9.84 KB
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
using Microsoft.VisualStudio.Text.Classification;
using System.ComponentModel.Composition;
using System.Windows.Media;
using Microsoft.VisualStudio.Utilities;
namespace Ony.SyntaxLume;
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "access modifier - public")]
[Name("Public Modifier Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class PublicModifierFormat : ClassificationFormatDefinition
{
public PublicModifierFormat()
{
DisplayName = "C# Access Modifier - Public";
ForegroundColor = Colors.Gray;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "access modifier - private")]
[Name("Private Modifier Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class PrivateModifierFormat : ClassificationFormatDefinition
{
public PrivateModifierFormat()
{
DisplayName = "C# Access Modifier - Private";
ForegroundColor = Colors.Gray;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "access modifier - internal")]
[Name("Internal Modifier Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class InternalModifierFormat : ClassificationFormatDefinition
{
public InternalModifierFormat()
{
DisplayName = "C# Access Modifier - Internal";
ForegroundColor = Colors.Gray;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "access modifier - protected")]
[Name("Protected Modifier Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class ProtectedModifierFormat : ClassificationFormatDefinition
{
public ProtectedModifierFormat()
{
DisplayName = "C# Access Modifier - Protected";
ForegroundColor = Colors.Gray;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "modifier - virtual")]
[Name("Virtual Modifier Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class VirtualModifierFormat : ClassificationFormatDefinition
{
public VirtualModifierFormat()
{
DisplayName = "C# Modifier - Virtual";
ForegroundColor = Colors.Gray;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "modifier - abstract")]
[Name("Abstract Modifier Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class AbstractModifierFormat : ClassificationFormatDefinition
{
public AbstractModifierFormat()
{
DisplayName = "C# Modifier - Abstract";
ForegroundColor = Colors.Gray;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "modifier - sealed")]
[Name("Sealed Modifier Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class SealedModifierFormat : ClassificationFormatDefinition
{
public SealedModifierFormat()
{
DisplayName = "C# Modifier - Sealed";
ForegroundColor = Colors.DarkGray;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "modifier - override")]
[Name("Override Modifier Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class OverrideModifierFormat : ClassificationFormatDefinition
{
public OverrideModifierFormat()
{
DisplayName = "C# Modifier - Override";
ForegroundColor = Colors.Gray;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "modifier - static")]
[Name("Static Modifier Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class StaticModifierFormat : ClassificationFormatDefinition
{
public StaticModifierFormat()
{
DisplayName = "C# Modifier - Static";
ForegroundColor = Colors.Gray;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "control flow - if")]
[Name("Control Flow If Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class ControlFlowIfFormat : ClassificationFormatDefinition
{
public ControlFlowIfFormat()
{
DisplayName = "C# Control Flow - if";
ForegroundColor = Colors.OrangeRed;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "control flow - else")]
[Name("Control Flow Else Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class ControlFlowElseFormat : ClassificationFormatDefinition
{
public ControlFlowElseFormat()
{
DisplayName = "C# Control Flow - else";
ForegroundColor = Colors.OrangeRed;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "control flow - while")]
[Name("Control Flow While Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class ControlFlowWhileFormat : ClassificationFormatDefinition
{
public ControlFlowWhileFormat()
{
DisplayName = "C# Control Flow - while";
ForegroundColor = Colors.OrangeRed;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "control flow - do")]
[Name("Control Flow Do Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class ControlFlowDoFormat : ClassificationFormatDefinition
{
public ControlFlowDoFormat()
{
DisplayName = "C# Control Flow - do";
ForegroundColor = Colors.OrangeRed;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "control flow - for")]
[Name("Control Flow For Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class ControlFlowForFormat : ClassificationFormatDefinition
{
public ControlFlowForFormat()
{
DisplayName = "C# Control Flow - for";
ForegroundColor = Colors.OrangeRed;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "control flow - foreach")]
[Name("Control Flow Foreach Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class ControlFlowForeachFormat : ClassificationFormatDefinition
{
public ControlFlowForeachFormat()
{
DisplayName = "C# Control Flow - foreach";
ForegroundColor = Colors.OrangeRed;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "control flow - switch")]
[Name("Control Flow Switch Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class ControlFlowSwitchFormat : ClassificationFormatDefinition
{
public ControlFlowSwitchFormat()
{
DisplayName = "C# Control Flow - switch";
ForegroundColor = Colors.OrangeRed;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "control flow - break")]
[Name("Control Flow Break Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class ControlFlowBreakFormat : ClassificationFormatDefinition
{
public ControlFlowBreakFormat()
{
DisplayName = "C# Control Flow - break";
ForegroundColor = Colors.OrangeRed;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "control flow - continue")]
[Name("Control Flow Continue Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class ControlFlowContinueFormat : ClassificationFormatDefinition
{
public ControlFlowContinueFormat()
{
DisplayName = "C# Control Flow - continue";
ForegroundColor = Colors.OrangeRed;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "control flow - return")]
[Name("Control Flow Return Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class ControlFlowReturnFormat : ClassificationFormatDefinition
{
public ControlFlowReturnFormat()
{
DisplayName = "C# Control Flow - return";
ForegroundColor = Colors.OrangeRed;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "control flow - goto")]
[Name("Control Flow Goto Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class ControlFlowGotoFormat : ClassificationFormatDefinition
{
public ControlFlowGotoFormat()
{
DisplayName = "C# Control Flow - goto";
ForegroundColor = Colors.OrangeRed;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "control flow - throw")]
[Name("Control Flow Throw Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class ControlFlowThrowFormat : ClassificationFormatDefinition
{
public ControlFlowThrowFormat()
{
DisplayName = "C# Control Flow - throw";
ForegroundColor = Colors.OrangeRed;
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = "control flow - yield")]
[Name("Control Flow Yield Format")]
[UserVisible(true)]
[Priority(9999)]
[Order(After = Priority.High)]
internal sealed class ControlFlowYieldFormat : ClassificationFormatDefinition
{
public ControlFlowYieldFormat()
{
DisplayName = "C# Control Flow - yield";
ForegroundColor = Colors.OrangeRed;
}
}