aboutsummaryrefslogtreecommitdiff
path: root/dev/termcap
blob: 385b3948d14508581a19a150dc20a41cb1215fe2 (plain) (blame)
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
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
# This is the standard termcap file, with some additions for IRAF.
# The only changes are in the section below.
#
# NOTE: Changes to this file may not take effect immediately.  The entries
# for selected devices are precompiled.  See the sources in sys$tty.
# ---------------------------------------------------------------------------
# START of site local additions.
#	(add local termcap device entries here)
# END of site local additions.
# ---------------------------------------------------------------------------

text|output device has no capabilities:co#80:li#24:
textw|wide format text device:co#132:li#60:
xirafhelp|X11 iraf help client:co#80:li#0:so=\020:se=\021:
vt640|vt100 with Retrographics:\
	:gd:cl=50^]\E^L^X:is=^]^X\E[1;24r\E[24;1H:tc=vt100:
vt35|vt100 with 35 lines (apollo DM):li#35:tc=vt100:

#imagena|i240|imagen|	:tc=simga:
imagend|i300|		:tc=simgd:
versatec|ver|vup|	:tc=sver:
apple|lw|lw1|		:tc=sapple1:
apple2|lw2|		:tc=sapple2:
apple3|lw3|		:tc=sapple3:
apple4|lw4|		:tc=sapple4:
nlw|lw5|		:tc=sapple5:
apple6|lw6|		:tc=sapple6:
apple7|lw7|tops|	:tc=sapple7:
apple8|lw8|		:tc=sapple8:
lw9|			:tc=sapple9:
lw10|			:tc=sapple10:
lw12|                   :tc=sapple12:
lw13|                   :tc=sapple13:
lw14|                   :tc=sapple14:
lw16|			:tc=sapple16:
lw18|			:tc=sapple18:
lw19|			:tc=sapple19:
lw20|			:tc=sapple20:
lw21|			:tc=sapple21:
lw23|			:tc=sapple23:
lw24|			:tc=sapple24:
lw25|			:tc=sapple25:
lw26|			:tc=sapple26:
lw27|			:tc=sapple27:
lw28|			:tc=sapple28:
lw29|                   :tc=sapple29:
lw30|                   :tc=sapple30:
lw34|                   :tc=sapple34:
lw35|                   :tc=sapple35:
lw36|                   :tc=sapple36:
lw37|                   :tc=sapple37:
lwdp|			:tc=sappledp:
lwti|ti|		:tc=slwti:
vmsprint|vmslp|		:tc=svprint:
hplj|			:tc=uhplj:
enscript|		:tc=genscript:

lpr|			:tc=g-lpr:
lp|			:tc=g-lp:
clpr|			:tc=g-lpr:
clp|			:tc=g-lp:

# AOSVS temporary entries
laserup|		:DD=solpl!laser,@laser:tc=laser:
laserdown|		:DD=cti!laser,@laser:tc=laser:
laser|			:li#63:tc=talaris:
printronix|px|		:co#132:li#63:os:DD=solpl!lpt,@lpt:
datasouth|		:co#132:li#63:os:DD=cti!lpt,@lpt:
talaris|		:co#98:li#66:os:DD=laser,@laser:
laserjet|		:co#76:li#66:os:DD=laser,@laser:
lpt|			:co#132:li#63:os:DD=lpt,@lpt:

laserup|		:HN=solpl!:tc=laser:
laserdown|		:HN=cti!:tc=laser:
laser|			:tc=talaris:
printronix|px|		:li#63:HN=solpl!:QN=lpt:tc=aptx:
datasouth|		:li#63:HN=cti!:QN=lpt:tc=adts:
talaris|		:li#63:QN=laser:tc=aqms:
laserjet|		:li#63:QN=laser:tc=ahpl:

# UNIX printers.
uimga|Imagen laser printer, print node:co#80:li#60:os:pt:ta^I:\
	:DD=lpnode!imagen,/tmp/isfXXXXXX,!{ imprint -n $F; rm $F; }:
uimgd|Imagen 300dpi laser printer on VMS node:co#80:li#64:os:pt:ta^I:\
	:DD=lpnode!imagend,/tmp/isfXXXXXX,!{ lpr -Pvmsimp $F; rm $F; }:
uver|versatec printer plotter:co#132:li#64:am:\
	:DD=lpnode!versatec,/tmp/vsfXXXXXX,!vpr -Pversatec $F:
uvup|upstairs versatec:co#132:li#64:am:\
	:DD=lpnode!vup,/tmp/vsfXXXXXX,!vpr -Pvup $F:
uvprint|standard VMS host printer from a UNIX node:co#128:li#60:\
	:DD=vmsprint,/tmp/vsfXXXXXX,!{ lpr -Pvmslp $F; rm $F; }:
uapple1|Apple laser writer on a UNIX node running Transcript Software:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=apple,/tmp/asfXXXXXX,!{ lpr -Plw1 $F; rm $F; }:
uapple2|Second Apple laser writer on a UNIX node:co#80:li#66:os:pt:ta^I:\
	:DD=apple,/tmp/asfXXXXXX,!{ imprintlw2 -n $F; rm $F; }:
uapple3|Third Apple laser writer on a UNIX node:co#80:li#66:os:pt:ta^I:\
	:DD=apple,/tmp/asfXXXXXX,!{ imprintlw3 -n $F; rm $F; }:
uapple4|Fourth Apple laser writer on a UNIX node running Transcript Software:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=apple,/tmp/asfXXXXXX,!{ lpr -Plw4 $F; rm $F; }:
uapple5|Apple laser writer NT on ORION running Transcript Software:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=apple,/tmp/asfXXXXXX,!{ lpr -Plw5 $F; rm $F; }:
uapple7|Apple laser writer in the Solar office:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=apple,/tmp/asfXXXXXX,!{ lpr -Plw7 $F; rm $F; }:
uhplj|HP LaserJet printer on default device:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=apple,/tmp/asfXXXXXX,!{ lpr -Plw $F; rm $F; }:
lw1p2|two landscape pages via enscript to lw1:co#80:li#66:os:pt:ta^I:\
        :DD=enscript,/tmp/asfXXXXXX,!{ enscript -2rlq -Plw1 $F; rm $F; }:
lw2p2|two landscape pages via enscript to lw2:co#80:li#66:os:pt:ta^I:\
        :DD=enscript,/tmp/asfXXXXXX,!{ enscript -2rlq -Plw2 $F; rm $F; }:
lw3p2|two landscape pages via enscript to lw2:co#80:li#66:os:pt:ta^I:\
        :DD=enscript,/tmp/asfXXXXXX,!{ enscript -2rlq -Plw3 $F; rm $F; }:
lw4p2|two landscape pages via enscript to lw2:co#80:li#66:os:pt:ta^I:\
        :DD=enscript,/tmp/asfXXXXXX,!{ enscript -2rlq -Plw4 $F; rm $F; }:
lw5p2|two landscape pages via enscript to lw5:co#80:li#66:os:pt:ta^I:\
        :DD=enscript,/tmp/asfXXXXXX,!{ enscript -2rlq -Plw5 $F; rm $F; }:
lw6p2|two landscape pages via enscript to lw5:co#80:li#66:os:pt:ta^I:\
        :DD=enscript,/tmp/asfXXXXXX,!{ enscript -2rlq -Plw6 $F; rm $F; }:
lw7p2|two landscape pages via enscript to lw2:co#80:li#66:os:pt:ta^I:\
        :DD=enscript,/tmp/asfXXXXXX,!{ enscript -2rlq -Plw7 $F; rm $F; }:
lw9p2|two landscape pages via enscript to lw2:co#80:li#66:os:pt:ta^I:\
        :DD=enscript,/tmp/asfXXXXXX,!{ enscript -2rlq -Plw9 $F; rm $F; }:
lw10p2|two landscape pages via enscript to lw10:co#80:li#66:os:pt:ta^I:\
        :DD=enscript,/tmp/asfXXXXXX,!{ enscript -2rlq -Plw10 $F; rm $F; }:
lw16p2|two landscape pages via enscript to lw16:co#80:li#66:os:pt:ta^I:\
        :DD=enscript,/tmp/asfXXXXXX,!{ enscript -2rlq -Plw16 $F; rm $F; }:



# The following 2 entries were submitted by Joe Harrington, MIT Planetary
# Science Group.  <jh@athena.mit.edu> 7 March 1989.  The first sends the
# output to the default unix printer, as determined by the lpr program from
# the setenv PRINTER variable.  The second sends PostScript output generated
# by the UNIX enscript program to the default printer.  

g-lpr|glpr|Generic Unix line printer, default output device (lpr): \
        :co#80:li#66:os:pt:ta^I:\
        :DD=lpr,/tmp/asfXXXXXX,!{ lpr $F; rm $F; }:
g-lp|glp|Generic Unix line printer, default output device (lp): \
        :co#80:li#66:os:pt:ta^I:\
        :DD=lpr,/tmp/asfXXXXXX,!{ lp $F; rm $F; }:

genscript|Postscript printed via enscript program to default printer:\
        :co#80:li#66:os:pt:ta^I:\
        :DD=enscript,/tmp/asfXXXXXX,!{ enscript $F; rm $F; }:

# End of Joe Harrington entries.

# SUN printers.
simga|Imagen laser printer, print node:co#80:li#60:os:pt:ta^I:\
	:DD=lpnode!imagen,/tmp/isfXXXXXX,!{ imprint -n $F; rm $F; }:
simgd|VMS/vela imagen:co#80:li#64:os:pt:ta^I:\
	:DD=lpnode!imagen,/tmp/isfXXXXXX,!{ lpr -Pvmsimp $F; rm $F; }:
sver|versatec printer plotter:co#132:li#64:am:\
	:DD=lpnode!versatec,/tmp/vsfXXXXXX,!{ lpr -Pversatec $F; rm $F; }:
svup|upstairs versatec:co#132:li#64:am:\
	:DD=lpnode!vup,/tmp/vsfXXXXXX,!{ lpr -Pvup $F; rm $F; }:
sapple1|sapple|Apple laser writer on the SUN Tucana w/ TransScript:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw1 $F; rm $F; }:
sapple2|Apple laser writer on Aquila:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ imprintlw2 -n $F; rm $F; }:
sapple3|Apple laser writer on Aquila:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ imprintlw3 -n $F; rm $F; }:
sapple4|Apple laser writer on the SUN Octans w/ TransScript:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw4 $F; rm $F; }:
sapple5|sapple|Apple laser writer NT on the SUN Orion w/ TransScript:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw5 $F; rm $F; }:
sapple6|laser writer NT on the SUN Argo w/ TransScript:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw6 $F; rm $F; }:
sapple7|Apple laser writer in the Solar office:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw7 $F; rm $F; }:
sapple8|Apple laser writer on the SUN Octans w/ TransScript:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw8 $F; rm $F; }:
sapple9|Apple laser writer on Aquila:co#80:li#66:os:pt:ta^I:\
        :DD=lpnode!apple,/tmp/asfXXXXXX,!{ imprintlw9 -n $F; rm $F; }:
sapple10|SPARCprinter on Solitaire:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw10 $F; rm $F; }:
sapple12|HP LaserJet 4mPlus in Rm 157:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw12 $F; rm $F; }:
sapple13|Apple LaserWriter 16/600 in Rm 128:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw13 $F; rm $F; }:
sapple14|Printer on Helios:\
        :co#80:li#66:os:pt:ta^I:\
        :DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw14 $F; rm $F; }:
sapple16|HP LaserJet 4M 600dpi printer:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw16 $F; rm $F; }:
sapple18|HP LaserJet 4000N in Rm 123:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw18 $F; rm $F; }:
sapple19|HP LaserJet 4M 600dpi printer:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw19 $F; rm $F; }:
sapple20|HP LaserJet 4 600dpi printer:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw20 $F; rm $F; }:
sapple21|HP LaserJet 4 600dpi printer:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw21 $F; rm $F; }:
sapple23|HP LaserJet 4 600dpi printer:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw23 $F; rm $F; }:
sapple24|HP LaserJet 4 600dpi printer:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw24 $F; rm $F; }:
sapple25|HP LaserJet 4 600dpi printer:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw25 $F; rm $F; }:
sapple26|HP LaserJet 4 600dpi printer:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw26 $F; rm $F; }:
sapple27|HP LaserJet 4 600dpi printer:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw27 $F; rm $F; }:
sapple28|HP LaserJet 4 600dpi printer:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw28 $F; rm $F; }:
sapple29|HP LaserJet 4m 600dpi printer:\
        :co#80:li#66:os:pt:ta^I:\
        :DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw29 $F; rm $F; }:
sapple30|HP LaserJet 4m 600dpi printer:\
        :co#80:li#66:os:pt:ta^I:\
        :DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw30 $F; rm $F; }:
sapple34|HP LaserJet 4m 600dpi printer:\
        :co#80:li#66:os:pt:ta^I:\
        :DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw34 $F; rm $F; }:
sapple35|HP LaserJet 4m 600dpi printer:\
        :co#80:li#66:os:pt:ta^I:\
        :DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw35 $F; rm $F; }:
sapple37|HP LaserJet 4m 600dpi printer:\
        :co#80:li#66:os:pt:ta^I:\
        :DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plw37 $F; rm $F; }:
sappledp|HP LaserJet 5M duplex printer:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apple,/tmp/asfXXXXXX,!{ lpr -Plwdp $F; rm $F; }:
slwti|TI Turbo laser printer on lepus, via SLIP:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!ps,/tmp/ptiXXXXXX,!{ lpr -Pti $F; rm $F; }:
svprint|standard VMS host printer from a UNIX node:co#128:li#60:\
	:DD=vmsprint,/tmp/vsfXXXXXX,!{ lpr -Pvmslp $F; rm $F; }:

