forked from gnachman/iTerm2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHighlightTrigger.m
More file actions
393 lines (332 loc) · 15.3 KB
/
HighlightTrigger.m
File metadata and controls
393 lines (332 loc) · 15.3 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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
//
// 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;
}
- (int)colorCodeForColor:(NSColor *)theColor
{
theColor = [theColor colorUsingColorSpaceName:NSCalibratedRGBColorSpace];
int r = 5 * [theColor redComponent];
int g = 5 * [theColor greenComponent];
int b = 5 * [theColor blueComponent];
return 16 + b + g*6 + r*36;
}
- (screen_char_t)prototypeChar
{
screen_char_t sct;
sct.alternateBackgroundSemantics = NO;
sct.alternateForegroundSemantics = NO;
sct.bold = NO;
sct.blink = NO;
sct.underline = NO;
switch ([self.param intValue]) {
case kYellowOnBlackHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor yellowColor]];
sct.backgroundColor = [self colorCodeForColor:[NSColor blackColor]];
break;
case kBlackOnYellowHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor blackColor]];
sct.backgroundColor = [self colorCodeForColor:[NSColor yellowColor]];
break;
case kWhiteOnRedHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor whiteColor]];
sct.backgroundColor = [self colorCodeForColor:[NSColor redColor]];
break;
case kRedOnWhiteHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor redColor]];
sct.backgroundColor = [self colorCodeForColor:[NSColor whiteColor]];
break;
case kBlackOnOrangeHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor blackColor]];
sct.backgroundColor = [self colorCodeForColor:[NSColor orangeColor]];
break;
case kOrangeOnBlackHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor orangeColor]];
sct.backgroundColor = [self colorCodeForColor:[NSColor blackColor]];
break;
case kBlackOnPurpleHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor blackColor]];
sct.backgroundColor = [self colorCodeForColor:[NSColor purpleColor]];
break;
case kPurpleOnBlackHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor purpleColor]];
sct.backgroundColor = [self colorCodeForColor:[NSColor blackColor]];
break;
case kBlackHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor blackColor]];
break;
case kDarkGrayHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor darkGrayColor]];
break;
case kLighGrayHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor lightGrayColor]];
break;
case kWhiteHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor whiteColor]];
break;
case kGrayHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor grayColor]];
break;
case kRedHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor redColor]];
break;
case kGreenHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor greenColor]];
break;
case kBlueHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor blueColor]];
break;
case kCyanHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor cyanColor]];
break;
case kYellowHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor yellowColor]];
break;
case kMagentaHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor magentaColor]];
break;
case kOrangeHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor orangeColor]];
break;
case kPurpleHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor purpleColor]];
break;
case kBrownHighlight:
sct.foregroundColor = [self colorCodeForColor:[NSColor brownColor]];
break;
// --------------
case kBlackBackgroundHighlight:
sct.backgroundColor = [self colorCodeForColor:[NSColor blackColor]];
break;
case kDarkGrayBackgroundHighlight:
sct.backgroundColor = [self colorCodeForColor:[NSColor darkGrayColor]];
break;
case kLighGrayBackgroundHighlight:
sct.backgroundColor = [self colorCodeForColor:[NSColor lightGrayColor]];
break;
case kWhiteBackgroundHighlight:
sct.backgroundColor = [self colorCodeForColor:[NSColor whiteColor]];
break;
case kGrayBackgroundHighlight:
sct.backgroundColor = [self colorCodeForColor:[NSColor grayColor]];
break;
case kRedBackgroundHighlight:
sct.backgroundColor = [self colorCodeForColor:[NSColor redColor]];
break;
case kGreenBackgroundHighlight:
sct.backgroundColor = [self colorCodeForColor:[NSColor greenColor]];
break;
case kBlueBackgroundHighlight:
sct.backgroundColor = [self colorCodeForColor:[NSColor blueColor]];
break;
case kCyanBackgroundHighlight:
sct.backgroundColor = [self colorCodeForColor:[NSColor cyanColor]];
break;
case kYellowBackgroundHighlight:
sct.backgroundColor = [self colorCodeForColor:[NSColor yellowColor]];
break;
case kMagentaBackgroundHighlight:
sct.backgroundColor = [self colorCodeForColor:[NSColor magentaColor]];
break;
case kOrangeBackgroundHighlight:
sct.backgroundColor = [self colorCodeForColor:[NSColor orangeColor]];
break;
case kPurpleBackgroundHighlight:
sct.backgroundColor = [self colorCodeForColor:[NSColor purpleColor]];
break;
case kBrownBackgroundHighlight:
sct.backgroundColor = [self colorCodeForColor:[NSColor brownColor]];
break;
}
return sct;
}
- (void)performActionWithValues:(NSArray *)values inSession:(PTYSession *)aSession
{
[[aSession SCREEN] highlightTextMatchingRegex:self.regex
prototypeChar:[self prototypeChar]];
}
@end