-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
iTerm2.sdef
688 lines (623 loc) · 28.4 KB
/
iTerm2.sdef
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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE dictionary SYSTEM "file://localhost/System/Library/DTDs/sdef.dtd">
<dictionary title="iTerm2 Terminology">
<suite name="Standard Suite" code="????" description="Common classes and commands for all applications.">
<enumeration name="save options" code="savo">
<enumerator name="yes" code="yes " description="Save the file."/>
<enumerator name="no" code="no " description="Do not save the file."/>
<enumerator name="ask" code="ask "
description="Ask the user whether or not to save the file."/>
</enumeration>
<command name="count" code="corecnte"
description="Return the number of elements of a particular class within an object.">
<cocoa class="NSCountCommand"/>
<direct-parameter type="specifier"
description="the object whose elements are to be counted"/>
<parameter name="each" code="kocl" type="type" optional="yes"
description="The class of objects to be counted.">
<cocoa key="ObjectClass"/>
</parameter>
<result type="integer" description="the number of elements"/>
</command>
<command name="delete" code="coredelo" description="Delete an object.">
<cocoa class="NSDeleteCommand"/>
<direct-parameter type="specifier" description="the object to delete"/>
</command>
<command name="duplicate" code="coreclon"
description="Copy object(s) and put the copies at a new location.">
<cocoa class="NSCloneCommand"/>
<direct-parameter type="specifier"
description="the object(s) to duplicate"/>
<parameter name="to" code="insh" type="location specifier"
description="The location for the new object(s).">
<cocoa key="ToLocation"/>
</parameter>
<parameter name="with properties" code="prdt" type="record" optional="yes"
description="Properties to be set in the new duplicated object(s).">
<cocoa key="WithProperties"/>
</parameter>
</command>
<command name="exists" code="coredoex" description="Verify if an object exists.">
<cocoa class="NSExistsCommand"/>
<direct-parameter type="specifier" description="the object in question"/>
<result type="boolean" description="true if it exists, false if not"/>
</command>
<command name="make" code="corecrel" description="Make a new object.">
<cocoa class="NSCreateCommand"/>
<parameter name="new" code="kocl" type="type"
description="The class of the new object.">
<cocoa key="ObjectClass"/>
</parameter>
<parameter name="at" code="insh" type="location specifier" optional="yes"
description="The location at which to insert the object.">
<cocoa key="Location"/>
</parameter>
<parameter name="with data" code="data" type="any" optional="yes"
description="The initial contents of the object.">
<cocoa key="ObjectData"/>
</parameter>
<parameter name="with properties" code="prdt" type="record" optional="yes"
description="The initial values for properties of the object.">
<cocoa key="KeyDictionary"/>
</parameter>
<result type="specifier" description="to the new object"/>
</command>
<command name="move" code="coremove"
description="Move object(s) to a new location.">
<cocoa class="NSMoveCommand"/>
<direct-parameter type="specifier" description="the object(s) to move"/>
<parameter name="to" code="insh" type="location specifier"
description="The new location for the object(s).">
<cocoa key="ToLocation"/>
</parameter>
</command>
<class name="application" code="capp"
description="The application's top-level scripting object.">
<cocoa class="iTermApplication"/>
<property name="current window" code="Crwn" type="window"
description="The frontmost window">
<cocoa key="currentScriptingWindow" />
</property>
<property name="name" code="pnam" type="text" access="r"
description="The name of the application."/>
<property name="frontmost" code="pisf" type="boolean" access="r"
description="Is this the frontmost (active) application?">
<cocoa key="isActive"/>
</property>
<property name="version" code="vers" type="text" access="r"
description="The version of the application."/>
<element type="window" access="r">
<cocoa key="orderedScriptingWindows"/>
</element>
</class>
<class name="window" code="cwin" description="A window.">
<cocoa class="iTermScriptingWindow"/>
<!-- Prior to 3.0.4, id was a string with code "ID " that had a value like "window-1" which
coincides with the unique identifier used in a window's object specifier. Issue 4825 points
out this is problematic because integral window IDs are useful as arguments to
screencapture -l. So the old id is now available as "alternate identifier" and id is now the
standard integer value. -->
<property name="id" code="ID " description="The unique identifier of the session." type="integer" access="r">
<cocoa key="uniqueID"/>
</property>
<property name="alternate identifier" code="Twid" description="The alternate unique identifier of the session." type="text" access="r">
<cocoa key="windowIdentifier"/>
</property>
<property name="name" code="pnam" type="text" access="r"
description="The full title of the window.">
<cocoa key="title"/>
</property>
<property name="index" code="pidx" type="integer"
description="The index of the window, ordered front to back.">
<cocoa key="orderedIndex"/>
</property>
<property name="bounds" code="pbnd" type="rectangle"
description="The bounding rectangle of the window.">
<cocoa key="boundsAsQDRect"/>
</property>
<property name="closeable" code="hclb" type="boolean" access="r"
description="Whether the window has a close box.">
<cocoa key="hasCloseBox"/>
</property>
<property name="miniaturizable" code="ismn" type="boolean" access="r"
description="Whether the window can be minimized.">
<cocoa key="isMiniaturizable"/>
</property>
<property name="miniaturized" code="pmnd" type="boolean"
description="Whether the window is currently minimized.">
<cocoa key="isMiniaturized"/>
</property>
<property name="resizable" code="prsz" type="boolean" access="r"
description="Whether the window can be resized.">
<cocoa key="isResizable"/>
</property>
<property name="visible" code="pvis" type="boolean"
description="Whether the window is currently visible.">
<cocoa key="isVisible"/>
</property>
<property name="zoomable" code="iszm" type="boolean" access="r"
description="Whether the window can be zoomed.">
<cocoa key="isZoomable"/>
</property>
<property name="zoomed" code="pzum" type="boolean"
description="Whether the window is currently zoomed.">
<cocoa key="isZoomed"/>
</property>
<property name="frontmost" description="Whether the window is currently the frontmost window." code="pisf" type="boolean">
<cocoa key="scriptFrontmost"/>
</property>
<responds-to command="close">
<cocoa method="handleCloseScriptCommand:"/>
</responds-to>
<!-- iTerm2 -->
<responds-to command="select">
<cocoa method="handleSelectCommand:"/>
</responds-to>
<responds-to command="create tab with default profile">
<cocoa method="handleCreateTabWithDefaultProfileCommand:" />
</responds-to>
<responds-to command="create tab">
<cocoa method="handleCreateTabCommand:" />
</responds-to>
<element type="tab" access="r">
<cocoa key="tabs" />
</element>
<property name="current tab" code="Crtb" type="tab"
description="The currently selected tab">
<cocoa key="currentTab" />
</property>
<property name="current session" code="Wcsn" type="session"
description="The current session in a window">
<cocoa key="currentSession" />
</property>
<property name="is hotkey window" code="ihkw" type="boolean"
description="Whether the window is a hotkey window.">
<cocoa key="isHotkeyWindow"/>
</property>
<property name="hotkey window profile" code="hkwp" type="text"
description="If the window is a hotkey window, this gives the name of the profile that created the window. ">
<cocoa key="hotkeyWindowProfile"/>
</property>
<responds-to command="reveal hotkey window">
<cocoa method="handleRevealHotkeyWindowCommand:"/>
</responds-to>
<responds-to command="hide hotkey window">
<cocoa method="handleHideHotkeyWindowCommand:"/>
</responds-to>
<responds-to command="toggle hotkey window">
<cocoa method="handleToggleHotkeyWindowCommand:"/>
</responds-to>
<!-- compatibility -->
<property name="position" description="The position of the window, relative to the upper left corner of the screen." code="ppos" type="point">
<cocoa key="scriptPosition" />
<documentation>
<html>
<![CDATA[
<i>Deprecated; use bounds instead.</i>
]]>
</html>
</documentation>
</property>
<property name="origin" description="The position of the window, relative to the lower left corner of the screen." code="pori" type="point">
<cocoa key="scriptOrigin" />
<documentation>
<html>
<![CDATA[
<i>Deprecated; use bounds instead.</i>
]]>
</html>
</documentation>
</property>
<property name="size" description="The width and height of the window" code="psiz" type="point">
<cocoa key="scriptSize" />
<documentation>
<html>
<![CDATA[
<i>Deprecated; use bounds instead.</i>
]]>
</html>
</documentation>
</property>
<property name="frame" description="The bounding rectangle, relative to the lower left corner of the screen." code="pfra" type="rectangle">
<cocoa key="scriptFrame" />
<documentation>
<html>
<![CDATA[
<i>Deprecated; use bounds instead.</i>
]]>
</html>
</documentation>
</property>
</class>
</suite>
<suite name="iTerm2 Suite" code="Itrm" description="Classes just for the iTerm2 application.">
<command name="close" code="coreclos" description="Close a document.">
<cocoa class="NSCloseCommand"/>
<direct-parameter type="specifier"
description="the session, tab, or window to close."/>
</command>
<command name="request cookie" code="Itrmrqck" description="Request a Python API cookie">
<cocoa class="iTermRequestCookieCommand" />
<parameter name="and key for app named" code="Rcsn" type="text" optional="yes"
description="Name of script using the cookie. This is shown in the console.">
<cocoa key="appName"/>
</parameter>
<result type="text"
description="A cookie that can be used to connect to the Python API endpoint" />
</command>
<command name="create tab" code="Itrmntwp"
description="Create a new tab">
<direct-parameter type="specifier"
description="the session, tab, or window to close."/>
<parameter name="with profile" code="Ntwp" type="text"
description="The profile name">
<cocoa key="profile" />
</parameter>
<parameter name="command" code="Nwcm" type="text" optional="yes"
description="Shell command to run">
<cocoa key="command"/>
</parameter>
<result type="tab" description="The tab that was created" />
</command>
<command name="create tab with default profile" code="Itrmntwn"
description="Create a new tab with the default profile">
<direct-parameter type="specifier"
description="The window in which to create a new tab"/>
<parameter name="command" code="Nwcm" type="text" optional="yes"
description="Shell command to run">
<cocoa key="command"/>
</parameter>
<result type="tab" description="The tab that was created" />
</command>
<command name="create window with profile" code="Itrmnwwp"
description="Create a new window">
<cocoa class="iTermNewWindowCommand" />
<direct-parameter description="The profile name">
<type type="text"/>
</direct-parameter>
<parameter name="command" code="Nwcm" type="text" optional="yes"
description="Shell command to run">
<cocoa key="command"/>
</parameter>
<result type="window" description="The window that was created"/>
</command>
<command name="create hotkey window with profile" code="Itrmnhwp"
description="Create a hotkey window">
<cocoa class="iTermNewHotkeyWindowCommand" />
<direct-parameter description="The profile name">
<type type="text"/>
</direct-parameter>
<result type="window" description="The window that was created"/>
</command>
<command name="launch API script named" code="Itrmlasn"
description="Launch API script by name">
<cocoa class="iTermLaunchAPIScriptCommand" />
<direct-parameter description="The script’s name">
<type type="text"/>
</direct-parameter>
<parameter name="arguments" code="Asar" optional="yes"
description="Arguments to pass to script">
<cocoa key="arguments"/>
<type type="text" list="yes"/>
</parameter>
</command>
<command name="invoke API expression" code="Itrmiaex"
description="Invokes an expression, such as a registered function.">
<cocoa class="iTermInvokeAPIExpressionCommand" />
<direct-parameter description="The expression to invoke, such as a function call.">
<type type="text"/>
</direct-parameter>
<result type="text" description="String representation of the result, if available. Function calls’ return values are not available." />
</command>
<command name="create window with default profile" code="Itrmnwwn"
description="Create a new window with the default profile">
<cocoa class="iTermNewWindowCommand" />
<parameter name="command" code="Nwcm" type="text" optional="yes"
description="Shell command to run">
<cocoa key="command"/>
</parameter>
<result type="window" description="The window that was created"/>
</command>
<command name="write" code="Itrmsntx"
description="Send text as though it was typed.">
<direct-parameter type="specifier" description="The session to send to"/>
<parameter name="contents of file" code="Cofl" type="file"
description="Filename to send the contents of" optional="yes">
<cocoa key="contentsOfFile"/>
</parameter>
<parameter name="text" code="Text" type="text"
description="Text to send" optional="yes">
<cocoa key="text"/>
</parameter>
<parameter name="newline" code="Wtnl" type="boolean"
description="If newline should be added to end of text (default: yes)" optional="yes">
<cocoa key="newline"/>
</parameter>
</command>
<command name="select" code="Itrmslct"
description="Make receiver visible and selected.">
<direct-parameter type="specifier" description="The object to send to"/>
</command>
<command name="split vertically" code="Itrmsplv"
description="Split a session vertically.">
<direct-parameter type="specifier" description="The object to send to"/>
<parameter name="with profile" code="Prfl" type="text"
description="Name of profile for new session.">
<cocoa key="profile" />
</parameter>
<parameter name="command" code="Nwcm" type="text" optional="yes"
description="Shell command to run">
<cocoa key="command"/>
</parameter>
<result type="session" description="The session that was created"/>
</command>
<command name="split vertically with default profile" code="Itrmsvdp"
description="Split a session vertically, using the default profile for the new session">
<direct-parameter type="specifier" description="The object to send to"/>
<parameter name="command" code="Nwcm" type="text" optional="yes"
description="Shell command to run">
<cocoa key="command"/>
</parameter>
<result type="session" description="The session that was created"/>
</command>
<command name="split vertically with same profile" code="Itrmsvsp"
description="Split a session vertically, using the original session's profile for the new session">
<direct-parameter type="specifier" description="The object to send to"/>
<parameter name="command" code="Nwcm" type="text" optional="yes"
description="Shell command to run">
<cocoa key="command"/>
</parameter>
<result type="session" description="The session that was created"/>
</command>
<command name="split horizontally" code="Itrmsplh"
description="Split a session horizontally.">
<direct-parameter type="specifier" description="The object to send to"/>
<parameter name="with profile" code="Prfl" type="text"
description="Name of profile for new session.">
<cocoa key="profile" />
</parameter>
<parameter name="command" code="Nwcm" type="text" optional="yes"
description="Shell command to run">
<cocoa key="command"/>
</parameter>
<result type="session" description="The session that was created"/>
</command>
<command name="split horizontally with default profile" code="Itrmshdp"
description="Split a session horizontally, using the default profile for the new session">
<direct-parameter type="specifier" description="The object to send to"/>
<parameter name="command" code="Nwcm" type="text" optional="yes"
description="Shell command to run">
<cocoa key="command"/>
</parameter>
<result type="session" description="The session that was created"/>
</command>
<command name="split horizontally with same profile" code="Itrmshsp"
description="Split a session horizontally, using the original session's profile for the new session">
<direct-parameter type="specifier" description="The object to send to"/>
<parameter name="command" code="Nwcm" type="text" optional="yes"
description="Shell command to run">
<cocoa key="command"/>
</parameter>
<result type="session" description="The session that was created"/>
</command>
<command name="variable" code="Itrmvarb"
description="Returns the value of a session variable with the given name">
<direct-parameter type="specifier" description="The object to send to"/>
<parameter name="named" code="Namd" type="text" optional="no"
description="Name of variable">
<cocoa key="name"/>
</parameter>
<result type="text" description="The variable's value"/>
</command>
<command name="set variable" code="Itrmsvar"
description="Sets the value of a session variable">
<direct-parameter type="specifier" description="The object to send to"/>
<parameter name="named" code="Namd" type="text" optional="no"
description="Name of variable">
<cocoa key="name"/>
</parameter>
<parameter name="to" code="Tovl" type="text" optional="no"
description="New value">
<cocoa key="value"/>
</parameter>
<result type="text" description="The variable's value"/>
</command>
<command name="reveal hotkey window" code="Itrmrhkw"
description="Reveals a hotkey window. Only to be called on windows that are hotkey windows.">
<direct-parameter type="specifier"
description="The window in which to create a new tab"/>
</command>
<command name="hide hotkey window" code="Itrmhhkw"
description="Hides a hotkey window. Only to be called on windows that are hotkey windows.">
<direct-parameter type="specifier"
description="The window in which to create a new tab"/>
</command>
<command name="toggle hotkey window" code="Itrmthkw"
description="Toggles the visibility of a hotkey window. Only to be called on windows that are hotkey windows.">
<direct-parameter type="specifier"
description="The window in which to create a new tab"/>
</command>
<value-type name="RGB color" code="cRGB">
<cocoa class="NSColor"/>
</value-type>
<class name="tab" code="Trmt" description="A terminal tab">
<cocoa class="PTYTab"/>
<element type="session" access="r">
<cocoa key="sessions"/>
</element>
<responds-to command="close">
<cocoa method="handleCloseCommand:"/>
</responds-to>
<responds-to command="select">
<cocoa method="handleSelectCommand:"/>
</responds-to>
<property name="current session" code="Wcsn" type="session"
description="The current session in a tab">
<cocoa key="currentSession" />
</property>
<property name="index" code="Indx" type="integer"
description="Index of tab in parent tab view control">
<cocoa key="indexOfTab" />
</property>
</class>
<class name="session" code="Trms" description="A terminal session">
<cocoa class="PTYSession"/>
<responds-to command="close">
<cocoa method="handleCloseCommand:"/>
</responds-to>
<responds-to command="write">
<cocoa method="handleWriteScriptCommand:"/>
</responds-to>
<responds-to command="select">
<cocoa method="handleSelectCommand:"/>
</responds-to>
<responds-to command="split vertically">
<cocoa method="handleSplitVertically:" />
</responds-to>
<responds-to command="split vertically with default profile">
<cocoa method="handleSplitVerticallyWithDefaultProfile:" />
</responds-to>
<responds-to command="split vertically with same profile">
<cocoa method="handleSplitVerticallyWithSameProfile:" />
</responds-to>
<responds-to command="split horizontally">
<cocoa method="handleSplitHorizontally:" />
</responds-to>
<responds-to command="split horizontally with default profile">
<cocoa method="handleSplitHorizontallyWithDefaultProfile:" />
</responds-to>
<responds-to command="split horizontally with same profile">
<cocoa method="handleSplitHorizontallyWithSameProfile:" />
</responds-to>
<property name="id" code="ID " description="The unique identifier of the session." type="text" access="r">
<cocoa key="guid"/>
</property>
<property name="is processing" code="Prcs" type="boolean"
description="The session has received output recently.">
<cocoa key="isProcessing" />
</property>
<property name="is at shell prompt" code="Iaps" type="boolean"
description="The terminal is at the shell prompt. Requires shell integration.">
<cocoa key="isAtShellPrompt" />
</property>
<property name="columns" code="Cols" type="integer">
<cocoa key="columns" />
</property>
<property name="rows" code="Rows" type="integer">
<cocoa key="rows" />
</property>
<property name="tty" code="Stty" type="text" access="r">
<cocoa key="tty" />
</property>
<property name="contents" code="Cntt" type="text" description="The currently visible contents of the session.">
<cocoa key="text" />
</property>
<property name="text" description="The currently visible contents of the session." code="pcnt" type="text" access="r">
<cocoa key="text" />
</property>
<property name="color preset" code="Copr" type="text">
<cocoa key="colorPresetName" />
</property>
<property name="background color" code="Co00" type="RGB color">
<cocoa key="backgroundColor" />
</property>
<property name="bold color" code="Co01" type="RGB color">
<cocoa key="boldColor" />
</property>
<property name="cursor color" code="Co02" type="RGB color">
<cocoa key="cursorColor" />
</property>
<property name="cursor text color" code="Co03" type="RGB color">
<cocoa key="cursorTextColor" />
</property>
<property name="foreground color" code="Co04" type="RGB color">
<cocoa key="foregroundColor" />
</property>
<property name="selected text color" code="Co05" type="RGB color">
<cocoa key="selectedTextColor" />
</property>
<property name="selection color" code="Co06" type="RGB color">
<cocoa key="selectionColor" />
</property>
<property name="ANSI black color" code="Co07" type="RGB color">
<cocoa key="ansiBlackColor" />
</property>
<property name="ANSI red color" code="Co08" type="RGB color">
<cocoa key="ansiRedColor" />
</property>
<property name="ANSI green color" code="Co09" type="RGB color">
<cocoa key="ansiGreenColor" />
</property>
<property name="ANSI yellow color" code="Co10" type="RGB color">
<cocoa key="ansiYellowColor" />
</property>
<property name="ANSI blue color" code="Co11" type="RGB color">
<cocoa key="ansiBlueColor" />
</property>
<property name="ANSI magenta color" code="Co12" type="RGB color">
<cocoa key="ansiMagentaColor" />
</property>
<property name="ANSI cyan color" code="Co13" type="RGB color">
<cocoa key="ansiCyanColor" />
</property>
<property name="ANSI white color" code="Co14" type="RGB color">
<cocoa key="ansiWhiteColor" />
</property>
<property name="ANSI bright black color" code="Co15" type="RGB color">
<cocoa key="ansiBrightBlackColor" />
</property>
<property name="ANSI bright red color" code="Co16" type="RGB color">
<cocoa key="ansiBrightRedColor" />
</property>
<property name="ANSI bright green color" code="Co17" type="RGB color">
<cocoa key="ansiBrightGreenColor" />
</property>
<property name="ANSI bright yellow color" code="Co18" type="RGB color">
<cocoa key="ansiBrightYellowColor" />
</property>
<property name="ANSI bright blue color" code="Co19" type="RGB color">
<cocoa key="ansiBrightBlueColor" />
</property>
<property name="ANSI bright magenta color" code="Co20" type="RGB color">
<cocoa key="ansiBrightMagentaColor" />
</property>
<property name="ANSI bright cyan color" code="Co21" type="RGB color">
<cocoa key="ansiBrightCyanColor" />
</property>
<property name="ANSI bright white color" code="Co22" type="RGB color">
<cocoa key="ansiBrightWhiteColor" />
</property>
<property name="underline color" code="Co23" type="RGB color">
<cocoa key="underlineColor" />
</property>
<property name="use underline color" code="Undl" type="boolean"
description="Whether the use a dedicated color for underlining.">
<cocoa key="useUnderlineColor"/>
</property>
<property name="background image" code="Bgim" type="text">
<cocoa key="backgroundImagePath" />
</property>
<property name="name" code="pnam" type="text">
<cocoa key="name" />
</property>
<property name="transparency" code="Trns" type="real">
<cocoa key="transparency" />
</property>
<property name="unique ID" code="Uniq" type="text" access="r">
<cocoa key="guid" />
</property>
<property name="profile name" code="Pfnm" description="The session's profile name" type="text" access="r">
<cocoa key="profileNameForScripting"/>
</property>
<property name="answerback string" code="Answ" description="ENQ Answerback string" type="text">
<cocoa key="answerBackString"/>
</property>
<responds-to command="variable">
<cocoa method="handleVariableNamedCommand:"/>
</responds-to>
<responds-to command="set variable">
<cocoa method="handleSetVariableNamedCommand:"/>
</responds-to>
</class>
</suite>
</dictionary>