# VMS printers.
vimga|VMS interface to imagen 240:tc=uimga:
vimgd|VMS cluster imagen:DD=imagen:tc=uimga:
vver|versatec printer plotter:co#132:li#64:am:\
	:DD=versatec:
vvup|upstairs versatec:co#132:li#64:am:\
	:DD=vup:
vapple1|Apple laser writer on the SUN (Available to VMS):\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apl,/tmp/asfXXXXXX,!{ lpr -Plw1 $F; rm $F; }:
vapple2|Apple laser writer on a UNIX node (Available to VMS):\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apl,/tmp/asfXXXXXX,!{ imprintlw2 -n $F; rm $F; }:
vapple3|Apple laser writer on a UNIX node (Available to VMS):\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apl,/tmp/asfXXXXXX,!{ imprintlw3 -n $F; rm $F; }:
vapple4|Apple laser writer on the SUN (Available to VMS):\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apl,/tmp/asfXXXXXX,!{ lpr -Plw4 $F; rm $F; }:
vapple5|Apple laser writer on the SUN (Available to VMS):\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apl,/tmp/asfXXXXXX,!{ lpr -Plw5 $F; rm $F; }:
vapple6|Apple laser writer on the SUN (Available to VMS):\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apl,/tmp/asfXXXXXX,!{ lpr -Plw6 $F; rm $F; }:
vapple7|Apple laser writer on the SUN (Available to VMS):\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apl,/tmp/asfXXXXXX,!{ lpr -Plw7 $F; rm $F; }:
vapple8|Apple laser writer on the SUN (Available to VMS):\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apl,/tmp/asfXXXXXX,!{ lpr -Plw8 $F; rm $F; }:
vapple9|Apple laser writer on the SUN (Available to VMS):\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apl,/tmp/asfXXXXXX,!{ lpr -Plw9 $F; rm $F; }:
vapple10|Apple laser writer on the SUN (Available to VMS):\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!apl,/tmp/asfXXXXXX,!{ lpr -Plw10 $F; rm $F; }:
vlwti|TI Turbo laser printer on lepus, via SLIP:\
	:co#80:li#66:os:pt:ta^I:\
	:DD=lpnode!ps,/tmp/ptiXXXXXX,!{ lpr -Pti $F; rm $F; }:

# Generic VMS printer queue.
vvprint|standard VMS host printer:co#128:li#60:\
	:DD=sys$print:

# AOSVS printers.
aptx|printronix|printronix line printer:co#132:li#66:os:tc=aosvsprint:
adts|datasouth|datasouth line printer:co#132:li#66:os:tc=aosvsprint:
aqms|talaris|talaris line printer:co#98:li#66:os:tc=aosvsprint:
ahpl|laserjet|laserjet line printer:co#76:li#66:os:tc=aosvsprint:

# Generic AOSVS printer queue.
aosvsprint|lpt|AOSVS host printer:co#132:li#66:\
	:HN=0!:QN=lpt:DD=$(HN)$(QN),@$(QN):

# Added at STSCI (just testing...more complete entries later...)
s1|printronix|printronix line printer:co#132:li#60:
s2|qms|qms lasergrafix laser printer:co#80:li#60:

sw|switch|intelligent switch:co#80:os:am:
su|dumb|un|unknown:co#80:os:am:
sp|plugboard:co#80:os:am:
se|ethernet|network:co#80:os:am:
sd|du|dialup:co#80:os:am:
sb|bussiplexer:co#80:os:am:
sa|arpanet|network:co#80:os:am:

