forked from killswitch1111/powerguivsx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClassificationType.cs
More file actions
286 lines (266 loc) · 10.9 KB
/
Copy pathClassificationType.cs
File metadata and controls
286 lines (266 loc) · 10.9 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
using System.ComponentModel.Composition;
using System.Windows.Media;
using Microsoft.VisualStudio.Text.Classification;
using Microsoft.VisualStudio.Utilities;
namespace PowerShellTools.Classification
{
public static class Classifications
{
public const string PowerShellAttribute = "PowerShellAttribute";
public const string PowerShellCommand = "PowerShellCommand";
public const string PowerShellCommandArgument = "PowerShellCommandArgument";
public const string PowerShellCommandParameter = "PowerShellCommandParameter";
public const string PowerShellComment = "PowerShellComment";
public const string PowerShellKeyword = "PowerShellKeyword";
public const string PowerShellNumber = "PowerShellNumber";
public const string PowerShellOperator = "PowerShellOperator";
public const string PowerShellString = "PowerShellString";
public const string PowerShellType = "PowerShellType";
public const string PowerShellVariable = "PowerShellVariable";
public const string PowerShellMember = "PowerShellMember";
public const string PowerShellGroupStart = "PowerShellGroupStart";
public const string PowerShellGroupEnd = "PowerShellGroupEnd";
public const string PowerShellLineContinuation = "PowerShellLineContinuation";
public const string PowerShellLoopLabel = "PowerShellLoopLabel";
public const string PowerShellNewLine = "PowerShellNewLine";
public const string PowerShellPosition = "PowerShellPosition";
public const string PowerShellStatementSeparator = "PowerShellStatementSeparator";
public const string PowerShellUnknown = "PowerShellUnknown";
}
// The foreground colors specified in this file are the defaults if not overridden.
// For Dark theme and High Contrast, see PowerShellToolsColors.pkgdef
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = Classifications.PowerShellAttribute)]
[Name("PowerShell Attribute")]
[DisplayName("PowerShell Attribute")]
[UserVisible(true)]
[Order(Before = Priority.Default)]
internal sealed class PowerShellAttributeFormat : ClassificationFormatDefinition
{
public PowerShellAttributeFormat()
{
ForegroundColor = Color.FromArgb(255, 0, 191, 255);
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = Classifications.PowerShellCommand)]
[Name("PowerShell Command")]
[DisplayName("PowerShell Command")]
[UserVisible(true)]
[Order(Before = Priority.Default)]
internal sealed class PowerShellCommandFormat : ClassificationFormatDefinition
{
public PowerShellCommandFormat()
{
ForegroundColor = Color.FromArgb(255, 0, 0, 255);
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = Classifications.PowerShellCommandArgument)]
[Name("PowerShell Command Argument")]
[DisplayName("PowerShell Command Argument")]
[UserVisible(true)]
[Order(Before = Priority.Default)]
internal sealed class PowerShellCommandArgumentFormat : ClassificationFormatDefinition
{
public PowerShellCommandArgumentFormat()
{
ForegroundColor = Color.FromArgb(255, 138, 43, 226);
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = Classifications.PowerShellCommandParameter)]
[Name("PowerShell Command Parameter")]
[DisplayName("PowerShell Command Parameter")]
[UserVisible(true)]
[Order(Before = Priority.Default)]
internal sealed class PowerShellCommandParameterFormat : ClassificationFormatDefinition
{
public PowerShellCommandParameterFormat()
{
ForegroundColor = Color.FromArgb(255, 0, 0, 128);
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = Classifications.PowerShellComment)]
[Name("PowerShell Comment")]
[DisplayName("PowerShell Comment")]
[UserVisible(true)]
[Order(Before = Priority.Default)]
internal sealed class PowerShellCommentFormat : ClassificationFormatDefinition
{
public PowerShellCommentFormat()
{
ForegroundColor = Color.FromArgb(255, 0, 100, 0);
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = Classifications.PowerShellKeyword)]
[Name("PowerShell Keyword")]
[DisplayName("PowerShell Keyword")]
[UserVisible(true)]
[Order(Before = Priority.Default)]
internal sealed class PowerShellKeywordFormat : ClassificationFormatDefinition
{
public PowerShellKeywordFormat()
{
ForegroundColor = Color.FromArgb(255, 0, 0, 139);
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = Classifications.PowerShellNumber)]
[Name("PowerShell Number")]
[DisplayName("PowerShell Number")]
[UserVisible(true)]
[Order(Before = Priority.Default)]
internal sealed class PowerShellNumberFormat : ClassificationFormatDefinition
{
public PowerShellNumberFormat()
{
ForegroundColor = Color.FromArgb(255, 128, 0, 128);
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = Classifications.PowerShellOperator)]
[Name("PowerShell Operator")]
[DisplayName("PowerShell Operator")]
[UserVisible(true)]
[Order(Before = Priority.Default)]
internal sealed class PowerShellOperatorsFormat : ClassificationFormatDefinition
{
public PowerShellOperatorsFormat()
{
ForegroundColor = Color.FromArgb(255, 169, 169, 169);
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = Classifications.PowerShellString)]
[Name("PowerShell String")]
[DisplayName("PowerShell String")]
[UserVisible(true)]
[Order(Before = Priority.Default)]
internal sealed class PowerShellStringFormat : ClassificationFormatDefinition
{
public PowerShellStringFormat()
{
ForegroundColor = Color.FromArgb(255, 139, 0, 0);
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = Classifications.PowerShellType)]
[Name("PowerShell Type")]
[DisplayName("PowerShell Types")]
[UserVisible(true)]
[Order(Before = Priority.Default)]
internal sealed class PowerShellTypeFormat : ClassificationFormatDefinition
{
public PowerShellTypeFormat()
{
ForegroundColor = Color.FromArgb(255, 0, 128, 128);
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = Classifications.PowerShellVariable)]
[Name("PowerShell Variable")]
[DisplayName("PowerShell Variable")]
[UserVisible(true)]
[Order(Before = Priority.Default)]
internal sealed class PowerShellVariablesFormat : ClassificationFormatDefinition
{
public PowerShellVariablesFormat()
{
ForegroundColor = Color.FromArgb(255, 255, 69, 0);
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = Classifications.PowerShellMember)]
[Name("PowerShell Member")]
[DisplayName("PowerShell Member")]
[UserVisible(true)]
[Order(Before = Priority.Default)]
internal sealed class PowerShellMemberFormat : ClassificationFormatDefinition
{
public PowerShellMemberFormat()
{
ForegroundColor = Color.FromArgb(255, 0, 0, 0);
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = Classifications.PowerShellGroupStart)]
[Name("PowerShell Group Start")]
[DisplayName("PowerShell Group Start")]
[UserVisible(true)]
[Order(Before = Priority.Default)]
internal sealed class PowerShellGroupStartFormat: ClassificationFormatDefinition
{
public PowerShellGroupStartFormat()
{
ForegroundColor = Color.FromArgb(255, 0, 0, 0);
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = Classifications.PowerShellGroupEnd)]
[Name("PowerShell Group End")]
[DisplayName("PowerShell Group End")]
[UserVisible(true)]
[Order(Before = Priority.Default)]
internal sealed class PowerShellGroupEndFormat : ClassificationFormatDefinition
{
public PowerShellGroupEndFormat()
{
ForegroundColor = Color.FromArgb(255, 0, 0, 0);
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = Classifications.PowerShellLineContinuation)]
[Name("PowerShell Line Continuation")]
[DisplayName("PowerShell Line Continuation (Backtick)")]
[UserVisible(true)]
[Order(Before = Priority.Default)]
internal sealed class PowerShellLineContinuationFormat : ClassificationFormatDefinition
{
public PowerShellLineContinuationFormat()
{
ForegroundColor = Color.FromArgb(255, 0, 0, 0);
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = Classifications.PowerShellLoopLabel)]
[Name("PowerShell Loop Label")]
[DisplayName("PowerShell Loop Label")]
[UserVisible(true)]
[Order(Before = Priority.Default)]
internal sealed class PowerShellLoopLabelFormat : ClassificationFormatDefinition
{
public PowerShellLoopLabelFormat()
{
ForegroundColor = Color.FromArgb(255, 0, 0, 139);
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = Classifications.PowerShellStatementSeparator)]
[Name("PowerShell Statement Separator")]
[DisplayName("PowerShell Statement Separator (Semicolon)")]
[UserVisible(true)]
[Order(Before = Priority.Default)]
internal sealed class PowerShellStatementSeparatorFormat : ClassificationFormatDefinition
{
public PowerShellStatementSeparatorFormat()
{
ForegroundColor = Color.FromArgb(255, 0, 0, 0);
}
}
[Export(typeof(EditorFormatDefinition))]
[ClassificationType(ClassificationTypeNames = Classifications.PowerShellUnknown)]
[Name("PowerShell Unknown")]
[DisplayName("PowerShell Unknown")]
[UserVisible(true)]
[Order(Before = Priority.Default)]
internal sealed class PowerShellUnknownFormat : ClassificationFormatDefinition
{
public PowerShellUnknownFormat()
{
ForegroundColor = Color.FromArgb(255, 0, 0, 0);
}
}
}