forked from gnachman/iTerm2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HighlightTrigger.m
346 lines (286 loc) · 14.6 KB
/
HighlightTrigger.m
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
337
338
339
340
341
342
343
344
345
346
//
// HighlightTrigger.m
// iTerm2
//
// Created by George Nachman on 9/23/11.
//
#import "HighlightTrigger.h"
#import "PTYSession.h"
#import "PTYTab.h"
#import "PseudoTerminal.h"
#import "VT100Screen.h"
// Preserve these values - they are the tags and are saved in preferences.
enum {
kYellowOnBlackHighlight,
kBlackOnYellowHighlight,
kWhiteOnRedHighlight,
kRedOnWhiteHighlight,
kBlackOnOrangeHighlight,
kOrangeOnBlackHighlight,
kBlackOnPurpleHighlight,
kPurpleOnBlackHighlight,
kBlackHighlight = 1000,
kDarkGrayHighlight,
kLighGrayHighlight,
kWhiteHighlight,
kGrayHighlight,
kRedHighlight,
kGreenHighlight,
kBlueHighlight,
kCyanHighlight,
kYellowHighlight,
kMagentaHighlight,
kOrangeHighlight,
kPurpleHighlight,
kBrownHighlight,
kBlackBackgroundHighlight = 2000,
kDarkGrayBackgroundHighlight,
kLighGrayBackgroundHighlight,
kWhiteBackgroundHighlight,
kGrayBackgroundHighlight,
kRedBackgroundHighlight,
kGreenBackgroundHighlight,
kBlueBackgroundHighlight,
kCyanBackgroundHighlight,
kYellowBackgroundHighlight,
kMagentaBackgroundHighlight,
kOrangeBackgroundHighlight,
kPurpleBackgroundHighlight,
kBrownBackgroundHighlight,
};
@implementation HighlightTrigger
- (NSString *)title
{
return @"Highlight Text…";
}
- (NSString *)paramPlaceholder
{
return @"";
}
- (BOOL)takesParameter
{
return YES;
}
- (BOOL)paramIsPopupButton
{
return YES;
}
- (NSDictionary *)menuItemsForPoupupButton
{
return [NSDictionary dictionaryWithObjectsAndKeys:
@"Yellow on Black", [NSNumber numberWithInt:(int)kYellowOnBlackHighlight],
@"Black on Yellow", [NSNumber numberWithInt:(int)kBlackOnYellowHighlight],
@"White on Red", [NSNumber numberWithInt:(int)kWhiteOnRedHighlight],
@"Red on White", [NSNumber numberWithInt:(int)kRedOnWhiteHighlight],
@"Black on Orange", [NSNumber numberWithInt:(int)kBlackOnOrangeHighlight],
@"Orange on Black", [NSNumber numberWithInt:(int)kOrangeOnBlackHighlight],
@"Purple on Black", [NSNumber numberWithInt:(int)kPurpleOnBlackHighlight],
@"Black on Purple", [NSNumber numberWithInt:(int)kBlackOnPurpleHighlight],
@"Black Foreground", [NSNumber numberWithInt:(int)kBlackHighlight],
@"Blue Foreground", [NSNumber numberWithInt:(int)kBlueHighlight],
@"Brown Foreground", [NSNumber numberWithInt:(int)kBrownHighlight],
@"Cyan Foreground", [NSNumber numberWithInt:(int)kCyanHighlight],
@"Dark Gray Foreground", [NSNumber numberWithInt:(int)kDarkGrayHighlight],
@"Gray Foreground", [NSNumber numberWithInt:(int)kGrayHighlight],
@"Green Foreground", [NSNumber numberWithInt:(int)kGreenHighlight],
@"Light Gray Foreground", [NSNumber numberWithInt:(int)kLighGrayHighlight],
@"Magenta Foreground", [NSNumber numberWithInt:(int)kMagentaHighlight],
@"Orange Foreground", [NSNumber numberWithInt:(int)kOrangeHighlight],
@"Purple Foreground", [NSNumber numberWithInt:(int)kPurpleHighlight],
@"Red Foreground", [NSNumber numberWithInt:(int)kRedHighlight],
@"White Foreground", [NSNumber numberWithInt:(int)kWhiteHighlight],
@"Yellow Foreground", [NSNumber numberWithInt:(int)kYellowHighlight],
@"Black Background", [NSNumber numberWithInt:(int)kBlackBackgroundHighlight],
@"Blue Background", [NSNumber numberWithInt:(int)kBlueBackgroundHighlight],
@"Brown Background", [NSNumber numberWithInt:(int)kBrownBackgroundHighlight],
@"Cyan Background", [NSNumber numberWithInt:(int)kCyanBackgroundHighlight],
@"Gray Background", [NSNumber numberWithInt:(int)kDarkGrayBackgroundHighlight],
@"Gray Background", [NSNumber numberWithInt:(int)kGrayBackgroundHighlight],
@"Gren Background", [NSNumber numberWithInt:(int)kGreenBackgroundHighlight],
@"Light Gray Background", [NSNumber numberWithInt:(int)kLighGrayBackgroundHighlight],
@"Magenta Background", [NSNumber numberWithInt:(int)kMagentaBackgroundHighlight],
@"Orange Background", [NSNumber numberWithInt:(int)kOrangeBackgroundHighlight],
@"Purple Background", [NSNumber numberWithInt:(int)kPurpleBackgroundHighlight],
@"Red Background", [NSNumber numberWithInt:(int)kRedBackgroundHighlight],
@"White Background", [NSNumber numberWithInt:(int)kWhiteBackgroundHighlight],
@"Yellow Background", [NSNumber numberWithInt:(int)kYellowBackgroundHighlight],
nil];
}
- (NSArray *)groupedMenuItemsForPopupButton {
NSDictionary *fgbg = [NSDictionary dictionaryWithObjectsAndKeys:
@"Yellow on Black", [NSNumber numberWithInt:(int)kYellowOnBlackHighlight],
@"Black on Yellow", [NSNumber numberWithInt:(int)kBlackOnYellowHighlight],
@"White on Red", [NSNumber numberWithInt:(int)kWhiteOnRedHighlight],
@"Red on White", [NSNumber numberWithInt:(int)kRedOnWhiteHighlight],
@"Black on Orange", [NSNumber numberWithInt:(int)kBlackOnOrangeHighlight],
@"Orange on Black", [NSNumber numberWithInt:(int)kOrangeOnBlackHighlight],
@"Purple on Black", [NSNumber numberWithInt:(int)kPurpleOnBlackHighlight],
@"Black on Purple", [NSNumber numberWithInt:(int)kBlackOnPurpleHighlight],
nil];
NSDictionary *fg = [NSDictionary dictionaryWithObjectsAndKeys:
@"Black Foreground", [NSNumber numberWithInt:(int)kBlackHighlight],
@"Blue Foreground", [NSNumber numberWithInt:(int)kBlueHighlight],
@"Brown Foreground", [NSNumber numberWithInt:(int)kBrownHighlight],
@"Cyan Foreground", [NSNumber numberWithInt:(int)kCyanHighlight],
@"Dark Gray Foreground", [NSNumber numberWithInt:(int)kDarkGrayHighlight],
@"Gray Foreground", [NSNumber numberWithInt:(int)kGrayHighlight],
@"Green Foreground", [NSNumber numberWithInt:(int)kGreenHighlight],
@"Light Gray Foreground", [NSNumber numberWithInt:(int)kLighGrayHighlight],
@"Magenta Foreground", [NSNumber numberWithInt:(int)kMagentaHighlight],
@"Orange Foreground", [NSNumber numberWithInt:(int)kOrangeHighlight],
@"Purple Foreground", [NSNumber numberWithInt:(int)kPurpleHighlight],
@"Red Foreground", [NSNumber numberWithInt:(int)kRedHighlight],
@"White Foreground", [NSNumber numberWithInt:(int)kWhiteHighlight],
@"Yellow Foreground", [NSNumber numberWithInt:(int)kYellowHighlight],
nil];
NSDictionary *bg = [NSDictionary dictionaryWithObjectsAndKeys:
@"Black Background", [NSNumber numberWithInt:(int)kBlackBackgroundHighlight],
@"Blue Background", [NSNumber numberWithInt:(int)kBlueBackgroundHighlight],
@"Brown Background", [NSNumber numberWithInt:(int)kBrownBackgroundHighlight],
@"Cyan Background", [NSNumber numberWithInt:(int)kCyanBackgroundHighlight],
@"Gray Background", [NSNumber numberWithInt:(int)kDarkGrayBackgroundHighlight],
@"Gray Background", [NSNumber numberWithInt:(int)kGrayBackgroundHighlight],
@"Gren Background", [NSNumber numberWithInt:(int)kGreenBackgroundHighlight],
@"Light Gray Background", [NSNumber numberWithInt:(int)kLighGrayBackgroundHighlight],
@"Magenta Background", [NSNumber numberWithInt:(int)kMagentaBackgroundHighlight],
@"Orange Background", [NSNumber numberWithInt:(int)kOrangeBackgroundHighlight],
@"Purple Background", [NSNumber numberWithInt:(int)kPurpleBackgroundHighlight],
@"Red Background", [NSNumber numberWithInt:(int)kRedBackgroundHighlight],
@"White Background", [NSNumber numberWithInt:(int)kWhiteBackgroundHighlight],
@"Yellow Background", [NSNumber numberWithInt:(int)kYellowBackgroundHighlight],
nil];
return [NSArray arrayWithObjects:fgbg, fg, bg, nil];
}
- (int)indexOfTag:(int)theTag
{
int i = 0;
BOOL isFirst = YES;
for (NSDictionary *dict in [self groupedMenuItemsForPopupButton]) {
if (!isFirst) {
++i;
}
isFirst = NO;
for (NSNumber *n in [self tagsSortedByValueInDict:dict]) {
if ([n intValue] == theTag) {
return i;
}
i++;
}
}
return -1;
}
- (int)tagAtIndex:(int)theIndex
{
int i = 0;
BOOL isFirst = YES;
for (NSDictionary *dict in [self groupedMenuItemsForPopupButton]) {
if (!isFirst) {
++i;
}
isFirst = NO;
for (NSNumber *n in [self tagsSortedByValueInDict:dict]) {
if (i == theIndex) {
return [n intValue];
}
i++;
}
}
return -1;
}
- (NSDictionary *)dictionaryWithForegroundColor:(NSColor *)foreground
backgroundColor:(NSColor *)background
{
return [NSDictionary dictionaryWithObjectsAndKeys:foreground, kHighlightForegroundColor, background, kHighlightBackgroundColor, nil];
}
- (NSDictionary *)dictionaryWithForegroundColor:(NSColor *)foreground
{
return [NSDictionary dictionaryWithObjectsAndKeys:foreground, kHighlightForegroundColor, nil];
}
- (NSDictionary *)dictionaryWithBackgroundColor:(NSColor *)background
{
return [NSDictionary dictionaryWithObjectsAndKeys:background, kHighlightBackgroundColor, nil];
}
- (NSDictionary *)colors
{
switch ([self.param intValue]) {
case kYellowOnBlackHighlight:
return [self dictionaryWithForegroundColor:[NSColor yellowColor] backgroundColor:[NSColor blackColor]];
case kBlackOnYellowHighlight:
return [self dictionaryWithForegroundColor:[NSColor blackColor] backgroundColor:[NSColor yellowColor]];
case kWhiteOnRedHighlight:
return [self dictionaryWithForegroundColor:[NSColor whiteColor] backgroundColor:[NSColor redColor]];
case kRedOnWhiteHighlight:
return [self dictionaryWithForegroundColor:[NSColor redColor] backgroundColor:[NSColor whiteColor]];
case kBlackOnOrangeHighlight:
return [self dictionaryWithForegroundColor:[NSColor blackColor] backgroundColor:[NSColor orangeColor]];
case kOrangeOnBlackHighlight:
return [self dictionaryWithForegroundColor:[NSColor orangeColor] backgroundColor:[NSColor blackColor]];
case kBlackOnPurpleHighlight:
return [self dictionaryWithForegroundColor:[NSColor blackColor] backgroundColor:[NSColor purpleColor]];
case kPurpleOnBlackHighlight:
return [self dictionaryWithForegroundColor:[NSColor purpleColor] backgroundColor:[NSColor blackColor]];
case kBlackHighlight:
return [self dictionaryWithForegroundColor:[NSColor blackColor]];
case kDarkGrayHighlight:
return [self dictionaryWithForegroundColor:[NSColor darkGrayColor]];
case kLighGrayHighlight:
return [self dictionaryWithForegroundColor:[NSColor lightGrayColor]];
case kWhiteHighlight:
return [self dictionaryWithForegroundColor:[NSColor whiteColor]];
case kGrayHighlight:
return [self dictionaryWithForegroundColor:[NSColor grayColor]];
case kRedHighlight:
return [self dictionaryWithForegroundColor:[NSColor redColor]];
case kGreenHighlight:
return [self dictionaryWithForegroundColor:[NSColor greenColor]];
case kBlueHighlight:
return [self dictionaryWithForegroundColor:[NSColor blueColor]];
case kCyanHighlight:
return [self dictionaryWithForegroundColor:[NSColor cyanColor]];
case kYellowHighlight:
return [self dictionaryWithForegroundColor:[NSColor yellowColor]];
case kMagentaHighlight:
return [self dictionaryWithForegroundColor:[NSColor magentaColor]];
case kOrangeHighlight:
return [self dictionaryWithForegroundColor:[NSColor orangeColor]];
case kPurpleHighlight:
return [self dictionaryWithForegroundColor:[NSColor purpleColor]];
case kBrownHighlight:
return [self dictionaryWithForegroundColor:[NSColor brownColor]];
case kBlackBackgroundHighlight:
return [self dictionaryWithBackgroundColor:[NSColor blackColor]];
case kDarkGrayBackgroundHighlight:
return [self dictionaryWithBackgroundColor:[NSColor darkGrayColor]];
case kLighGrayBackgroundHighlight:
return [self dictionaryWithBackgroundColor:[NSColor lightGrayColor]];
case kWhiteBackgroundHighlight:
return [self dictionaryWithBackgroundColor:[NSColor whiteColor]];
case kGrayBackgroundHighlight:
return [self dictionaryWithBackgroundColor:[NSColor grayColor]];
case kRedBackgroundHighlight:
return [self dictionaryWithBackgroundColor:[NSColor redColor]];
case kGreenBackgroundHighlight:
return [self dictionaryWithBackgroundColor:[NSColor greenColor]];
case kBlueBackgroundHighlight:
return [self dictionaryWithBackgroundColor:[NSColor blueColor]];
case kCyanBackgroundHighlight:
return [self dictionaryWithBackgroundColor:[NSColor cyanColor]];
case kYellowBackgroundHighlight:
return [self dictionaryWithBackgroundColor:[NSColor yellowColor]];
case kMagentaBackgroundHighlight:
return [self dictionaryWithBackgroundColor:[NSColor magentaColor]];
case kOrangeBackgroundHighlight:
return [self dictionaryWithBackgroundColor:[NSColor orangeColor]];
case kPurpleBackgroundHighlight:
return [self dictionaryWithBackgroundColor:[NSColor purpleColor]];
case kBrownBackgroundHighlight:
return [self dictionaryWithBackgroundColor:[NSColor brownColor]];
}
return nil;
}
- (void)performActionWithValues:(NSArray *)values inSession:(PTYSession *)aSession
{
[[aSession SCREEN] highlightTextMatchingRegex:self.regex
colors:[self colors]];
}
@end