dx|vt100x|old vt-100|pt100|pt-100|dec vt100:\
	:co#80:li#24:am:cl=50\E[;H\E[2J:bs:cm=\E[%i%2;%2H:nd=\E[C:up=\E[A:\
	:ce=3\E[K:cd=50\E[J:so=\E[7m:se=\E[m:us=\E[4m:ue=\E[m:\
	:is=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:ks=\E[?1h\E=:ke=\E[?1l\E>:\
	:if=/usr/lib/tabset/vt100:ku=\EOA:kd=\EOB:kr=\EOC:kl=\EOD:\
	:kh=\E[H:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:pt:sr=5\EM:
dp|vt100-np|vt100 with no padding (for psl games):\
	:cl=\E[H\E[2J:sr=\EM:cm=\E[%i%d;%dH:nd=\E[C:up=\E[A:\
	:ce=\E[K:cd=\E[J:so=\E[7m:se=\E[m:us=\E[4m:ue=\E[m:\
	:md=\E[1m:mr=\E[7m:mb=\E[5m:me=\E[m:tc=vt100:
d1|vt100|vt100-nam|vt100 w/no am:\
	:am@:xn@:tc=vt100-am:
d0|vt100|vt100-am|vt100|dec vt100:\
	:cr=^M:do=^J:nl=^J:bl=^G:co#80:li#24:cl=50\E[;H\E[2J:\
	:le=^H:bs:am:cm=5\E[%i%d;%dH:nd=2\E[C:up=2\E[A:\
	:ce=3\E[K:cd=50\E[J:so=2\E[7m:se=2\E[m:us=2\E[4m:ue=2\E[m:\
	:md=2\E[1m:mr=2\E[7m:mb=2\E[5m:me=2\E[m:is=\E[1;24r\E[24;1H:\
	:rs=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:\
	:if=/usr/lib/tabset/vt100:ku=\EOA:kd=\EOB:kr=\EOC:kl=\EOD:kb=^H:\
	:ho=\E[H:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:ta=^I:pt:sr=5\EM:vt#3:xn:\
	:k5=\EOp:k6=\EOx:k7=\EOr:k8=\EOm:k9=\EOl:k0=\EOq:\
	:sc=\E7:rc=\E8:cs=\E[%i%d;%dr:ks=\E[?1h\E=:ke=\E[?1l\E>:
vt240a|vt240 variation:gd:tc=vt240:
vt240b|vt240 variation:gd:tc=vt240:
dq|vt240|graphics version of vt220:gd:tc=vt220:
dr|vt220|dec vt200 series:\
 	:ae=4\E(B:am:as=2\E(<:al=\E[L:bl=^G:bs:cd=50\E[J:ce=3\E[K:\
	:cl=50\E[;H\E[2J:cm=10\E[%i%d;%dH:co#80:cr=^M:cs=\E[%i%d;%dr:dc=\E[P:\
	:dl=\E[M:do=^J:ei=\E[4l:ho=\E[H:im=\E[4h:is=\E[1;24r\E[24;1H:\
	:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:kb=^H:kd=\EOB:ke=\E[?1l\E>:\
	:kl=\EOD:kr=\EOC:ks=\E[?1h\E=:ku=\EOA:le=^H:li#24:\
	:md=2\E[1m:mr=2\E[7m:mb=2\E[5m:me=2\E[m:mi:nd=\E[C:nl=^J:pt:\
	:rc=\E8:rf=/usr/lib/tabset/vt100:rs=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:\
	:sc=\E7:se=\E[m:so=\E[7m:sr=\EM:ta=^I:ue=\E[m:up=\E[A:us=\E[4m:vt#3:xn:
hds|hds2200gx|Human Designed Systems Incorporated:\
	:gd:cl=50^]\E^L^X\E[;H\E[2J:tc=vt640:
vi603vt|vi603 in vt100 emulation:\
	:gd:tc=vt640:
vi603dg|Visual 603 in DG D211 emulation mode:\
	:li#24:cm=^P%r%.%.:\
	:tc=vi500dg:
dg4010pc|PC emulator for Data General plus 4010 graphics:\
	:gd:li#24:cl=^L:tc=vi500dg:

Xg|xgterm|XGterm graphics terminal emulator for the X window system:\
	:gd=xgterm:qs=\E[18t:wh=\E\[8;%H;%Wt:tc=xterm:
Xc|xgtermc|XGterm with color enabled:\
	:gd=xgtermc:qs=\E[18t:wh=\E\[8;%H;%Wt:tc=xterm:
xa|oldgterm|XGterm graphics terminal emulator for old versions of IRAF:\
	:gd=gterm:qs=\E[18t:wh=\E\[8;%H;%Wt:tc=xterm:
Ga|gterm24|:li#24:qs@:gd=gterm:tc=sun:
Gb|gterm34|:li#34:qs@:gd=gterm:tc=sun:
Gc|gterm40|:li#40:qs@:gd=gterm:tc=sun:
Gc|gterm54|:li#54:qs@:gd=gterm:tc=sun:
Gz|gterm|:gd=gterm:tc=sun:
Gx|gtermnqs|gterm with no autosize:qs@:gd=gterm:tc=sun:
Mu|sun|Sun Microsystems Workstation console:\
	:li#34:co#80:cl=^X^L:cm=^X\E[%i%d;%dH:nd=\E[C:up=\E[A:\
	:qs=\E[18t:wh=\E\[8;%H;%Wt:\
	:am:bs:km:mi:ms:pt:\
	:ce=\E[K:cd=\E[J:so=\E[7m:se=\E[m:\
	:kd=\E[B:kl=\E[D:ku=\E[A:kr=\E[C:kh=\E[H:\
	:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:\
	:al=\E[L:dl=\E[M:im=:ei=:ic=\E[@:dc=\E[P:\
	:rs=\E[s:
k2|hs100|ENCORE HostSystem 100:li#56:co#80:tc=vt100:
s4|PC7300|unixpc|pc7300|3b1|Safari 4:\
	:md=\E[1m:me=\E[0m:\
	:al=\E[1L:am:bs:\
	:cd=\E[0J:ce=\E[0K:cl=\E[2J\E[H:cm=\E[%i%2;%2H:co#80:\
	:dc=\E[1P:dl=\E[1M:do=\E[B:ei=:ho=\E[H:\
	:ic=\E[1@:im=:kb=\10:kd=\E[B:kl=\E[D:kr=\E[C:ku=\E[A:li#24:\
	:k1=\EOc:k2=\EOd:k3=\EOe:k4=\EOf:k5=\EOg:k6=\EOh:k7=\EOi:k8=\EOj:\
	:nd=\E[C:se=\E[m:so=\E[7m:ue=\E[m:up=\E[A:us=\E[4m:\
	:EE=\E[m:BO=\E[1m:DS=\E[2m:XS=\E[9m:CV=\E[=C:CI=\E[=1C:\
	:KM=/usr/lib/ua/kmap.s4:
k3|macivt|versaterm|Macintosh VersaTerm Tek4014:\
	:gd:al=9\E[1L:am:bl=^G:bs:cd=50\E[J:ce=3\E[K:cl=50\E2\E[;H\E[2J:\
	:cm=5\E[%i%d;%dH:co#80:cr=^M:cs=\E[%i%d;%dr:dc=7\E[1P:dl=9\E[1M:\
	:do=^J:ho=\E[H:ic=7\E[1@:is=\E[1;24r\E[24;1H:k1=\EOP:k2=\EOQ:k3=\EOR:\
	:k4=\EOS:ke=\E>\E[?1l:kb=^H:kd=\EOB:kl=\EOD:kr=\EOC:ks=\E=\E[?1h:\
	:ku=\EOA:le=^H:li#24:mb=\E[5m:md=\E[1m:me=\E[m:mr=\E[7m:nd=2\E[C:nl=^J:\
	:pt:rc=\E8:rs=\E>\E[?31\E[?41\E[?51\E[?7h\E[?8h:sc=\E7:sr=5\EM:\
	:se=\E[m:so=\E[7m:ta=^I:ue=\E[m:up=2\E[A:us=\E[4m:vt#3:xn:
k4|selanar|selanar hirez 100xl:\
	:gd:al=\E[1L:am:bl=^G:bs:cd=50\E[0J:ce=10\E[0K:cl=50\E[H\E[2J^]\E^L^X:\
	:cm=10\E[%i%d;%dH:co#80:cr=^M:cs=10\E[%i%d;%dr:dl=10\E[1M:do=\E[1B:\
	:ei=\E[4l:im=\E[4h:is=\E[1;24r\E[24;1H:kb=^H:kd=\EOB:ke=\E[?1l\E>:\
	:kl=\EOC:kr=\EOD:ks=\E[?1h\E=:ku=\EOA:le=^H:li#24:mb=2\E[5m:\
	:md=2\E[1m:me=2\E[0m:mr=2\E[7m:\
	:nd=2\E[1C:nl=2\EE:pt:rc=\E8:rs=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E?8h:\
	:sc=\E7:se=2\E[0m:sf=5\ED:so=2\E[7m:sr=5\EM:ta=^I:ue=2\E[0m:up=2\E[1A:\
	:us=2\E[4m:vt#3:xn:

# Default xterm, gd=xtermr, has status line in graphics window; see graphcap.
# Note:  users preferring the status-line-in-text window model should change
# this xtermr to an xtermjh.
xterm|:am@:tc=xtermr:

# Alternate xterm has status line in text window (see Joe Harrington entries
# in graphcap).
xtermjh|vs|vs100|Joe Harrington xterm terminal emulator, large:\
	:gd=xtermjh:am@:tc=xtermr:
xtermjhs|vs100s|Joe Harrington xterm terminal emulator, Small:\
	:gd=xtermjh:li#24:am@:tc=xtermr:

# xtermr entries submitted by Rick McGonegal, CFHT.
xtermr|:li#65:tc=xterms:
xterm34|xterm34r|:li#34:tc=xterms:
xterm40|xterm40r|:li#40:tc=xterms:
xterms|xterm24|xterm24r|Ultrix XWindows vt102-tek4010 emulator:\
  	:gd=xtermr:\
	:cr=^M:do=^J:nl=^J:bl=^G:le=^H:ho=\E[H:\
	:co#80:li#24:cl=\E[H\E[2J:bs:am:cm=\E[%i%d;%dH:nd=\E[C:up=\E[A:\
	:ce=\E[K:cd=\E[J:so=\E[7m:se=\E[m:us=\E[4m:ue=\E[m:\
	:md=\E[1m:mr=\E[7m:me=\E[m:\
	:ku=\EOA:kd=\EOB:kr=\EOC:kl=\EOD:kb=^H:\
	:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:ta=^I:pt:sf=\n:sr=\EM:\
	:al=\E[L:dl=\E[M:ic=\E[@:dc=\E[P:\
	:MT:ks=\E[?1h\E=:ke=\E[?1l\E>:\
	:is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;3;4;6l:\
	:rs=\E[r\E<\E[m\E[2J\E[H\E[?7h\E[?1;3;4;6l:xn:\
	:AL=\E[%dL:DL=\E[%dM:IC=\E[%d@:DC=\E[%dP:\
	:ti=\E7\E[?47h:te=\E[2J\E[?47l\E8:\
	:hs:ts=\E[?E\E[?%i%dT:fs=\E[?F:es:ds=\E[?E:

xterm34-old|:li#34:tc=xterm24-old:
xterm40-old|:li#40:tc=xterm24-old:
xterm24-old|Ultrix XWindows vt102-tek4010 emulator:\
  	:gd=xtermold:li#24:co#80:tc=vt100:

# Diversified Computer Systems vt220/tek4010 emulator (em4010)
em4010|em4010he|em4010ih|em4010im|em4010ieh|em4010tn|em4010ti|em4010att|:\
	:gd:li#24:co#80:cl=50\E[H\E[2J^X:is=^]^X\E[1;24r\E[24;1H:tc=vt220:

# Steward Observatory, University of Arizaona, 5/22/87 Skip Schaller
vi102|Visual 102 in ANSI emulation mode:\
	:gd:li#24:cl=^_^[^L^X\E[;H\E[2J:tc=vt100-am:
vi501|Visual 500 Plus in vt100 mode:\
	:ku=\E[A:kd=\E[B:kr=\E[C:kl=\E[D:\
	:gd:xn@:li#33:cl=^_^[^L^X\E[;H\E[2J:tc=vt100-am:

# Steward Observatory, University of Arizona, 1/20/87 Skip Schaller
V5|vi500|Visual 500:tc=vi500dg:
Vg|vi500dg|Visual 500 in DG D200 emulation mode:\
	:gd:co#80:li#33:am:bc=^Y:pt:\
	:cm=\036Y%+ %+ :\
	:ho=^H:do=^Z:up=^W:nd=^X:nl=^J:bt=\036T:\
	:cl=^_^[^L^X^L:ce=^K:cd=\036y:\
	:al=\036L:dl=\036M:im=\036i:ie=\036j:dc=\036O:\
	:so=\036D:se=\036E:ul:us=^T:ue=^U:\
	:kh=^H:kd=^Z:ku=^W:kl=^Y:kr=^X:ko=cl,ce:\
	:k0=\036q:k1=\036r:k2=\036s:k3=\036t:k4=\036u:\
	:k5=\036v:k6=\036w:k7=\036x:k8=\036y:k9=\036z:\
	:is=:

# Courtesy George Kaplan (UC Berkeley SSL):
# The cm and cd entries force the terminal into vt100 mode.  This allows V2.[23]
# IRAF graphics mode commands such as ":.help" to display text correctly, and
# to return to vt100 mode after a cursor mode exit from "=gcur" by typing 
# "clear" from the cl>.
go140|GraphOn 140 vt100 emulator:\
	:gd:al=\E[1L:am:bl=^G:bs:cd=^X\E[J:ce=\E[K:\
	:cl=^X\E[2J\E[H:cm=\E2%i\E[%d;%dH:co#80:\
	:cr=^M:cs=\E[%i%d;%dr:dl=\E[1M:ei=\E[4l:\
	:im=\E[4h:do=^J:ho=\E[H:is=\E[1;24r\E[24;1H:\
	:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:kb=^H:\
	:kd=\EOB:ke=\E[?1l\E>:kl=\EOD:kr=\EOC:ks=\E[?1h:\
	:ku=\EOA:le=^H:li#24:mb=2\E[5m:md=2\E[1m:\
	:me=2\E[m:mr=2\E[7m:nd=\E[C:nl=^J:pt:rc=\E8:\
	:rs=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:\
	:sc=\E7:se=\E[m:sf=\ED:so=\E[7m:sr=\EM:ta=^I:\
	:ue=\E[m:up=\E[A:us=\E[4m:vt#3:xn:
  
go235|GraphOn 235 vt100 emulator: (ShJ 8-87)\
	:gd:cl=^]\E^L^X\E[;H\E[2J:is=^]^X\E[1;24r\E[24;1H:tc=vt100:

# Pericom Monterey MG200 terminal;  3 graphics states.  These entries
# include the sequences to erase the graphics with a screen clear (which 
# not all users appreciate).   (Zolt Levay STScI 8-88)

pericom|peri4014|Pericom Monterey MG200 4014 or Graphics State 2:\
	:cl=50\E[H\E[2J^]\E^L^X:gd:tc=vt100:
perigs3|Pericom Monterey MG200 Graphics State 3:\
	:cl=50\E^L\E^D:gd:tc=vt100:
perigs2|peri4014|Pericom Monterey MG200 Graphics State 2:\
	:cl=50\E[H\E[2J^]\E^L^X:gd:tc=vt100:
peri4014|peri4014|Pericom Monterey MG200 4014 mode:\
	:cl=50\E[H\E[2J^]\E^L^X:gd:tc=vt100:

# Pericom Monterey MG200 terminal with DG Dasher 200 emulation for text. 
# Submitted by Skip Schaller, 4-91.
pericomdg|Pericom Monterey MG200 with DG Dasher 200 emulation for text:\
	:cl=50^L^^\072^]\E^L^X\E.:gd:tc=d200:

414a|cit414a|CIT-414a graphics terminal:\
	:gd:tc=vt100:

wyse75|wyse|wyse 75|wyse (cleveland codonics?):\
	:gd=wyse:al=\E[L:am@:dl=\E[M:dc=7\E[P:ei=\E[4l:im=\E[4h:ip=7:\
	:vb=\E[?5h\200\200\200\200\200\200\200\200\200\200\200\E[?5l:\
	:tc=vt100:
wyse75rv|wyse 75 reverse video:\
	:gd=wyse:al=\E[L:am@:dl=\E[M:dc=7\E[P:ei=\E[4l:im=\E[4h:ip=7:\
	:is=\E[?5h:\
	:vb=\E[?5l\200\200\200\200\200\200\200\200\200\200\200\E[?5h:\
	:ve=\E[?5h:\
	:tc=vt100:

#
#       Termcap entry for MS Kermit 3.0 in VT320 mode
# 02/24/90      Glen Overby <overby@plains.nodak.edu>
#               Written from scratch using MS Kermit 3.0 and termcap(5).
#
kermit|kermvga|kermvgane|kermitne|kermit320|kermit320core:\
        :co#80:li#24:cr=^M:bl=^G:\
	:le=^H:nd=\E[C:up=\E[A:do=^J:LE=\E[%dD:ND=\E[%dC:UP=\E[%dA:do=\E[%dB:\
        :sf=\ED:sr=\EM:nw=\EE:\
        :cm=\E[%i%d;%dH:ch=\E[%dG:cv=\E[%dd:ho=\E[H:\
        :ce=\E[0K:cd=\E[0J:cl=\E[H\E[0J:\
        :al=\E[L:dl=\E[M:AL=\E[%dL:DL=\E[%dL:cs=\E[%i%d;%dr:\
        :im=\E[4h:ei=\E[4l:ip#1:mi:dc=\E[P:DC=\E[%dP:\
        :so=\E[7m:se=\E[27m:\
        :us=\E[4m:ue=\E[24m:mb=\E[5m:md=\E[1m:mr=\E[7m:me=\E[0m:\
        :ms:vi=\E[25h:ve=\E[25m:ta=^I:it#8:pb#2400:sc=\E7:rc=\E8:\
        :hs:es:.ts=\E7\E[25;%dH\E[2K:.fs=\E8:\
        :ts=\E[2$~\E[1$}\E[%dG\E[1K:fs=\E[0$}:ds=\E[1$~:xo:\
        :is=Kermit 320\n\E[2;4;l\E[12h\E[?4;6;\
                7l\E[?25h\E[4i\E[?4i\E[0m\E[r\E[1$~:\
	:rs=\E[!p\E[2;4;l\E[12h\E[?3;4;5;6;7l\E[?25h\E[4i\E[?4i\E[0m\E[r\E[1$~:\
        :ps=\E[0i:pf=\E[4i:po=\E[5i:\
        :kl=\E[D:kr=\E[C:ku=\E[A:kd=\E[B:\
        :k0=\EOP:k1=\EOQ:k2=\EOR:k3=\EOS:gd:

ka|kermit320-am:\
        :am:\
        :is=Kermit 320\n\E[2;4;l\E[12h\E[?4;\
                6l\E[?7;25h\E[4i\E[?4i\E[0m\E[r\E[1$~:\
	:rs=\E[!p\E[2;4;l\E[12h\E[?3;4;5;6l\E[?7;25h\E[4i\E[?4i\E[0m\E[r\E[1$~:\
        :tc=kermit320:

#
la|adm3a|3a|lsi adm3a:\
	:am:bs:cm=\E=%+ %+ :cl=1^Z:co#80:ho=^^:li#24:ma=^K^P:nd=^L:up=^K:
h2|2621|hp2621|hp2621a|hp2621p|2621|2621a|2621p|hp 2621:\
	:is=\E&j@\r\E3\r:bt=\Ei:cm=\E&a%r%dc%dY:dc=2\EP:ip=2:\
	:kh=\Ep\r:ku=\Et\r:kl=\Eu\r:kr=\Ev\r:kd=\Ew\r:\
	:kn#8:k1=\Ep\r:k2=\Eq\r:k3=\Er\r:k4=\Es\r:k5=\Et\r:k6=\Eu\r:k7=\Ev\r:\
	:k8=\Ew\r:ks=\E&jB:ke=\E&j@:ta=2^I:tc=hp:
# ADDS Viewpoint terminal.
av|viewpoint|adds|adds viewpoint:\
	:co#80:li#24:cm=5\EY%+ %+ :bs:bc=3^U:do=3^J:nd=3^F:up=3^Z:\
	:ce=3\EK:cd=3\Ek:cl=7^L:as=3^N:ae=3^O:\
	:is=\E0P^O\E6:so=\E0P^N:se=^O:am:po=\E3:pf=\E4:
#
cr|c100rv|c100rv4p|c100 rev video:\
	:is=\EU\Ef\E7\E5\E8\El\ENH\Ek\E\200\Eo&\200\Eo\47\E:vs@:ve@:\
	:vb=\EK\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Ek:\
	:tc=c100:
co|c100|concept|c104|c1004p|concept100|concept 100:\
	:is=\EU\Ef\E7\E5\E8\El\ENH\EK\E\200\Eo&\200\Eo\47\E:\
	:ti=\EU\Ev  8p\Ep\r:te=\Ev    \200\200\200\200\200\200\Ep\r\n:\
	:al=3*\E^R:am:bs:cd=16*\E^C:ce=16\E^S:cl=2*^L:cm=\Ea%+ %+ :co#80:\
	:dc=16\E^A:dl=3*\E^B:ei=\E\200:eo:im=\E^P:in:ip=16*:li#24:mi:nd=\E=:\
	:pt:kb=^h:ta=8\t:ul:up=\E;:db:us=\EG:ue=\Eg:xn:vs=\EW:ve=\Ew:\
	:vb=\Ek\200\200\200\200\200\200\200\200\200\200\200\200\200\200\EK:\
	:us=\EG:ue=\Eg:ks=\EX:ke=\Ex:ku=\E;:kd=\E<:kl=\E>:kr=\E=:kh=\E?:\
	:k1=\E5:k2=\E6:k3=\E7:.dN#9:dC#9:
mm|mime|mime1|mime2|mimei|mimeii|microterm mime1:\
	:al=80^A:am:bs:cd=^_:ce=^^:cl=\035^C:cm=^T%+^X%> 0%+P:co#80:\
	:dl=80^W:ta=2^I:li#24:nd=^X:pt:uc=^U:up=^z:ho=\035:do=^K:is=^S\E:\
	:ma=^X ^K^J^Z^P:ku=^Z:kd=^K:kl=^H:kr=^X:sr=3^R:
h4|hp|hp2645|2645|hp 264x series:\
	:if=/usr/lib/tabset/stdcrt:\
	:al=\EL:am:bs:cd=\EJ:ce=\EK:ch=\E&a%dC:cl=\EH\EJ:cm=6\E&a%r%dc%dY:\
	:co#80:cv=\E&a%dY:da:db:dc=\EP:dl=\EM:ei=\ER:im=\EQ:\
	:kb=^H:ku=\EA:kd=\EB:kl=\ED:kr=\EC:kh=\Eh:ks=\E&s1A:ke=\E&s0A:\
	:li#24:mi:ml=\El:mu=\Em:nd=\EC:pt:se=\E&d@:so=\E&dJ:\
	:us=\E&dD:ue=\E&d@:up=\EA:xs:
h8|hp2648|hp2648a|2648a|2648|HP 2648a graphics terminal:\
	:cl=50\EH\EJ:cm=20\E&a%r%dc%dY:dc=7\EP:ip#5:is=130\Eg:tc=2645:
kb|h19|heath|h19b|heathkit|heath-19|z19|zenith|heathkit h19:\
	:al=1*\EL:am:bs:cd=\EJ:ce=\EK:cl=\EE:cm=\EY%+ %+ :co#80:dc=\EN:\
	:dl=1*\EM:do=\EB:ei=\EO:ho=\EH:im=\E@:li#24:mi:nd=\EC:as=\EF:ae=\EG:\
	:ms:pt:sr=\EI:se=\Eq:so=\Ep:up=\EA:vs=\Ex4:ve=\Ey4:\
	:kb=^h:ku=\EA:kd=\EB:kl=\ED:kr=\EC:kh=\EH:kn#8:\
	:k1=\ES:k2=\ET:k3=\EU:k4=\EV:k5=\EW:\
	:l6=blue:l7=red:l8=white:k6=\EP:k7=\EQ:k8=\ER:
l3|adm3|3|lsi adm3:\
	:am:bs:cl=^Z:li#24:ma=^K^P:co#80:
#SUN workstation
Mu|sun|Sun Microsystems Workstation console:\
	:li#34:co#80:cl=^L:cm=\E[%i%d;%dH:nd=\E[C:up=\E[A:\
	:am:bs:km:mi:ms:pt:\
	:ce=\E[K:cd=\E[J:so=\E[7m:se=\E[m:\
	:kd=\E[B:kl=\E[D:ku=\E[A:kr=\E[C:kh=\E[H:\
	:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:\
	:al=\E[L:dl=\E[M:im=:ei=:ic=\E[@:dc=\E[P:
MJ|trs100|trs-100|radio shack trs-100 -- traveller:\
	:am:bs:xt:co#40:li#8:al=\EL:dl=\EM:cd=^L:ce=\EK:cl=\EE:cm=\EY%+ %+ :\
	:nd=^\:dn=^_:up=\EA:se=\Eq:so=\Ep:kl=^]:kr=^\:ku=^^:kd=^_:
#	Termcap source file %W% %G%
#	Mark Horton, U.C. Berkeley
#
# This file describes capabilities of various terminals, as needed by
# software such as screen editors.  It does not attempt to describe
# printing terminals very well, nor graphics terminals.  Someday.
# See termcap(5) in the Unix Programmers Manual for documentation.
#
# The A manufacturer represents Diablo, DTC, Xerox, Qume, and other Daisy
# wheel terminals until such time as termcap distinguishes between them
# enough to justify separate codes.
# 1620 uses all 132 columns, 1640 sets left margin to 8 and uses snazzy
# binary tabset file.  Both should work on both terminals.
A6|1620|450|diablo 1620:\
	:if=/usr/lib/tabset/std:\
	:kb=^H:bs:co#132:ff=^L:hc:hu=\EU:hd=\ED:os:pt:up=\E\n:
A7|1640|diablo 1640:\
	:co#124:if=/usr/lib/tabset/diablo:tc=1620:
Ad|dtc300s|300|300s|gsi|dtc|dtc 300s:\
	:if=/usr/lib/tabset/std:\
	:kb=^h:bs:co#132:ff=^L:hc:hu=\EH:hd=\Eh:os:pt:up=^Z:
Ag|gsi:bs:co#132:hc:hd=\Eh:hu=\EH:os:pt:up=^Z:
Aj|aj830|aj832|aj|anderson jacobson:\
	:bs:hc:hd=\E9:hu=\E8:os:pl:up=\E7:
Aq|qume5|qume|Qume Sprint 5:\
	:if=/usr/lib/tabset/std:\
	:kb=^h:bs:co#80:ff=^L:hc:hu=\EH:hd=\Eh:os:pt:up=^Z:
Ax|x1720|x1700|1700|x1750|xerox 1720:co#132:bs:ff=^L:hc:os:pt:if=/usr/lib/tabset/xerox1720
Ca|cdc456|cdc:\
	:li#24:co#80:cl=^Y^X:nd=^L:up=^Z:bs:\
	:cm=\E1%+ %+ :ho=^Y:al=\E\114:dl=\E\112:ce=^V:cd=^X:am:
Cc|cdc456tst:\
	:li#24:co#80:cl=^y^x:bs:cm=\E1%+ %+ :am:
D0|dm1520|dm1521|1521|1520|datamedia 1520:\
	:am:bs:cd=^K:ce=^]:cl=^L:cm=^^%r%+ %.:co#80:ho=^Y:\
	:ku=^_:kd=^J:kl=^H:kr=^\:kh=^Y:\
	:li#24:nd=^\:up=^_:xn:ma=^\ ^_^P^YH:pt:
D1|dm1521|1521|datamedia 1521:\
	:am:bs:cd=^K:ce=^]:cl=^L:cm=^^%r%+ %.:co#80:ho=^Y:\
	:ku=^_:kd=^J:kl=^H:kr=^\:kh=^Y:\
	:li#24:nd=^\:up=^_:xn:ma=^\ ^_^P^YH:pt:
D2|dm2500|datamedia2500|2500|datamedia 2500:\
	:al=15^P\n^X^]^X^]:bs:ce=^W:cl=^^^^\177:cm=^L%r%n%.%.:co#80:\
	:dc=10*^P\b^X^]:dl=10*^P^Z^X^]:dm=^P:ed=^X^]:ei=10\377\377^X^]:ho=^B:\
	:ic=10*^P^\^X^]:im=^P:li#24:nc:nd=^\:pc=\377:so@=^N:se=^X^]:up=^Z:
D3|dm3025|datamedia 3025a:is=\EQ\EU\EV:\
	:al=130\EP\n\EQ:bs:cd=2\EJ:ce=\EK:cl=2\EM:cm=\EY%r%+ %+ :\
	:co#80:dc=6\b:dl=130\EP\EA\EQ:dm=\EP:ed=\EQ:ei=\EQ:ho=\EH:\
	:im=\EP:ip=6:li#24:nd=\EC:pt:so=\EOA:se=\EO@:up=\EA:
D4|3045|dm3045|datamedia 3045a:is=\EU\EV:\
	:am:bs:cd=2\EJ:ce=\EK:cl=2\EM:cm=\EY%r%+ %+ :co#80:\
	:dc=6\EB:dm=:ed=:ei=\EP:ho=\EH:ic=:im=\EP:ip=6:\
	:k0=\Ey\r:k1=\Ep\r:k2=\Eq\r:k3=\Er\r:k4=\Es\r:\
	:k5=\Et\r:k6=\Eu\r:k7=\Ev\r:k8=\Ew\r:k9=\Ex\r:\
	:kh=\EH:ku=\EA:kr=\EC:li#24:nd=\EC:pc=\177:pt:eo:ul:up=\EA:xn:
D5|dt80|dmdt80|dm80|datamedia dt80/1:\
	:is=\E<\E[2J\E[H\E[?1;3;5;6;9l\E[?7;8h:\
	:am:bs:cd=\E[J:co#80:li#24:ce=\E[K:cl=\E[2J\E[H:\
	:cm=%i\E[%d;%dH:ho=\E[H:nd=\E[C:\
	:so=\E[7m:se=\E[m:\
	:up=\E[A:us=\E[4m:ue=\E[m:\
	:vb=\E[?5h\E[?5l:\
	:vs=\E[1;2;3;4q\E[?4l:ve=\E[0q\E?4h:\
	:kd=\E[B:kl=\E[D:kr=\E[C:ku=\E[A:\
	:sr=\EM:\
	:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:
D6|dt80132|dmdt80132|datamedia dt80/1 in 132 char mode:\
	:bs:cd=20^[[0J:co#132:ce=20^[[0K:kd=^[[B:kl=^[[D:kr=^[[C:ku=^[[A:\
	:li#24:cm=5^[[%i%d;%dH:cl=50^[[H^[[2J:nd=^[[C:up=5^[[A:
ED|delta|dd5000|delta data 5000:\
	:am:bs:cl=^NR:cm=^O%D%+9%D%+9:co#80:li#27:ho=^NQ:nc:nd=^Y:\
	:up=^Z:ce=^NU:dc=^NV:ma=^K^J^Z^P^Y :xr:
# Since nd is blank, when you want to erase something you
# are out of luck.  You will have to do ^L's a lot to
# redraw the screen.  h1000 is untested.  It doesn't work in
# vi - this terminal is too dumb for even vi.  (The code is
# there but it isn't debugged for this case.)
H1|h1000|hazeltine 1000:bs:ho=^K:cl=^L:nd= :co#80:li#12:
# Note: the h1552 appears to be the first Hazeltine terminal which
# is not braindamaged.  It has tildes and backprimes and everything!
# Be sure the auto lf/cr switch is set to cr.
H2|h1552|hazeltine 1552:\
	:al=\EE:dl=\EO:f1=\EP:l1=blue:f2=\EQ:l2=red:f3=\ER:l3=green:tc=vt52:
H3|h1552rv|hazeltine 1552 reverse video:\
	:so=\ES:se=\ET:tc=h1552:
H5|h1500|hazeltine 1500:\
	:al=40~^Z:am:bs:cd=10~^X:ce=~^O:cl=~^\:cm=~^Q%r%.%.:co#80:\
	:dl=40~^S:do=~^K:li#24:nd=^P:.se=~^_:.so=~^Y:up=~^L:
# h1510 assumed to be in sane escape mode.  Else use h1500.
H6|h1510|hazeltine 1510:\
	:al=\E^Z:am:bs:cd=\E^X:ce=\E^O:cl=\E^\:cm=\E^Q%r%.%.:co#80:\
	:dl=\E^S:do=\E^K:li#24:nd=^P:.se=\E^_:.so=\E^Y:up=\E^L:
H8|h1520|hazeltine 1520:\
	:al=~^Z:am:bs:cd=~^X:ce=~^O:cl=~\034:cm=~^Q%r%.%.\200:co#80:\
	:dl=~^S:do=~^K:hz:li#24:nd=^P:se=~^Y:so=~\037:up=~^L:ho=~^R:
# Note: h2000 won't work well because of a clash between upper case and ~'s.
H7|h2000|hazeltine 2000:\
	:al=6~^z:am:bs:cl=6~^\:cm=~^q%r%.%.:co#74:\
	:dl=6~^s:ho=~^r:li#27:nc:pc=\177:
# One of these should go in the misc category, IBM and ISC can't
# both have I.  I will wait to see who comes out with more terminals.
I8|8001|ISC8001:al=\EU:am:bc=^Z:cl=3*^L:cm=^C%r%.%.:co#80:\
	:cd=\EQ:dm=\EQ:ed=\EF:\
	:dc=\177:dl=\EV:ei=\EF:im=\EQ:li#40:nd=1^Y:ta=8\t:\
	:up=^\:ho=1^H:pc=^@:
It|intext|ISC modified owl 1200:\
	:al=5.5*\020:am:bc=\037:bs:cd=5.5*\026J:cl=132\014:\
	:cm=\017%+ %+ :co#80:dc=5.5*\022:dl=5.5*\021:\
	:ei=\026\074:im=\026\073:ip=5.5*:in:li#24:nd=\036:up=\034:\
	:ma=^K^P^R^L^L :kl=^H:kd=^J:kr=^L:ku=^K:
I9|ibm|ibm3101|3101|i3101|IBM 3101-10:\
	:if=/usr/lib/tabset/3101:\
	:am:bs:cl=^[K:li#24:co#80:nd=^[C:up=^[A:cd=^[J:ce=^[I:\
	:kd=\EB:kl=\ED:kr=\EC:ku=\EA:ho=^[H:cm=\EY%+\40%+\40:pt:
L3|digilog|333|digilog 333:bs:co#80:ce=\030:ho=^n:li#16:nd=^i:up=^o:
# uses xon/xoff, so no padding needed.  ks/ke have nothing to do with arrow
# keys.  is sets 80 col mode, normal video, autowrap on (for am).
# Seems to be no way to get rid of status line.
M1|tab132|tab|tab132/15|tab 132/15:is=\E[?7h\E[?3l\E[?5l:dN@:ks@:ke@:\
	:da:db:al=\E[L:dl=\E[M:dc=\E[P:ei=\E[4l:im=\E[4h:cm=\E[%i%d;%dH:\
	:ku=\E[A:kd=\E[B:kl=\E[D:tc=vt100:
M2|tab132w:co#132:is=\E[?7h\E[?3h\E[?5l:tc=tab132:
M3|tab132rv:is=\E[?7h\E[?3l\E[?5h:tc=tab132:
M4|tab132wrv:is=\E[?7h\E[?3h\E[?5h:tc=tab132w:
M5|mw2|Multiwriter 2:\
	:co#132:hc:os:de#001202:
M6|trs80|trs-80|radio shack trs-80 Model I:\
	:am:bs:co#64:li#16:
M7|d800|Direct 800/A:\
	:co#80:li#24:am:cl=\E[1;1H\E[2J:bs:cm=\E[%i%d;%dH:\
	:nd=\E[C:up=\E[A:ce=\E[K:cd=\E[J:\
	:if=/dskb/rcd/.dinit:\
	:so=\E[7m:se=\E[0m:us=\E[4m:ue=\E[0m:xs:vs=\E[>12l:ve=\E[>12h:\
	:sf=\ED:sr=\EM:da:db:as=\E[1m:ae=\E[0m:ms:pt:\
	:kl=\E[D:kr=\E[C:ku=\E[A:kd=\E[B:\
	:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:\
	:k5=\EOT:k6=\EOU:k7=\EOV:k8=\EOW:
M8|vc404|volker-craig 404:\
	:am:bs:cd=40^W:ce=20^V:cl=40^X:cm=^P%+ %+ :co#80:ho=40^Y:\
	:kd=^J:kl=^H:kr=^U:ku=^Z:li#24:ma=^Z^P^U :nd=^U:up=^Z:
M9|vc404s|volker-craig 404 w/standout mode:\
	:se=^O:so=^N:tc=vc404:
MA|vc404na|volker-craig 404 w/no arrow keys:ma@:kr@:ku@:tc=vc404:
MB|vc404sna|volker-craig 404 w/standout mode and no arrow keys:\
	:se=^O:so=^N:tc=vc404na:
# missing in vc303a and vc303 descriptions:  they scroll 2 lines at a time
MC|vc303a|vc403a|volker-craig 303a:\
	:am:bs:ce=20^V:cl=40^X:co#80:ho=40^Y:kd=^J:kl=^H::kr=^U:\
	:ku=^Z:li#24:ll=^P^@W:nd=^U:ns:up=^Z:
MD|vc303|vc103|vc203|volker-craig 303:\
	:am:bs:cl=40^L:co#80:ho=40^K:kd=^J:kl=^H:kr=^I:ku=^N:li#24:\
	:ll=^O\200W:nd=^I:ns:up=^N:
ME|ampex|d80|dialogue|dialogue80|ampex dialogue 80:\
	:am:bs:pt:if=/usr/lib/tabset/stdcrt:cl=\E*:cm=\E=%+ %+ :\
	:al=\EE:bt=\EI:ic=\EQ:im=:ei=:dl=\ER:dc=\EW:\
	:ce=\Et:cd=\Ey:so=\Ej:se=\Ek:li#24:co#80:nd=^L:up=^K:
MF|aaadb|ann arbor ambassador 48/destructive backspace:\
	:is=\E[48;0;0;48p\E[H\E[J\E[>30h\E[1Q\E[m:bs@:\
	:vs=\E[>30l:ve=\E[>30h:tc=aaa:
MG|compucolor|compucolorII:\
	:pt:am:cm=%r^C%.%.:bc=^Z:li#32:co#64:\
	:cl=^L:ho=^H:nd=^Y:up=^\:
MH|d132|datagraphix|datagraphix 132a:\
	:co#80:li#30:cl=^l:ho=\Et:da:db:sf=\Ev:sr=\Ew:\
	:up=\Ek:nd=\El:vs=\ex:ve=\Em\En:\
	:al=\E3:ic=\E5:dc=\E6:in:ic=\E5:
MI|soroc|Soroc 120:\
	:cd=\EY:ce=\ET:cl=2\E*:ma=^K^P^R^L^L :\
	:kl=^H:ku=^K:kr=^L:kd=^J:tc=adm3a:
Ma|aa|annarbor|ann arbor:\
	:cm=^O%r%B%.%>^S^L%+@:co#80:li#40:bs:cl=2^L:up=^N:nd=^_:ho=^K:am:\
	:kb=^^:kd=^J:ku=^N:kl=^H:kr=^_:kh=^K:ma=^_ ^N^P:
# Needs function keys added.  Also can't use 60 line mode because it needs
# too much nl delay - can fix for nl but not out of vi.
# The cl delay is sufficent, but a smaller one could do.
# This entry is merged from Mike O'Brien@Rand and Howard Katseff at
# Bell Labs, and is untested.
Mb|aaa|ambas|ambassador|ann arbor ambassador/48 lines:\
	:al=\E[L:am:bs:\
	:cd=\E[0J:ce=\E[0K:cl=400\E[;H\E[0J:cm=\E[%i%d;%dH:co#80:\
	:da:db:dc=\E[4h\E[1Q\E[P\E[4l\E[0Q:dc=\E[P:dl=\E[M:dm=\E[1Q:\
	:ed=\E[0Q:ei=\E[0Q:ho=\E[;H:ic=\E[@:if=/usr/lib/tabset/aa:im=\E[1Q:\
	:is=\E[48;0;0;48p\E[H\E[J\E[1Q\E[m:li#48:mi:\
	:nd=\E[C:nl=\ED:pt:sf=\E[S:sr=\E[T:se=\E[m:so=\E[7m:up=\E[A:
Md|datapoint|dp3|dp3360|datapoint 3360:\
	:am:bs:cd^_:ce=^^:cl=^]^_:co#82:ho=^]:li#25:nd=^x:up=^z:
Mg|dg|605x|6053|d100|d200|dg6053|data general 6053:\
	:am:bc=^Y:cl=^L:cm=^P%r%.%.:nd=^X:up=^W:ce=^K:us=^T:\
	:vs=^S:ve=^R:ue=^U:so=^\:se=^]:kl=^Y:kr=^X:ku=^W:kd=^Z:kh=^H:ho=^H:\
	:ko=cl,ce:li#24:co#80:is=^R:do=^Z:ul:nl=^M^J:k0=\036q:k1=\036r:\
	:k2=\036s:k3=\036t:k4=\036u:k5=\036v:k6=\036w:k7=\036x:k8=\036y:\
	:k9=\036z:
Dg|D400|d400|data general D400x:\
	:am:bc=^y:al=\036FH:ce=^k:cl=^l:\
	:cm=^p%r%.%.:co#80:dc=\036K:dl=\036FI:\
	:do=^z:ic=\036J:is=^r:ho=^h:\
	:kb=\0177:kd=^Z:kh=^h:kl=^y:kr=^x:\
	:ku=^w:li#24:nd=^x:nl=^m^j:se=\036E:so=\036D:\
	:us=^t:ue=^u:ul:up=^w:k0=\036q:k1=\036r:\
	:k2=\036s:k3=\036t:k4=\036u:k5=\036v:k6=\036w:k7=\036x:k8=\036y:\
	:k9=\036z:
d460|dg460|D460|data general D460x:\
	:gd:tc=D400:
d210|dg210|data general 210:\
	:am:bc=^y:cl=^l:cm=4^p%r%.%.:nd=^x:up=^w:ce=^k:cd=\036FF:xo:us=^t:\
	:ue=^u:so=^\:se=^]:kl=^y:kr=^x:ku=^w:kd=^z:kh=^h:ho=^h:\
	:ko=cl,ce:li#24:co#80:is=^r:do=^z:ul:nl=^m^j:k0=\036q:k1=\036r:\
	:k2=\036s:k3=\036t:k4=\036u:k5=\036v:k6=\036w:k7=\036x:k8=\036y:\
	:k9=\036z:
d211|dg211|D211|data general D211:\
	:tc=d200:
g500|dg500|G500|data general G500:\
	:gd:se=\036E:so=\036D:tc=d200:
Mi|cdi|cdi1203:am:bs:hc:os:co#80:cD#200:
Mk|teletec|tec|Teletec Datascreen:\
	:am:bs:co#80:cl=^l:ho=^^:li#24:nd=^_:up=^k:
# ^S is an arrow key!  Boy is this guy in for a surprise on v7!
Ml|sol:\
	:am:bs:cm=\E^1%.\E^2%.:cl=^K:ho=^N:co#64:li#16:nd=^S:up=^W:\
	:kl=^A:kr=^S:ku=^W:kd=^Z:ma=^A^H^S ^W^P^Z^N:
Mn|xl83|Cybernex XL-83:\
	:am:bs:cd=62^P:ce=3^O:cl=62^L:cm=^W%+ %+ :co#80:ho=^K:\
	:kd=^J:kl=^H:ku=^N:li#24:up=^N:nd=^I:
Mo|omron|Omron 8025AG:\
	:al=\EL:am:bs:cd=\ER:co#80:ce=\EK:cl=\EJ:da:db:dc=\EP:dl=\EM:\
	:ho=\EH:li#24:nd=\EC:se=\E4:sf=\ES:so=\Ef:sr=\ET:up=\EA:ve=:vs=\EN:
Mp|plasma|plasma panel:am:bs:cl=^L:co#85:ho=^^:li#45:nd=\030:up=\026:
Ms|swtp|ct82|southwest technical products ct82:\
	:am:bs:bc=^d:al=^\^y:cd=^v:ce=^F:cl=^L:cm=%r^k%.%.:co#82:li#20:\
	:dl=^z:nd=^s:up=^a:so=^^^v:se=^^^F:dc=^\^h:ic=^\^x:ho=^p:\
	:ei=:sf=^n:sr=^o:ll=^c:im=:\
	:is=^\^r^^^s^^^d^]^w^i^s^^^]^^^o^]^w^r^i:
Mt|terak|Terak emulating Datamedia 1520:tc=dm1520:
My|mdl110|cybernex mdl-110:cm=^P%+ %+ :co#80:li#24:am:cl=70^X:bs:\
	:nd=^U:up=^Z:ho=^Y:ce=145^N@^V:cd=145^NA^W:al=65^NA^N^]:\
	:dl=40^NA^N^^:im=:\
	:ei=:ic=3.5^NA^]:dm:ed:dc=3.5^NA^^:so=^NF:se=^NG:ta=43\t:\
	:ma=^Z^P:cd=6^N@^V
Mz|zen30|z30|zentec 30:\
	:mi:co#80:li#24:ma=^L ^R^L^K^P:ul:\
	:al=1.5*\EE:bs:ce=1.0*\ET:cm=\E=%+ %+ :cl=\E*:\
	:ho=^^:nd=^L:se=\EG0;so=\EG6:up=^K:im=\Eq:ei=\Er:\
	:am:dc=\EW:dl=1.5*\ER:cd=\EY:
T3|33|tty33|tty|model 33 teletype:\
	:co#72:hc:os:
T4|43|tty43|model 43 teletype:\
	:kb=^h:am:bs:hc:os:co#132:
T7|37|tty37|model 37 teletype:\
	:bs:hc:hu=\E8:hd=\E9:up=\E7:os:
# The Visual 200 beeps when you type a character in insert mode.
# This is a horribly obnoxious misfeature, and some of the entries
# below try to get around the problem by ignoring the feature or
# turning it off when inputting a character.  They are said not to
# work well at 300 baud.  (You could always cut the wire to the bell!)
V2|vi200|visual 200 with function keys:\
	:al=\EL:am:bs:cd=\Ey:ce=4*\Ex:cl=\Ev:\
	:cm=\EY%+ %+ :co#80:dc=4*\EO:dl=4*\EM:ho=\EH:\
	:im=:ei=:ic=\Ei \b\Ej:\
	:is=\E3\Eb\Ej\E\\\El\EG\Ed\Ek:\
	:k0=\EP:k1=\EQ:k2=\ER:k3=\E :k4=\E!:k5=\E":k6=\E#:\
	:k7=\E$:k8=\E%:k9=\E&:kl=\ED:kr=\EC:ku=\EA:kd=\EB:kh=\EH:\
	:li#24:nd=\EC:pt:sr=\EI:up=\EA:vs=\Ed:ve=\Ec:
VR|vi200rvic|visual 200 reverse video using insert char:\
	:ei=\Ej:im=\Ei:ic@:tc=vi200rv:
# The older Visuals didn't come with function keys. This entry uses
# ks and ke so that the keypad keys can be used as function keys.
# If your version of vi doesn't support function keys you may want
# to use V2.
Vf|vi200f|visual|visual 200 no function keys:\
	:al=\EL:am:bs:cd=\Ey:ce=4*\Ex:cl=\Ev:\
	:cm=\EY%+ %+ :co#80:dc=4*\EO:dl=4*\EM:ho=\EH:\
	:im=:ei=:ic=\Ei \b\Ej:\
	:is=\E3\Eb\Ej\E\\\El\EG\Ed\Ek:ks=\E=:ke=\E>:\
	:k0=\E?p:k1=\E?q:k2=\E?r:k3=\E?s:k4=\E?t:k5=\E?u:k6=\E?v:\
	:k7=\E?w:k8=\E?x:k9=\E?y:kl=\ED:kr=\EC:ku=\EA:kd=\EB:kh=\EH:\
	:li#24:nd=\EC:pt:sr=\EI:up=\EA:vs=\Ed:ve=\Ec:
Vr|vi200rv|visual 200 reverse video:\
	:so=\E4:se=\E3:sr@:vs@:ve@:tc=vi200:
Vt|vi200ic|visual 200 using insert char:\
	:ei=\Ej:im=\Ei:ic@:tc=vi200:
X0|tek4010|4010|tektronix 4010:\
	 co#74:tc=4012:
4105|4105a|tektronix 4105a:\
	:gd:is=\E%!1:ho=\E[H:ce=\E[2K:cl=50\E%!0\E^L\E%!1\E[;H\E[2J:\
	:cm=\E[%i%2;%2H::co#80:li#30:tc=4012:
Xa|tek|tek4012|4012|tektronix 4012:\
	:gd:is=^]^_\E^O:bs:cl=1000^]\E^L:co#75:ns:li#35:os:
Xb|tek4013|4013|tektronix 4013:\
	:as=\E^N:ae=\E^O:tc=4012:
Xc|tek4014|4014|tektronix 4014:\
	:is=^]^_\E^O\E9:co#81:li#38:dF#1000:tc=tek4012:
tek4014gpx|4014gpx|tektronix 4014 in small font for gpx workstation:\
	:gd=4014gpx:is=^]^_\E^O\E\072:co#132:li#64:tc=tek4014:
Xd|tek4015|4015|tektronix 4015:\
	:as=\E^N:ae=\E^O:tc=4014:
Xe|tek4014sm|4014sm|tektronix 4014 in small font:\
	:is=^]^_\E^O\E\072:co#121:li#58:tc=tek4014:
Xf|tek4015sm|4015sm|tektronix 4015 in small font:\
	:as=\E^N:ae=\E^O:tc=4014sm:
X4|tek4023|4023|tektronix 4023:\
	:so=^_P:se=^_@:cm=\034%r%+ %+ :nd=\t:bs:cl=4\E^L:co#80:li#24:am:\
	:up=1000UP:
X5|4025|TEK4025|tektronix 4024/4025/4027, S.Voels, Ucolo:\
	:gd:al=145`UP\r`ILI\r:am:bs:CC=`:cd=`DLI 50\r:ce=`DCH 80\r:\
	:cl=`ERA W\r\n\n:cm=`JUM %i%d,%d\r:co#80:da:dc=`DCH\r:dl=`DLI\r:\
	:db:ei=^F\n^K:li#34:im=`ICH\r:\
	:is=\041COM`\r\n`WOR 33 H K\r`STO 9,17,25,33,41,49,57,65,73\r:\
	:ks=`LEA p4 /h/\r`LEA p8 /k/\r`LEA p6 / /\r`LEA p2 /j/\r`LEA f5 /H/\r:\
	:ke=`LEA p2\r`LEA p4\r`LEA p6\r`LEA p8\r`LEA f5\r:\
	:nd=`RIG\r:nl=^F\n:pt:te=`MON 34 H K\r:ti=`WOR 33 H K\r:up=^K:
X6|4025o|4027o|4024o|tek4025o|tek4027o|tek4024o|4025cuo|4027cuo|tektronix 4024/4025/4027o:\
	:gd:is=\41com 31\r\n^_sto 9,17,25,33,41,49,57,65,73\r:\
	:ks=^_lea p4 /h/\r^_lea p8 /k/\r^_lea p6 / /\r^_lea p2 /j/\r^_lea f5 /H/\r:\
	:ke=^_lea p2\r^_lea p4\r^_lea p6\r^_lea p8\r^_lea f5\r:\
	:am:bs:da:db:pt:li#34:co#80:cl=^_era\r\n\n:up=^K:nd=^_rig\r:\
	:al=145^_up\r^_ili\r:dl=^_dli\r:\
	:dc=^_dch\r:im=^_ich\r:ei=^F\n^K:nl=^F\n:\
	:ce=^_dch 80\r:cd=^_dli 50\r:CC=^_:
X7|4025-17|4027-17|tek 4025 17 line window:li#17:tc=4025:
X8|4025-17ws|4027-17ws|tek 4025 17 line window in workspace:\
	:is=\41com 31\r\n^_sto 9,17,25,33,41,49,57,65,73\r^_wor 17\r^_mon 17\r:\
	:ti=^_wor h\r:te=^_mon h\r:so=^_att e\r:se=^_att s\r:tc=4025-17:
Xe|4025ex|4027ex|tek 4025 w/!:ti=\41com 31\r:te=^_com 33\r:\
	:is=^_com 33\r\n\41sto 9,17,25,33,41,49,57,65,73\r:tc=4025:
# Regent: lowest common denominator, works on all regents.
a0|regent|adds regent series:\
	:am:bs:cl=^L:cm=^K%+ ^P%B%.:co#80:ho=^A:li#24:ll=^A^Z:nd=^F:up=^Z:
# Regent 100 has a bug where if computer sends escape when user is holding
# down shift key it gets confused, so we avoid escape.
a1|regent100|adds regent 100:\
	:cm=^K%+ ^P%B%.:k1=^B1\r:k2=^B2\r:k3=^B3\r:k4=^B4\r:\
	:k5=^B5\r:k6=^B6\r:k7=^B7\r:k8=^B8\r:\
	:kh=^A:kl=^U:kr=^F:ku=^Z:kd=^J:tc=regent:
# Regent 20, untested
a2|regent20|adds regent 20:\
	:cd=\Ek:ce=\EK:cm=\EY%+ %+ :tc=regent:
a3|regent25|adds regent 25:\
	:k0=^B0\r:k1=^B1\r:k2=^B2\r:k3=^B3\r:k4=^B4\r:\
	:k5=^B5\r:k6=^B6\r:k7=^B7\r:k8=^B8\r:k9=^B9\r:\
	:kh=^A:kl=^U:kr=^F:ku=^Z:kd=^J:tc=regent20:
# Regent 40: untested
a4|regent40|adds regent 40:\
	:al=\EM:dl=\El:is=\EB:se=\E0@:so=\EOP:ue=\EO@:us=\E0`:vb=\ED\Ed:\
	:tc=regent25:
# If you have standout problem with regent 200, try so=\ER\EOP:se=\E0@\EV:
a6|regent60|regent200|adds Regent 60:\
	:dc=\EE:ei=\EF:im=\EF:is=\EV\EB:ko=dc,im,ei:tc=regent40:
a7|regent60na|regent 60 w/no arrow keys:\
	kl@:kr@:ku@:kd@:tc=regent60:
# Note: if return acts weird on a980, check internal switch #2
# on the top chip on the CONTROL pc board.
ac|a980|adds consul 980:\
	:al=13\E^N:am:bs:cl=^L\200^K@:cm=^K%+@\E^E%2:co#80:dl=13\E^O:\
	:k0=\E0:k1=\E1:k2=\E2:k3=\E3:k4=\E4:k5=\E5:k6=\E6:k7=\E7:k8=\E8:k9=\E9:\
	:li#24:nd=\E^E01:so=^Y^^^N:se=^O:up=9:
# Reports are that most of these Beehive entries (except superbee) have not been
# tested and do not work right.  se is a trouble spot.  Be warned.
b2|sb2|sb3|fixed superbee:xb@:tc=superbee:
bh|bh3m|beehiveIIIm:if=/usr/lib/tabset/beehive:\
	:al=160^S:am:bs:cd=^R:ce=^P:cl=^E^R:co#80:dl=300^Q:ho=^E:li#20:ll=^E^K:\
	:nd=^L:pt:se= ^_:so=^] :up=^K:
# This loses on lines > 80 chars long, use at your own risk
bi|superbeeic|super bee with insert char:\
	:ic=:im=\EQ:ei=\ER:tc=superbee:
bm|microb|microbee|micro bee series:\
	:am:bs:cd=\EJ:ce=\EK:cl=\EE:co#80:cm=\EF%+ %+ :\
	:k1=\Ep:k2=\Eq:k3=\Er:k4=\Es:k5=\Et:k6=\Eu:k7=\Ev:k8=\Ew:k9=\Ex:\
	:kd=\EB:kh=\EH:kl=\ED:kr=\EC:ku=\EA:\
	:li#24:nd=\EC:pt:se=\Ed@ :so= \EdP:ue=\Ed@:up=\EA:us=\Ed`:
# Superbee - f1=escape, f2=^C.
# Note: there are at least 3 kinds of superbees in the world.  The sb1
# holds onto escapes and botches ^C's.  The sb2 is the best of the 3.
# The sb3 puts garbage on the bottom of the screen when you scroll with
# the switch in the back set to CRLF instead of AEP.  This description
# is tested on the sb2 but should work on all with either switch setting.
# The f1/f2 business is for the sb1 and the :xb: can be taken out for
# the other two if you want to try to hit that tiny escape key.
# This description is tricky: being able to use cm depends on there being
# 2048 bytes of memory and the hairy nl string.
bs|sb1|superbee|superb|beehive super bee:if=/usr/lib/tabset/stdcrt:is=\EE:\
	:am:bs:cd=3\EJ:ce=3\EK:cl=3\EH\EJ:co#80:cm=\EF%r%3%3:cr=1000\r:\
	:dC#10:da:db:xb:dc=3\EP:dl=100\EM:so=\E_1:se=\E_0:\
	:li#25:nl=\n\200\200\200\n\200\200\200\EA\EK\200\200\200\ET\ET:\
	:nd=\EC:pt:up=\EA:ho=\EH:ve=\n:\
	:k1=\Ep:k2=\Eq:k3=\Er:k4=\Es:k5=\Et:k6=\Eu:k7=\Ev:k8=\Ew:\
	:kd=\EB:kh=\EH:kl=\ED:kr=\EC:ku=\EA:
# From vax135!hpk  Sat Jun 27 07:41:20 1981
# There seem to be a number of different versions of the C108 PROMS
# (with bug fixes in its Z-80 program).
# The first one that we had would lock out the keyboard of you
# sent lots of short lines (like /usr/dict/words) at 9600 baud.
# Try that on your C108 and see if it sends a ^S when you type it.
# If so, you have an old version of the PROMs.
# The old one also messed up running vi with a 132-character line-length.
# You should configure the C108 to send ^S/^Q before running this.
# It is much faster (at 9600 baud) than the c100 because the delays
# Are not fixed.
c8|c108|c108-8|concept 108 w/8 pages and ^S/^Q:\
	:ti=\EU\Evh 8p\Ep\r:te=\Ev  ^A\177p\Ep\r\n:tc=c108-4:
cS|c108|c108-4|concept 108 w/4 pages and ^S/^Q:\
	:is=\EU\E F\Ef\E7\E5\E8\El\ENH\EK\E\200\Eo&\200\Eo\47\E:\
	:ti=\EU\Evh 8p\Ep\r:te=\Ev  \177p\Ep\r\n:\
	:al=\E^R:am:bs:cd=\E^C:ce=\E^S:cl=\E?\E:cm=\Ea%+ %+ :co#80:\
	:dc=\E^A:dl=\E^B:ei=\E\200:eo:im=\E^P:in:ip=:li#24:mi:nd=\E=:\
	:kb=^h:ul:up=\E;:db:us=\EG:ue=\Eg:xn:vs=\EW:ve=\Ew:\
	:vb=\Ek\200\200\200\200\200\200\200\200\200\200\200\200\200\200\EK:\
	:us=\EG:ue=\Eg:ks=\EX:ke=\Ex:ku=\E;:kd=\E<:kl=\E>:kr=\E=:kh=\E?:\
	:k1=\E5:k2=\E6:k3=\E7:so=\ED\EE:se=\Ed\Ee
# Some tty drivers use cr3 for concept, others use nl3, hence dN/dC below.
# 2 nulls padding on te isn't always enough.  6 works fine.  Maybe less
# than 6 but more than 2 will work.
# It seems rather strange to have is end in escape.  Seems to reprogram
# arrow keys to send escape sequences instead of whatever sequences.
cp|c100rvpp|c100rv4ppp|c100 with printer port:\
	:is=\EU\Ef\E7\E5\E8\El\ENH\Ek\E\200\Eo&\200\Eo!\200\EQ"\EY(^W\Eo\47\E:\
	:tc=c100rv:
cn|c100rvna|c100rv4pna|c100 with no arrows:ks@:ke@:tc=c100rv:
cs|c100s|slowconcept|slowconcept100|slow concept 100:\
	:vb=\Ek\200\EK:pt:dC@:dN@:tc=c100:
cd|c100rvs|slow reverse concept 100:\
	:vb=\EK\200\Ek:pt:dC@:dN@:tc=c100rv:
#old vt100 entry
#d0|vt100n|vt100 w/no init:is@:if@:tc=vt100:
#d1|vt100|vt-100|pt100|pt-100|dec vt100:\
#	:co#80:li#24:am:cl=50\E[;H\E[2J:bs:cm=5\E[%i%2;%2H:nd=2\E[C:up=2\E[A:\
#	:ce=3\E[K:cd=50\E[J:so=2\E[7m:se=2\E[m:us=2\E[4m:ue=2\E[m:\
#	:is=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:ks=\E[?1h\E=:ke=\E[?1l\E>:\
#	:if=/usr/lib/tabset/vt100:ku=\EOA:kd=\EOB:kr=\EOC:kl=\EOD:\
#	:kh=\E[H:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:pt:sr=5\EM:xn:
#
# d: DEC (DIGITAL EQUIPMENT CORPORATION)
#
# Note that xn glitch in vt100 is not quite the same as concept, since
# the cursor is left in a different position while in the weird state
# (concept at beginning of next line, vt100 at end of this line) so
# all versions of vi before 3.7 don't handle xn right on vt100.
# I assume you have smooth scroll off or are at a slow enough baud
# rate that it doesn't matter (1200? or less).  Also this assumes
# that you set auto-nl to "on", if you set it off use vt100-nam below.
#
# Since there are two things here called vt100, the installer can make
# a local decision to make either one standard "vt100" by including
# it in the list of terminals in reorder, since the first vt100 in
# /etc/termcap is the one that it will find.  The choice is between
# nam (no automatic margins) and am (automatic margins), as determined
# by the wrapline switch (group 3 #2).  I presonally recommend turning
# on the bit and using vt100-am, since having stuff hammer on the right
# margin is sort of hard to read.  However, the xn glitch does not occur
# if you turn the bit off.
#
# I am unsure about the padding requirements listed here.  I have heard
# a claim that the vt100 needs no padding.  It's possible that it needs
# padding only if the xon/xoff switch is off.  For UNIX, this switch
# should probably be on.
#
# The vt100 uses rs and rf rather than is/ct/st because the tab settings
# are in non-volatile memory and don't need to be reset upon login.
# You can type "reset" to get them set.
#d0|vt100n|vt100 w/no init:is@:if@:tc=vt100:
#d1|vt100|vt-100|pt100|pt-100|dec vt100:\
#	:co#80:li#24:cl=50\E[;H\E[2J:bs:am:cm=5\E[%i%2;%2H:nd=2\E[C:up=2\E[A:\
#	:ce=3\E[K:cd=50\E[J:so=2\E[7m:se=2\E[m:us=2\E[4m:ue=2\E[m:\
#	:is=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:ks=\E[?1h\E=:ke=\E[?1l\E>:\
#	:if=/usr/lib/tabset/vt100:ku=\EOA:kd=\EOB:kr=\EOC:kl=\EOD:\
#	:kh=\E[H:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:pt:sr=5\EM:xn:\
#	:dl=\E7\E[%i%2;24r\E[24;0H\n\E[;r\E8:\
#	:al=\E7\E[%i%2;24r\E8\EM\E[;r\E8:xv:
#d1|ovt100|vt-100|pt100|pt-100|dec vt100:\
#	:co#80:li#24:am:cl=50\E[;H\E[2J:bs:cm=5\E[%i%2;%2H:nd=2\E[C:up=2\E[A:\
#	:ce=3\E[K:cd=50\E[J:so=2\E[7m:se=2\E[m:us=2\E[4m:ue=2\E[m:\
#	:is=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:ks=\E[?1h\E=:ke=\E[?1l\E>:\
#	:if=/usr/lib/tabset/vt100:ku=\EOA:kd=\EOB:kr=\EOC:kl=\EOD:\
#	:kh=\E[H:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:pt:sr=5\EM:xn:
d2|gt42|dec gt42:\
	:bs:co#72:ns:li#40:os:
d3|vt132|vt-132:\
	:al=99\E[L:dl=99\E[M:ip=7:dc=7\E[P:ei=\E[4l:im=\E[4h:xn:dN#30:tc=vt100:
d4|gt40|dec gt40:\
	:bs:co#72:ns:li#30:os:
d5|vt50|dec vt50:\
	:bs:cd=\EJ:ce=\EK:cl=\EH\EJ:co#80:li#12:nd=\EC:pt:up=\EA:
dI|dw1|decwriter I:\
	:bs:co#72:hc:os:
dh|vt50h|dec vt50h:\
	:bs:cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\EY%+ %+ :co#80:li#12:nd=\EC:\
	:pt:sr=\EI:up=\EA:
ds|vt100s|vt-100s|pt100s|pt-100s|dec vt100 132 cols 14 lines:\
	:li#14:tc=vt100w:
dt|vt100w|vt-100w|pt100w|pt-100w|dec vt100 132 cols:\
	:co#128:li#24:is=\E>\E[?3h\E[?4l\E[?5l\E[?7h\E[?8h:tc=vt100:
dv|vt52|dec vt52:\
	:bs:cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\EY%+ %+ :co#80:li#24:nd=\EC:\
	:pt:sr=\EI:up=\EA:ku=\EA:kd=\EB:kr=\EC:kl=\ED:
dw|dw2|dw3|dw4|decwriter II:\
	:kb=^h:bs:co#132:hc:os:
e1|ep48|ep4080|execuport 4080:am:bs:os:co#80:hu=\036:hd=\034:
e2|ep40|ep4000|execuport 4000:am:bs:os:co#136:hu=\036:hd=\034:
g2|1200|tn1200|terminet 1200:\
	:co#120:hc:os:
g3|300|tn300|terminet 300:\
	:co#120:hc:os:
# Note: no "ho" on HP's since that homes to top of memory, not screen.
# Due to severe braindamage, the only way to get the arrow keys to
# transmit anything at all is to turn on the function key labels
# (f1-f8) with ks, and even then the poor user has to hold down shift!
# The default 2621 turns off the labels except when it has to to enable
# the function keys.  If your installation prefers labels on all the time,
# or off all the time (at the "expense" of the function keys) move the
# 2621nl or 2621wl labels to the front using reorder.
# 2621k45: untested
h3|2621k45|hp2621k45|k45|hp 2621 with 45 keyboard:\
	:kb=^H:ku=\EA:kd=\EB:kl=\ED:kr=\EC:kh=\Eh:ks=\E&s1A:ke=\E&s0A:tc=2621:
h6|hp2626|hp2626a|hp2626p|2626|2626a|2626p|hp 2626:\
	:is=\E&j@\r\E3\r:if=/usr/lib/tabset/stdcrt:\
	:al=\EL:am:bs:bt=\Ei:cd=\EJ:ce=\EK:cl=\EH\EJ:\
	:cm=\E&a%r%dc%dY:co#80:da:db:dc=2\EP:dl=\EM:ei=\ER:\
	:im=\EQ:ip=2:li#24:mi:nd=\EC:pt:se=\E&d@:so=\E&dB:up=\EA:\
	:kh=\Eh:ku=\EA:kl=\ED:kr=\EC:kd=\EB:\
	:ma=j^Jk^P^K^Pl :sf=\ES:\
	:ta=2^I:xs:
# cD a pain - only screw up at 9600 baud.
# 2640a doesn't have the Y cursor addressing feature, and C is memory relative
# instead of screen relative, as we need.
ha|2640|hp2640a|2640a|hp 2640a:cm@:ks@:ke@:tc=2645:
hb|2640b|hp2640b|2644a|hp2644a|hp 264x series:ks@:ke@:tc=2645:
# 2621 using all 48 lines of memory, only 24 visible at any time.  Untested.
hb|big2621|48 line 2621:li#48:ho=\EH:cm=\E&a%r%dc%dR:tc=2621:
hn|2621nl|hp2621nl|2621|hp 2621 with no labels:ks@:ke@:kh@:ku@:kl@:kr@:kd@:tc=hp2621:
# Needed for our vax console, since lsi-11 expands tabs (wrong).
ht|2621nt|hp 2621 w/no tabs:pt@:tc=2621:
hw|2621wl|hp2621wl|2621|hp 2621 with labels:is=\E&jA\r\E3\r:ke=\E&jA:tc=hp2621:
# Infoton is now called General Terminal Corp. or some such thing.
# gt100 sounds like something DEC would come out with.  Lets hope they don't.
i1|i100|gt100|gt100a|General Terminal 100A (formerly Infoton 100):\
	:cl=^L:cd=\EJ:ce=\EK:li#24:co#80:\
	:al=\EL:dl=\EM:up=\EA:nd=\EC:ho=\EH:cm=\Ef%r%+ %+ :vb=\Eb\Ea:am:bs:\
	:so=\Eb:se=\Ea:
i4|i400|400|infoton 400:\
	:if=/usr/lib/tabset/infoton_tabs:\
	:al=\E[L:am:bs:ce=\E[N:cl=\E[2J:cm=%i\E[%3;%3H:co#80:dl=\E[M:li#25:\
	:nd=\E[C:up=\E[A:im=\E[4h\E[2Q:ei=\E[4l\E[0Q:\
	:dc=\E[4h\E[2Q\E[P\E[4l\E[0Q:
ia|addrinfo:\
	:li#24:co#80:cl=^L:ho=^H:nd=^Y:cd=^K:\
	:up=^\:am:bc=^Z:cm=\037%+\377%+\377:ll=^H^\:
ik|infotonKAS:\
	:am:bc=^Z:cd=^K:cl=^L:co#80:li#24:nd=^Y:up=^\:ll=^H^\:
kA|h19A|heathA|h19A|heathkitA|heathkit h19 ansi mode:\
	:al=1*\E[1L:am:bs:cd=\E[J:ce=\E[K:cl=\E[2J:cm=\E[%i%2;%2H:co#80:\
	:dc=\E[1P:dl=1*\E[1M:dn=\E[1B:ei=\E[4l:ho=\E[H:im=\E[4h:li#24:mi:\
	:nd=\E[1C:as=\E[10m:ae=\E[11m:ms:pt:se=\E[0m:so=\E[7m:up=\E[1A:\
	:vs=\E[>4h:ve=\E[>4l:kb=^h:ku=\E[1A:kd=\E[1B:kl=\E[1D:kr=\E[1C:\
	:kh=\E[H:kn#8:k1=\EOS:k2=\EOT:k3=\EOU:k4=\EOV:k5=\EOW:l6=blue:\
	:l7=red:l8=white:k6=\EOP:k7=\EOQ:k8=\EOR:\
	:sr=\EM:is=\E<\E[>1;2;3;4;5;6;7;8;9l\E[0m\E[11m\E[?7h:
kB|h19bs|heathkit w/keypad shifted:ks=\Et:ke=\Eu:tc=h19b:
kU|h19us|heathkit w/keypad shifted/underscore cursor:ks=\Et:ke=\Eu:tc=h19u:
ku|h19u|heathkit with underscore cursor:vs@:ve@:tc=h19b:
# If the adm31 gives you trouble with standout mode, check the DIP switch
# in position 6, bank @c11, 25% from back end of pc.  Should be OFF.
# If there is no such switch, you have an old adm31 and must use oadm31
l1|adm31|31|lsi adm31:is=\Eu\E0:\
	:al=\EE:am:bs:ce=\ET:cm=\E=%+ %+ :cl=\E*:cd=\EY:co#80:dc=\EW:dl=\ER:\
	:ei=\Er:ho=^^:im=\Eq:k0=^A0\r:k1=^A1\r:k2=^A2\r:k3=^A3\r:k4=^A4\r:\
	:k5=^A5\r:k6=^A6\r:k7=^A7\r:k8=^A8\r:k9=^A9\r:kd=^J:kl=^H:kr=^L:ku=^K:\
	:li#24:ma=j^Jk^P^K^Pl ^R^L^L :mi:nd=^L:\
	:se=\EG0:so=\EG1:up=^K:us=\EG1:ue=\EG0:
l2|adm2|lsi adm2:\
	:al=\EE:am:bs:cd=\EY:ce=\ET:cl=\E;:cm=\E=%+ %+ :co#80:dc=\EW:dl=\ER:\
	:ei=:ho=^^:ic=\EQ:im=:kd=^J:kh=^^:kl=^H:kr=^L:ku=^K:li#24:nd=^L:up=^K:
l4|adm42|42|lsi adm42:vs=\EC\E3 \E3(:\
	:al=270\EE:am:bs:cd=\EY:ce=\ET:cl=\E;:cm=\E=%+ %+ :co#80:\
	:dc=\EW:dl=\ER:ei=\Er:im=\Eq:ip=6*:li#24:\
	:bt=\EI:nd=^L:se=\EG0:so=\EG4:ta=\t:up=^k:\
	:ma=^K^P:pc=\177:
l5|adm5|5|lsi adm5:\
	:cd=\EY:ce=\ET:do=^J:kb=^H:kd=^J:kh=^^:kl=^H:kr=^L:ku=^K:\
	:ma=^Hh^Jj^Kk^Ll^^H:se=\EG:sg#1:so=\EG:tc=adm3a:
lb|adm3a+|3a+:kl=^H:kd=^J:ku=^K:kr=^L:tc=adm3a:
lo|oadm31|o31|old adm31:so=\EG4:us@:ue@:tc=adm31:
# These mime1 entries refer to the Microterm Mime I or Mime II.
# The default mime is assumed to be in enhanced act iv mode.
m3|mime3a|mime1 emulating 3a:\
	:am@:ma=^X ^K^J^Z^P:ku=^Z:kd=^K:kl=^H:kr=^X:tc=adm3a:
m4|microterm|act4|microterm act iv:\
	:am:bs:cd=^_:ce=^^:cl=^L:cm=^T%.%.:co#80:li#24:nd=^X:up=^Z:ho=^]:
# The padding on sr and ta for act5 and mime is a guess and not final.
m5|microterm5|act5|microterm act v:\
	:uc=\EA:pt:ta=2^I:sr=3\EH:ku=^Z:kd=^K:kl=^H:kr=^X:ma=^Z^P^Xl^Kj:tc=act4:
# act5s is not tested and said not to work.
mS|act5s|skinny act5:ti=\EP:te=\EQ:li#48:co#39:tc=act5:
# Mimes using brightness for standout.  Half bright is really dim unless
# you turn up the brightness so far that lines show up on the screen.
# uc is disabled to get around a curses bug, and should be put back in someday.
mf|mimefb|full bright mime1:so=^Y:se=^S:uc@:is=^S\E:tc=mime:
mh|mimehb|half bright mime1:so=^S:se=^Y:uc@:is=^Y\E:tc=mime:
# These termcaps (for mime 2a) put the terminal in low intensity mode
# since high intensity mode is so obnoxious.
ms|mime2as|microterm mime2a (emulating an enhanced soroc iq120):\
	:al=20*^A:am:bs:cd=20*\EJ:ce=\EK:cl=\EL:cm=\E=%+ %+ :co#80:dc=\ED:\
	:dl=20*^W:kl=^H:kr=^L:ku=^K:kd=^J:ho=^^:is=\E):sr=\EI\
	:im=\EE:ei=^Z:ip=2:li#24:nd=^L:so=\E\072:se=\E;:up=\EI:\
	:us=\E6:ue=\E7:
# This is the preferred mode (but ^X can't be used as a kill character)
mv|mime2a|mime2av|microterm mime2a (emulating an enhanced vt52):\
	:al=20*^A:bs:cd=20*\EQ:co#80:ce=\EP:cl=\EL:cm=\EY%+ %+ :is=^Y\
	:dc=^N:dl=20*^W:ip=2:ei=^Z:ho=\EH:im=^O:kd=\EB:kl=\ED:kr=\EC:ku=\EA:\
	:li#24:nd=\EC:pt:se=\E9:so=\E8:up=\EA:sr=\EA:us=\E4:ue=\E5:
mx|mime3ax|mime1 emulating enhanced 3a:\
	:al=80^A:dl=80^W:pt:ce=^X:cd=^_:tc=mime3a:
pe|pe550|perkin elmer 550:\
	:bs:co#80:ce=20\EI:cl=20\EK:cm=\EX%+ \EY%+ :\
	:ho=\EH:li#24:ll=\EH\EA:nd=\EC:up=\EA:
	:ma=^Z^P:cd=6^N@^V:
pf|fox|perkin elmer 1100:if=/usr/lib/tabset/stdcrt:\
	:am:bs:cd=5.5*\EJ:ce=\EI:cl=132\EH\EJ:co#80:ho=\EH:li#24:\
	:ll=\EH\EA:nd=\EC:cm=\EX%+ \EY%+ :up=\EA:vb=^P^B^P^C:
po|owl|perkin elmer 1200:if=/usr/lib/tabset/stdcrt:\
	:al=5.5*\EL:am:bs:cd=5.5*\EJ:ce=5.5\EI:cl=132\EH\EJ:ho=\EH:ll=\EH\EA:\
	:cm=\EX%+ \EY%+ :co#80:dc=5.5*\EO:dl=5.5*\EM:ei=:ic=\EN:im=:ip=5.5*:\
	:kb=^h:in:li#24:nd=\EC:up=\EA:se?=\E!\200:so?=\E!^H:vb=^P^B^P^C:\
	:k1=\ERA:k2=\ERB:k3=\ERC:k4=\ERD:k5=\ERE:k6=\ERF:\
	:k7=\ERG:k8=\ERH:k9=\ERI:k0=\ERJ:
qB|bc|bill croft homebrew:\
	:am:bs:cm=\E=%+ %+ :cl=^Z:co#96:ho=^^:li#72:\
	:nd=^L:up=^K:vb=:
qN|nucterm|rayterm|NUC homebrew:\
	:am:bs:cl=1^L:li#24:co#80:nd=^C:up=^N:ho=^B:ll=^K:ce=^A:cd=^E:
qb|ex3000:\
	:li#24:co#80:ho=^Q:
qc|carlock|klc:\
	:al=^E:am:bs:ce=^U:cl=100^Z:cm=\E=%+ %+ :co#80:dc=\177:dl=^D:dm=:\
	:ed=:ei=^T:ho=^^:im=^T:li#24:nd=^L:se=^V:so=^V:up=^K:vb=\EV\EV:
qe|exidy|exidy2500|exidy sorcerer as dm2500:\
	:al=^P^J^X:am:bs:ce=^W:cl=^^:cm=^L%r%n%.%.:co#64:\
	:dc=\b:dl=^P^Z^X:dm=^P:ed=^X:ei=^X:ho=^B:ic=^\:\
	:im=^P:li#30:nd=^\:pt:so=^N:se=^X:up=^Z:
qn|netx|netronics:\
	:bs:cd=2000^F^E:ce=1600^E:cl=466^L:cm=\E=%+@%+@:co#64:ho=^D:\
	:li#16:ma=j^Jk^Pl :nd=\E+@A:pc=\200:sr=\E=@@^K:up=^K:
# This came from the comp ctr who got it from some user.  Smart indeed!
qs|sexidy|exidy smart:\
	:li#24:co#64:cl=^l:ho=^q:nd=^s:up=^w:bs:bc=^a:ma=^x^J:kd=^S:
qu|ubell|ubellchar:if=/usr/staff/michael/term/startup:\
	:am:bs:pt:ce=\Ed:cl=^Z:cm=\E=%+ %+ :co#80:li#24:nd=^L:up=^K:\
	:ma=j^Jk^P^K^Pl :ho=^^:
qw|ttyWilliams:\
	:co#80:li#12:bc=^Y:do=^K:up=^Z:cl=^^:ce=^_:am:ho=^]:nd=^X:
qx|xitex|xitex sct-100:\
	:bs:cd=2000^F^E:ce=1600^E:cl=400^L:cm=\E=%+@%+@:co#64:ho=^D:\
	:li#16:ma=j^Jk^Pl :nd=\E+@A:pc=\200:sr=\E=@@^K:up=^K:
t3|ti|ti700|ti733|735|ti735|ti silent 700:\
	:bs:co#80:hc:os:dC#162:
t4|ti745|745|743|ti silent 745:\
	:bs:co#80:hc:os:
t8|ti800|ti omni 800:\
	:bs:co#132:hc:os:
# There are some tvi's that require incredible amounts of padding and
# some that don't.  I'm assuming 912 and 920 are the old slow ones,
# and 912b, 912c, 920b, 920c are the new ones that don't need padding.
v1|tvi912|912|920|tvi920|old televideo:if=/usr/lib/tabset/stdcrt:\
	:al=33*\EE:am:bs:ce=\ET:cm=\E=%+ %+ :cl=^Z:co#80:dc=\EW:dl=33*\ER:ei=:\
	:kb=^h:ku=^K:kd=^J:kl=^H:kr=^L:k0=^A@\r:k1=^AA\r:k2=^AB\r:k3=^AC\r:\
	:k4=^AD\r:k5=^AE\r:k6=^AF\r:k7=^AG\r:k8=^AH\r:k9=^AI\r:\
	:ho=^^:im=:ic=\EQ:li#24:nd=^L:pt:se=\Ek:so=\Ej:up=^K:us=\El:ue=\Em:\
	:ma=^K^P^L :sg#1:ug#1:
v2|912b|912c|920b|920c|tvi|new televideo 912/920:\
	:al=5*\EE:dl=5*\ER:tc=912:
# set to page 1 when entering ex (\E-17 )
# reset to page 0 when exiting ex (\E-07 )
v2|tvi9122p|tvi9202p|9122p|9202p|tvi2p|televideo w/2 pages:\
	:ti=\E-17 :te=\E-07 :tc=tvi912:\
va|tvi950-ap|tvi 950 w/alt pages:is=\E\\1:ti=\E-06 :te=\E-16 :tc=tvi950:
vf|tvi950-4p|tvi 950 w/4 pages:ti=\E\\1:te=\E\\3:tc=tvi950:
vl|tvi950b|bare tvi950 no is:is@:ks=\El:ke=\Ek:tc=tvi950:
vs|tvi950ns|tvi950 w/no standout:so@:se@:us@:ue@:tc=tvi950:
vt|tvi950-2p|tvi 950 w/2 pages:ti=\E\\1:te=\E\\2:tc=tvi950:
# The following tvi descriptions from B:pjphar
# is for all 950 sets the following attributes:
# full duplex (\EDF)		write protect off (\E()
# conversation mode (\EC)	graphics mode off (\E%)
# white on black (\Ed)		auto page flip off (\Ew)
# turn off status line (\Eg)
# normal video (\E0)		monitor mode off (\EX or \Eu)
# edit mode (\Er)		load blank char to space (\Ee\040)
# line edit mode (\EO)		enable buffer control (^O)
# protect mode off (\E\047)	local edit keys (\Ek)
# program unshifted send key to send line all (\E016)
# program shifted send key to send line unprotected (\E004)
# set the following to nulls:
#	field delimiter (\Ex0\200\200)
#	line delimiter (\Ex1\200\200)
#	start-protected field delimiter (\Ex2\200\200)
#	end-protected field delimiter (\Ex3\200\200)
# set end of text delimiter to carriage return/null (\Ex4\r\200)
# clear all column tabs (\E3)
#
# tvi950 sets duplex (send) edit keys (\El) when entering vi
#        sets local (no send) edit keys (\Ek) when exiting vi
#
v5|tvi950|950|televideo950:if=/usr/lib/tabset/stdcrt:\
	:is=\EDF\EC\Ed\EG0\Eg\Er\EO\E\047\E(\E%\Ew\EX\Ee ^O\
	\Ek\E016\E004\Ex0\200\200\Ex1\200\200\Ex2\200\200\
	\Ex3\200\200\Ex4\r\200\E3:\
	:al=\EE:am:bs:bt=\EI:cd=\Ey:ce=\Et:cl=\E*:cm=\E=%+ %+ :\
	:co#80:dc=\EW:dl=\ER:do=^V:ei=\Er:ho=^^:im=\Eq:k0=^A0\r:\
	:k1=^A@\r:k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:k6=^AE\r:\
	:k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=^V:kh=^^:kl=^H:\
	:ko=ic\054dc\054al\054dl\054cl\054bt\054ce\054cd:kr=^L:\
	:ku=^K:li#24:ma=^Vj^Kk^Hh^Ll^^H:mi:ms:nd=^L:pt:se=\EG0:\
	:sg#1:so=\EG4:sr=\Ej:ue=\EG0:ug#1:up=^K:us=\EG8:\
	:vb=\Eb\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Ed:\
	:ve=\Ek:vs=\El:xn:
#
# is for 950 with two pages adds the following:
#	set 48 line page (\E\\2)
#	place cursor at page 0, line 24, column 1 (\E-07 )
#
# two page 950 adds the following:
#	when entering ex, set 24 line page (\E\\1)
#	when exiting ex, reset 48 line page (\E\\2)
#			 place cursor at 0,24,1 (\E-07 )
#
v3|tvi9502p|9502p|televideo950 w/2 pages:\
	:is=\EDF\EC\Ed\EG0\Eg\Er\EO\E\047\E(\E%\Ew\EX\Ee ^O\
	\Ek\E016\E004\Ex0\200\200\Ex1\200\200\Ex2\200\200\
	\Ex3\200\200\Ex4\r\200\E\\2\E-07 \E3\
	:te=\E\\2\E-07 :ti=\E\\1\E-07 :tc=tvi950:
#
# is for 950 with four pages adds the following:
#	set 96 line page (\E\\3)
#	place cursor at page 0, line 24, column 1 (\E-07 )
#
# four page 950 adds the following:
#	when entering ex, set 24 line page (\E\\1)
#	when exiting ex, reset 96 line page (\E\\3)
#			 place cursor at 0,24,1 (\E-07 )
#
v4|tvi9504p|9504p|televideo950 w/4 pages:\
	:is=\EDF\EC\Ed\EG0\Eg\Er\EO\E\047\E(\E%\Ew\EX\Ee ^O\
	\Ek\E016\E004\Ex0\200\200\Ex1\200\200\Ex2\200\200\
	\Ex3\200\200\Ex4\r\200\E\\3\E-07 \E3\
	:te=\E\\3\E-07 :ti=\E\\1\E-07 :tc=tvi950:
#
# is for reverse video 950 changes the following:
#	set reverse video (\Ed)
#
# set vb accordingly (\Eb ...nulls... \Ed)
#
vr|tvi950rv|950rv|televideo950 rev video:if=/usr/lib/tabset/stdcrt:\
	:is=\EDF\EC\Eb\EG0\Eg\Er\EO\E\047\E(\E%\Ew\EX\Ee ^O\
	\Ek\E016\E004\Ex0\200\200\Ex1\200\200\Ex2\200\200\
	\Ex3\200\200\Ex4\r\200\E3:\
	:vb=\Ed\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Eb:\
	:tc=tvi950:
#
# uses the appropriate entries from 9502p and 950rv
#
v3|tvi950rv2p|950rv2p|televideo950 rev video w/2 pages:\
	:is=\EDF\EC\Eb\EG0\Eg\Er\EO\E\047\E(\E%\Ew\EX\Ee ^O\
	\Ek\E016\E004\Ex0\200\200\Ex1\200\200\Ex2\200\200\
	\Ex3\200\200\Ex4\r\200\E\\2\E-07 \E3\
	:te=\E\\2\E-07 :ti=\E\\1\E-07 :tc=tvi950rv:
#
# uses the appropriate entries from 9504p and 950rv
#
vR|tvi950rv4p|950rv4p|televideo950 rev video w/4 pages:\
	:is=\EDF\EC\Eb\EG0\Er\EO\E\047\E(\E%\Ew\EX\Ee ^O\
	\Ek\E016\E004\Ex0\200\200\Ex1\200\200\Ex2\200\200\
	\Ex3\200\200\Ex4\r\200\E\\3\E-07 \E3\
	:te=\E\\3\E-07 :ti=\E\\1\E-07 :tc=tvi950rv:
# Note two things called "teleray".  Reorder should move the common one
# to the front if you have either.  A dumb teleray with the cursor stuck 
# on the bottom and no obvious model number is probably a 3700.
y1|t3700|teleray|dumb teleray 3700:\
	:bs:cl=^L:co#80:li#24:
y3|t3800|teleray 3800 series: \
	:bs:cd=\EJ:ce=\EK:cl=^L:cm=\EY%+ %+ :co#80: \
	:do=\n:ho=\EH:li#24:ll=\EY7 :nd=\EC:pt:up=^K:
y6|t1061|t10|teleray|teleray 1061:if=/usr/lib/tabset/teleray:\
	:al=2*\EL:am:bs:cd=1\EJ:ce=\EK:cl=1^L:cm=\EY%+ %+ :co#80:\
	:dc=\EQ:dl=2*\EM:ei=:ho=\EH:ic=\EP:im=:ip=0.4*:\
	:k1=^Z1:k2=^Z2:k3=^Z3:k4=^Z4:k5=^Z5:k6=^Z6:k7=^Z7:k8=^Z8:\
	:li#24:nd=\EC:pt:se=\ER@:so= \ERD:\
	:is=\Ee\EU01^Z1\EV\EU02^Z2\EV\EU03^Z3\EV\EU04^Z4\EV\EU05^Z5\EV\EU06^Z6\EV\EU07^Z7\EV\EU08^Z8\EV\Ef:\
	:up=\EA:us=\ERH:ue=\ER@:xs:xt:sg=2:ug=1:
yf|t1061f|teleray 1061 with fast PROMs:\
	al=\EL:ip@:dl=\EM:tc=t1061:

#  ----
#  Convention: First entry is two chars, first char is manufacturer,
#  second char is canonical abbreviation for model or mode.
#  Second entry is canonical abbreviation.
#  Third entry is the one the editor will print with "set" command.
#  Last entry is verbose description.
#  Others are mnemonic synonyms for the terminal.
#
#  If you absolutely MUST check for a specific terminal (this is discouraged)
#  check for the 2nd entry (the canonical form) since all other codes are
#  subject to change.  The two letter codes are there for version 6 and are
#  EXTREMELY subject to change, or even to go away if version 6 becomes for
#  all practical purposes obsolete.
#
#  Special manufacturer codes:
#	M: Misc. (with only a few terminals)
#  	q: Homemade
#  	s: special (dialup, etc.)
#  
#  This file is to be installed with an editor script that moves the most
#  common terminals to the front of the file. If the source is not available,
#  it can be constructed by sorting
#  the above entries by the 2 char initial code.