Annotation of 42BSD/etc/termcap/termcap.src, revision 1.1.1.1

1.1       root        1: # ------------------------
                      2: #
                      3: #      Termcap source file @(#)termcap.src     1.19    (Berkeley) 5/20/83
                      4: #      Kevin Layer, Berkeley
                      5: #      Craig Leres, Berkeley
                      6: #      Mark Horton, Berkeley
                      7: #
                      8: # Please mail changes to (arpanet): termcap@berkeley
                      9: #
                     10: # This file describes capabilities of various terminals, as needed by
                     11: # software such as screen editors.  It does not attempt to describe
                     12: # printing terminals very well, nor graphics terminals.  Someday.
                     13: # See termcap(5) in the Unix Programmers Manual for documentation.
                     14: #
                     15: # Conventions: First entry is two chars, first char is manufacturer,
                     16: # second char is canonical name for model or mode.
                     17: # Third entry is the one the editor will print with "set" command.
                     18: # Last entry is verbose description.
                     19: # Others are mnemonic synonyms for the terminal.
                     20: #
                     21: # Terminal naming conventions:
                     22: # Terminal names look like <manufacturer> <model> - <modes/options>
                     23: # Certain abbreviations (e.g. c100 for concept100) are also allowed
                     24: # for upward compatibility.  The part to the left of the dash, if a
                     25: # dash is present, describes the particular hardware of the terminal.
                     26: # The part to the right can be used for flags indicating special ROM's,
                     27: # extra memory, particular terminal modes, or user preferences.
                     28: # All names are always in lower case, for consistency in typing.
                     29: #
                     30: # The following are conventionally used flags:
                     31: #      rv      Terminal in reverse video mode (black on white)
                     32: #      2p      Has two pages of memory.  Likewise 4p, 8p, etc.
                     33: #      w       Wide - in 132 column mode.
                     34: #      pp      Has a printer port which is used.
                     35: #      na      No arrow keys - termcap ignores arrow keys which are
                     36: #              actually there on the terminal, so the user can use
                     37: #              the arrow keys locally.
                     38: #  
                     39: # There are some cases where the same name is used for two different
                     40: # terminals, e.g. "teleray" or "2621" or "vt100".  In these cases,
                     41: # if a site has one of these, they should choose a local default and
                     42: # bring that terminal to the front in the reorder script.  This works
                     43: # because tgetent picks the first match in /etc/termcap.
                     44: # The list of names intentionally duplicated is:
                     45: # 2621, c108, dtc, hp2621, teleray, tvi, vt100.
                     46: #
                     47: # If you absolutely MUST check for a specific terminal (this is discouraged)
                     48: # check for the 2nd entry (the canonical form) since all other codes are
                     49: # subject to change.  The two letter codes are there for version 6 and are
                     50: # EXTREMELY subject to change, or even to go away if version 6 becomes for
                     51: # all practical purposes obsolete.  We would much rather put in special
                     52: # capabilities to describe your terminal rather than having you key on the
                     53: # name.
                     54: #
                     55: #  Special manufacturer codes:
                     56: #      A: hardcopy daisy wheel terminals
                     57: #      M: Misc. (with only a few terminals)
                     58: #      q: Homemade
                     59: #      s: special (dialup, etc.)
                     60: #  
                     61: # Comments in this file begin with # - they cannot appear in the middle
                     62: # of a termcap entry.  Individual entries are commented out by
                     63: # placing a period between the colon and the capability name.
                     64: #
                     65: #  This file is to be installed with an editor script (reorder)
                     66: #  that moves the most common terminals to the front of the file.
                     67: #  If the source is not available, it can be constructed by sorting
                     68: #  the above entries by the 2 char initial code.
                     69: # # --------------------------------
                     70: #
                     71: # A: DAISY WHEEL PRINTERS
                     72: #
                     73: # The A manufacturer represents Diablo, DTC, Xerox, Qume, and other Daisy
                     74: # wheel terminals until such time as termcap distinguishes between them
                     75: # enough to justify separate codes.
                     76: # This is an "experimental" entry for the SRI Agiles.
                     77: # It has been tried in a minimal way -- the Agile did not blow up!
                     78: # However, it has not been exhaustively tested.
                     79: # Anyone who tries it and finds it wanting should get in touch with:
                     80: #      Ralph Keirstead (ralph@sri-unix);
                     81: #      EK352; SRI International; 333 Ravenswood Avenue; Menlo Park, CA 94025
                     82: Aa|agile|agiles|sri agiles:\
                     83:        :bs:hc:os:pl:co#132:\
                     84:        :bl=^G:bc=^H:ta=^I:do=^J:nl=^J:cr=^M:kb=^H:up=\E\n:\
                     85:        :hu=\E0:hd=\E9:if=/usr/lib/tabset/std:is=\EE\EF\EJ:
                     86: A6|1620|1640|450|diablo 1620:\
                     87:        :cr=^M:do=^J:nl=^J:bl=^G:\
                     88:        :ct=\E2:st=\E1:ch=\E\t%i%.:\
                     89:        :kb=^H:le=^H:bs:co#132:ff=^L:hc:hu=\EU:hd=\ED:os:ta=^I:pt:up=\E\n:
                     90: A7|1620-m8|1640-m8|diablo 1620 w/8 column left margin:\
                     91:        :cr=^M:do=^J:nl=^J:bl=^G:co#124:is=\r        \E9:tc=1620:
                     92: # DTC 382 with VDU.  Has no cd so we fake it with ce.  Standout works but
                     93: # won't go away without dynamite.  The terminal has tabs, but I'm getting
                     94: # tired of fighting the braindamage.  If no tab is set or the terminal's
                     95: # in a bad mood, it glitches the screen around all of memory.  Note that
                     96: # return puts a blank ("a return character") in the space the cursor was
                     97: # at, so we use ^P return (and thus ^P newline for newline).  Note also
                     98: # that if you turn off pt and let Unix expand tabs, curses won't work
                     99: # (current version) because it doesn't turn off this bit, and cursor
                    100: # addressing sends a tab for row/column 9.  What a losing terminal!  I
                    101: # have been unable to get tabs set in all 96 lines - it always leaves at
                    102: # least one line with no tabs in it, and once you tab through that line,
                    103: # it completely weirds out.
                    104: Ac|dtc|ps|dtc382|382:\
                    105:        :bl=^G:do=^J:nl=^J:al=^P^Z:am:le=^H:\
                    106:        :bs:co#80:ce=^P^U:cl=20^P^]:cm=%r^P^Q%.%.:dc=^X:\
                    107:        :dl=^P^S:ei=^Pi:ho=^P^R:im=^PI:ve=^Pb:vs=^PB:pc=\177:te=20^P^]:\
                    108:        :li#24:nd=^PR:.se=^P \200:.so=^P \002^PF:us=^P \020:ue=^P \200:\
                    109:        :up=^P^L:nc:nl=\n:xr:xs:da:db:.pt:cr=^P^M:cd=^P^U^P^S^P^S:
                    110: Ad|dtc300s|300|300s|dtc 300s:\
                    111:        :ct=\E3:st=\E1:cr=^M:do=^J:nl=^J:bl=^G:\
                    112:        :kb=^h:le=^H:bs:co#132:ff=^L:hc:hu=\EH:hd=\Eh:os:ta=^I:pt:up=^Z:
                    113: Ag|gsi:\
                    114:        :le=^H:bs:co#132:hc:hd=\Eh:hu=\EH:os:ta=^I:pt:up=^Z:\
                    115:        :cr=^M:do=^J:nl=^J:bl=^G:
                    116: # This used to have :pl: - maybe they meant :pt:?
                    117: Aj|aj830|aj832|aj|anderson jacobson:\
                    118:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    119:        :le=^H:bs:hc:hd=\E9:hu=\E8:os:up=\E7:
                    120: # From cbosg!ucbvax!pur-ee!cincy!chris Thu Aug 20 09:09:18 1981
                    121: # This is incomplete, but it's a start.
                    122: An|5520|nec|spinwriter|nec 5520|:\
                    123:        :ct=\E3:st=\E1:cr=^M:do=^J:nl=^J:bl=^G:\
                    124:        :kb=^h:le=^H:bs:co#132:ff=^L:hc:hu=\E]s\E9\E]W:hd=\E]s\n\E]W:\
                    125:        :os:ta=^I:pt:up=\E9:
                    126: Aq|qume5|qume|Qume Sprint 5:\
                    127:        :ct=\E3:st=\E1:cr=^M:do=^J:nl=^J:bl=^G:\
                    128:        :kb=^h:le=^H:bs:co#80:ff=^L:hc:hu=\EH:hd=\Eh:os:ta=^I:pt:up=^Z:
                    129: # I suspect the xerox1720 is the same as the diablo 1620.
                    130: Ax|x1720|x1700|1700|x1750|xerox 1720:\
                    131:        :co#132:le=^H:bs:ff=^L:hc:os:ta=^I:pt:\
                    132:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    133:        :ct=\E2:st=\E1:
                    134: # # --------------------------------
                    135: #
                    136: # C: CONTROL DATA
                    137: #
                    138: Ca|cdc456|cdc:\
                    139:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    140:        :li#24:co#80:cl=^Y^X:nd=^L:up=^Z:le=^H:bs:\
                    141:        :cm=\E1%+ %+ :ho=^Y:al=\E\114:dl=\E\112:ce=^V:cd=^X:am:
                    142: Cc|cdc456tst:\
                    143:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    144:        :li#24:co#80:cl=^y^x:le=^H:bs:cm=\E1%+ %+ :am:
                    145: # # --------------------------------
                    146: #
                    147: # D: DATAMEDIA
                    148: #
                    149: D0|dm1520|dm1521|1521|1520|datamedia 1520:\
                    150:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    151:        :am:le=^H:bs:cd=^K:ce=^]:cl=^L:cm=^^%r%+ %+ :co#80:ho=^Y:\
                    152:        :ku=^_:kd=^J:kl=^H:kr=^\:kh=^Y:\
                    153:        :li#24:nd=^\:up=^_:xn:ma=^\ ^_^P^YH:ta=^I:pt:
                    154: D2|dm2500|datamedia2500|2500|datamedia 2500:\
                    155:        :do=^J:nl=^J:bl=^G:\
                    156:        :al=15^P\n^X^]^X^]:le=^H:bs:ce=^W:cl=^^^^\177:cm=^L%r%n%.%.:co#80:\
                    157:        :dc=10*^P\b^X^]:dl=10*^P^Z^X^]:dm=^P:ed=^X^]:ei=10\377\377^X^]:ho=^B:\
                    158:        :ic=10*^P^\^X^]:im=^P:li#24:nc:nd=^\:pc=\377:so@=^N:se=^X^]:up=^Z:
                    159: D3|dm3025|datamedia 3025a:\
                    160:        :MT:is=\EQ\EU\EV:\
                    161:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    162:        :al=130\EP\n\EQ:le=^H:bs:cd=2\EJ:ce=\EK:cl=2\EM:cm=\EY%r%+ %+ :\
                    163:        :co#80:dc=6\b:dl=130\EP\EA\EQ:dm=\EP:ed=\EQ:ei=\EQ:ho=\EH:\
                    164:        :im=\EP:ip=6:li#24:nd=\EC:ta=^I:pt:so=\EO1:se=\EO0:up=\EA:
                    165: D4|3045|dm3045|datamedia 3045a:\
                    166:        :is=\EU\EV:\
                    167:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    168:        :am:le=^H:bs:cd=2\EJ:ce=\EK:cl=2\EM:cm=\EY%r%+ %+ :co#80:\
                    169:        :dc=6\EB:dm=:ed=:ei=\EP:ho=\EH:ic=:im=\EP:ip=6:\
                    170:        :k0=\Ey\r:k1=\Ep\r:k2=\Eq\r:k3=\Er\r:k4=\Es\r:\
                    171:        :k5=\Et\r:k6=\Eu\r:k7=\Ev\r:k8=\Ew\r:k9=\Ex\r:\
                    172:        :kh=\EH:ku=\EA:kr=\EC:li#24:nd=\EC:pc=\177:ta=^I:pt:eo:ul:up=\EA:xn:
                    173: # dt80/1 is a vt100 lookalike, but it doesn't seem to need any padding.
                    174: D5|dt80|dmdt80|dm80|datamedia dt80/1:\
                    175:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    176:        :cd=\E[J:ce=\E[K:cl=\E[2J\E[H:cm=%i\E[%d;%dH:ho=\E[H:nd=\E[C:sr=\EM:\
                    177:        :so=\E[7m:se=\E[m:up=\E[A:us=\E[4m:ue=\E[m:tc=vt100:
                    178: # except in 132 column mode, where it needs a little padding.
                    179: # This is still less padding than the vt100, and you can always turn on
                    180: # the ^S/^Q handshaking, so you can use vt100 flavors for things like
                    181: # reverse video.
                    182: D6|dt80w|dmdt80w|dm80w|datamedia dt80/1 in 132 char mode:\
                    183:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    184:        :cd=20\E[0J:co#132:ce=20\E[0K:\
                    185:        :cm=5\E[%i%d;%dH:cl=50\E[H\E[2J:up=5\E[A:tc=dmdt80:
                    186: # # --------------------------------
                    187: #
                    188: # H: HAZELTINE
                    189: #
                    190: # Since nd is blank, when you want to erase something you
                    191: # are out of luck.  You will have to do ^L's a lot to
                    192: # redraw the screen.  h1000 is untested.  It doesn't work in
                    193: # vi - this terminal is too dumb for even vi.  (The code is
                    194: # there but it isn't debugged for this case.)
                    195: H1|h1000|hazeltine 1000:\
                    196:        :le=^H:bs:ho=^K:cl=^L:nd= :co#80:li#12:\
                    197:        :cr=^M:do=^J:nl=^J:bl=^G:
                    198: # Note: the h1552 appears to be the first Hazeltine terminal which
                    199: # is not braindamaged.  It has tildes and backprimes and everything!
                    200: # Be sure the auto lf/cr switch is set to cr.
                    201: H2|h1552|hazeltine 1552:\
                    202:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    203:        :al=\EE:dl=\EO:k1=\EP:l1=blue:k2=\EQ:l2=red:k3=\ER:l3=green:tc=vt52:
                    204: H3|h1552rv|hazeltine 1552 reverse video:\
                    205:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    206:        :so=\ES:se=\ET:tc=h1552:
                    207: # From cbosg!ucbvax!pur-ee!cincy!chris Thu Aug 20 09:09:18 1981
                    208: H4|h1420|hazeltine 1420:\
                    209:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    210:        :le=^H:bs:am:li#24:co#80:al=\E^Z:dl=\E^S:cd=\E^X:cl=\E\034:\
                    211:        :up=\E^L:nd=^P:ce=\E^O:ta=^N:cm=\E^Q%r%.%+ :so=\E\037:se=\E^Y:
                    212: H5|h1500|hazeltine 1500:\
                    213:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    214:        :al=40~^Z:am:le=^H:bs:cd=10~^X:ce=~^O:cl=~^\:cm=~^Q%r%.%.:co#80:\
                    215:        :dl=40~^S:do=~^K:li#24:nd=^P:.se=~^_:.so=~^Y:up=~^L:
                    216: # h1510 assumed to be in sane escape mode.  Else use h1500.
                    217: H6|h1510|hazeltine 1510:\
                    218:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    219:        :al=\E^Z:am:le=^H:bs:cd=\E^X:ce=\E^O:cl=\E^\:cm=\E^Q%r%.%.:co#80:\
                    220:        :dl=\E^S:do=\E^K:li#24:nd=^P:.se=\E^_:.so=\E^Y:up=\E^L:
                    221: H8|h1520|hazeltine 1520:\
                    222:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    223:        :al=~^Z:am:le=^H:bs:cd=~^X:ce=~^O:cl=~\034:cm=~^Q%r%.%.\200:co#80:\
                    224:        :dl=~^S:do=~^K:hz:li#24:nd=^P:se=~^Y:so=~\037:up=~^L:ho=~^R:
                    225: # Note: h2000 won't work well because of a clash between upper case and ~'s.
                    226: H7|h2000|hazeltine 2000:\
                    227:        :do=^J:nl=^J:bl=^G:\
                    228:        :al=6~^z:am:le=^H:bs:cl=6~^\:cm=~^q%r%.%.:co#74:\
                    229:        :dl=6~^s:ho=~^r:li#27:nc:pc=\177:
                    230: # Hazeltine esprit entries from Univ of Utah  Tue Feb  1 06:39:37 1983
                    231: # J.Lepreau, lepreau@utah-cs, harpo!utah-cs!lepreau
                    232: HE|esprit|hazeltine esprit:\
                    233:        :al=40\E^Z:bs:cd=5\E^X:ce=\E^O:cl=\E^\:cm=\E^Q%r%>^^ %+`%+`:co#80:\
                    234:        :dl=40\E^S:do=\E^K:ho=\E^R:li#24:nd=^P:se=\E^Y:so=\E^_:up=\E^L:
                    235: HF|esprit-am|hazeltine esprit auto-margin:\
                    236:        :am:tc=esprit:
                    237: # # --------------------------------
                    238: #
                    239: # I: IBM, INTERACTIVE SYSTEMS, and INTECOLOR
                    240: #
                    241: # Some of these should go in the misc category, IBM, ISC, and ISC can't
                    242: # all have I.  I will wait to see who comes out with more terminals.
                    243: # These compucolors appear similar, but they at least have different
                    244: # sized screens.  I don't know what's going on here.
                    245: I8|8001|ISC8001|compucolor|intecolor:\
                    246:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    247:        :al=\EU:am:le=^Z:bc=^Z:cl=3*^L:cm=^C%r%.%.:co#80:cd=\EQ:dm=\EQ:ed=\EF:\
                    248:        :dc=\177:dl=\EV:ei=\EF:im=\EQ:li#40:nd=1^Y:ta=8\t:up=^\:ho=1^H:pc=^@:
                    249: IG|compucolor2|compucolorII:\
                    250:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    251:        :ta=^I:pt:am:cm=%r^C%.%.:le=^Z:bc=^Z:li#32:co#64:\
                    252:        :cl=^L:ho=^H:nd=^Y:up=^\:
                    253: # From cithep!eric  Wed Sep 16 08:06:44 1981
                    254: It|intext|Interactive Systems Corporation modified owl 1200:\
                    255:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    256:        :al=5.5*\020:am:le=^_:bc=^_:le=^H:bs:bt=^Y:cd=5.5*\026J:ce=^K\160^R:\
                    257:        :cl=132\014:cm=\017%+ %+ :co#80:dc=5.5*\022:dl=5.5*\021:\
                    258:        :ei=\026\074:im=\026\073:ip=5.5*:li#24:nd=\036:ta=^I:pt:up=\034:\
                    259:        :se=^V# :sg#1:so=^V$,:ma=^K^P^R^L^L :\
                    260:        :kl=^_:kd=^J:kr=^^:ku=\034:kb=^H:kh=^Z:\
                    261:        :k1=^VA\r:k2=^VB\r:k3=^VC\r:k4=^VD\r:k5=^VE\r:\
                    262:        :k6=^VF\r:k7=^VG\r:k8=^VH\r:k9=^VI\r:k0=^VJ\r:
                    263: I9|ibm|ibm3101|3101|i3101|IBM 3101-10:\
                    264:        :cr=^M:do=^J:nl=^J:bl=^G:ct=\EH:st=\E0:\
                    265:        :am:le=^H:bs:cl=\EK:li#24:co#80:nd=\EC:up=\EA:cd=\EJ:ce=\EI:\
                    266:        :kd=\EB:kl=\ED:kr=\EC:ku=\EA:ho=\EH:cm=\EY%+\40%+\40:ta=^I:pt:
                    267: # # --------------------------------
                    268: #
                    269: # M: MISCELLANEOUS TERMINALS
                    270: #
                    271: # The tab 132 uses xon/xoff, so no padding needed.
                    272: # ks/ke have nothing to do with arrow keys.
                    273: # is sets 80 col mode, normal video, autowrap on (for am).
                    274: # Seems to be no way to get rid of status line.
                    275: M0|abm80|amtek business machines 80:\
                    276:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    277:        :al=\E^Z:am:le=^H:bs:cd=\E^X:ce=\E^O:cl=\E^\:cm=\E^Q%r%+ %+ :co#80:\
                    278:        :dl=\E^S:do=\E^K:li#24:nd=^P:.so=\E^_:.se=\E^Y:up=\E^L:\
                    279:        :bw:bt=^T:ho=\E^R:
                    280: M1|tab132|tab|tab132/15|tab 132/15:\
                    281:        :is=\E[?7h\E[?3l\E[?5l:dN@:ks@:ke@:\
                    282:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    283:        :da:db:al=\E[L:dl=\E[M:dc=\E[P:ei=\E[4l:im=\E[4h:cm=\E[%i%d;%dH:\
                    284:        :ku=\E[A:kd=\E[B:kl=\E[D:tc=vt100:
                    285: M2|tab132w:\
                    286:        :co#132:is=\E[?7h\E[?3h\E[?5l:tc=tab132:
                    287: M3|tab132rv:\
                    288:        :is=\E[?7h\E[?3l\E[?5h:tc=tab132:
                    289: M4|tab132wrv:\
                    290:        :is=\E[?7h\E[?3h\E[?5h:tc=tab132w:
                    291: # This used to say "de#001202" which presumably refers to the stty bits
                    292: # that need to be set for some version of Unix.  We need the real delay
                    293: # requirements in MS.
                    294: M5|mw2|Multiwriter 2:\
                    295:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    296:        :co#132:hc:os:
                    297: M6|trs80|trs-80|radio shack trs-80 Model I:\
                    298:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    299:        :am:le=^H:bs:co#64:li#16:
                    300: M7|d800|Direct 800/A:\
                    301:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    302:        :co#80:li#24:am:cl=\E[1;1H\E[2J:le=^H:bs:cm=\E[%i%d;%dH:\
                    303:        :nd=\E[C:up=\E[A:ce=\E[K:cd=\E[J:\
                    304:        :so=\E[7m:se=\E[0m:us=\E[4m:ue=\E[0m:xs:vs=\E[>12l:ve=\E[>12h:\
                    305:        :sf=\ED:sr=\EM:da:db:as=\E[1m:ae=\E[0m:ms:ta=^I:pt:\
                    306:        :kl=\E[D:kr=\E[C:ku=\E[A:kd=\E[B:\
                    307:        :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:\
                    308:        :k5=\EOT:k6=\EOU:k7=\EOV:k8=\EOW:
                    309: M8|vc404|volker-craig 404:\
                    310:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    311:        :am:le=^H:bs:cd=40^W:ce=20^V:cl=40^X:cm=^P%+ %+ :co#80:ho=40^Y:\
                    312:        :kd=^J:kl=^H:kr=^U:ku=^Z:li#24:ma=^Z^P^U :nd=^U:up=^Z:
                    313: M9|vc404-s|volker-craig 404 w/standout mode:\
                    314:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    315:        :se=^O:so=^N:tc=vc404:
                    316: MA|vc404-na|volker-craig 404 w/no arrow keys:\
                    317:        :ma@:kr@:ku@:tc=vc404:
                    318: MB|vc404-s-na|volker-craig 404 w/standout mode and no arrow keys:\
                    319:        :se=^O:so=^N:tc=vc404na:
                    320: # missing in vc303a and vc303 descriptions:  they scroll 2 lines at a time
                    321: MC|vc303a|vc403a|volker-craig 303a:\
                    322:        :cr=^M:do=^J:bl=^G:\
                    323:        :am:le=^H:bs:ce=20^V:cl=40^X:co#80:ho=40^Y:kd=^J:kl=^H::kr=^U:\
                    324:        :ku=^Z:li#24:ll=^P^@W:nd=^U:ns:up=^Z:
                    325: MD|vc303|vc103|vc203|volker-craig 303:\
                    326:        :cr=^M:do=^J:bl=^G:\
                    327:        :am:le=^H:bs:cl=40^L:co#80:ho=40^K:kd=^J:kl=^H:kr=^I:ku=^N:li#24:\
                    328:        :ll=^O\200W:nd=^I:ns:up=^N:
                    329: # Test version for Falco ts-1. See "arpavax.hickman@ucb" for info
                    330: ME|falco|ts1|ts-1|falco ts-1:is=\Eu\E3:\
                    331:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    332:        :al=\EE:am:bs:ce=\ET\EG0^h:cm=\E=%+ %+ :cl=\E*:cd=\EY:co#80:dc=\EW:\
                    333:        :dl=\ER:ei=\Er:ho=^^:im=\Eq:k0=^A0\r:kd=^J:kl=^H:pt:\
                    334:        :kr=^L:ku=^K:li#24:nd=^L:se=\Eg0:so=\Eg1:up=^K:us=\Eg1:ue=\Eg0:
                    335: MF|falco-p|falco ts-1sp|falco with paging option:\
                    336:        :is=\EZ\E3\E_c:\
                    337:        :al=\EE:am:bs:ce=\ET\EG0^H\Eg0:cl=\E*:cd=\EY:co#80:dc=\EW:\
                    338:        :dl=\ER:kd=\E[B:kl=\E[D:ei=\Er:im=\Eq:pt:db:\
                    339:        :kr=\E[C:ku=\E[A:li#24:nd=\E[C:se=\Eg0:so=\Eg4:\
                    340:        :up=\E[A:us=\Eg1:ti=\E_d:te=\E_b:\
                    341:        :ue=\Eg0:do=\E[B:cm=\E=%+ %+ :ms:ul:kh=\E[H:da:mi:bt=\EI:
                    342: #NOTE: bg can scroll, it just would rather not (ns) - rwells 3/13/81.
                    343: # (Shouldn't you take out ns and put in an nl instead? - mrh)
                    344: MG|bg|bitgraph|BBN BitGraph terminal:\
                    345:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    346:        :al=2*\E[L:bs:cd=150\E[J:ce=2\E[K:cl=150\E[H\E[J:cm=%i\E[%d;%dH:co#85:\
                    347:        :dl=2*\E[M:k0=\EP:k1=\EQ:k2=\ER:k3=\ES:kd=\EB:ke=\E>:kl=\ED:kr=\EC:\
                    348:        :ks=\E=:ku=\EA:li#64:nd=\E[C:ns:pt:se=\E[0m:so=\E[7m:up=\E[A:sf=280\n:
                    349: MH|d132|datagraphix|datagraphix 132a:\
                    350:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    351:        :co#80:li#30:cl=^l:ho=\Et:da:db:sf=\Ev:sr=\Ew:\
                    352:        :up=\Ek:nd=\El:vs=\ex:ve=\Em\En:\
                    353:        :al=\E3:ic=\E5:dc=\E6:in:ic=\E5:
                    354: MI|soroc|Soroc 120:\
                    355:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    356:        :cd=\EY:ce=\ET:cl=2\E*:ma=^K^P^R^L^L :\
                    357:        :kl=^H:ku=^K:kr=^L:kd=^J:tc=adm3a:
                    358: # tec is untested, and taken from CB/Unix virtual terminal driver.
                    359: # Upper case terminal, uses lower case for control sequences!!!
                    360: # The driver shows the C ~ operator used on CM coordinates.
                    361: # Without the terminal in front of me, I can't figure out what's
                    362: # going on, so I've dotted out the cm.  Note there is no ~ in tgoto.
                    363: MJ|tec400|tec scope:\
                    364:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    365:        :.cm=l%r%.%.:up=x:do=h:nd=g:le=w:ho=i:so={:se=|:sg#1:\
                    366:        :cl=f:al=e:dl=u:ic=d:dc=t:ce=c:cd=s:
                    367: # From ucbvax!geoff Mon Sep 21 21:15:45 1981 
                    368: # This entry has been tested.
                    369: MK|tec500|tec 500:\
                    370:        :cr=^M:do=^J:nl=^J:bl=^G:am:le=^H:bs:cm=\E=%+ %+ :cl=20^Z:\
                    371:        :co#80:ho=^^:li#24:nd=^L:up=^K:so=^]:se=^\:
                    372: # I would appreciate more information on this terminal, such as the
                    373: # manufacturer and the model number.  There is too many tecs in here.
                    374: ML|tec:\
                    375:        :li#24:co#80:cl=^l:up=^k:nd=\037:am:le=^H:bs:ho=\036:ma=^K^P^_ :\
                    376:        :cr=^M:do=^J:nl=^J:bl=^G:
                    377: MM|teletec|Teletec Datascreen:\
                    378:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    379:        :am:le=^H:bs:co#80:cl=^l:ho=^^:li#24:nd=^_:up=^k:
                    380: # From cbosg!ucbvax!SRC:george Fri Sep 11 22:38:32 1981
                    381: MN|ampex|d80|dialogue|dialogue80|ampex dialogue 80:\
                    382:        :ct=\E3:st=\E1:cr=^M:do=^J:nl=^J:bl=^G:\
                    383:        :is=\EA:us=\El:ue=\Em:\
                    384:        :am:le=^H:bs:ta=^I:pt:cl=75\E*:cm=\E=%+ %+ :\
                    385:        :al=5*\EE:bt=\EI:ic=\EQ:im=:ei=:dl=5*\ER:dc=\EW:\
                    386:        :ce=\Et:cd=\Ey:so=\Ej:se=\Ek:li#24:co#80:nd=^L:up=^K:
                    387: MO|digilog|333|digilog 333:\
                    388:        :le=^H:bs:co#80:ce=\030:ho=^n:li#16:nd=^i:up=^o:\
                    389:        :cr=^M:do=^J:nl=^J:bl=^G:
                    390: MP|ep48|ep4080|execuport 4080:\
                    391:        :am:le=^H:bs:os:co#80:hu=\036:hd=\034:\
                    392:        :cr=^M:do=^J:nl=^J:bl=^G:
                    393: MQ|ep40|ep4000|execuport 4000:\
                    394:        :am:le=^H:bs:os:co#136:hu=\036:hd=\034:\
                    395:        :cr=^M:do=^J:nl=^J:bl=^G:
                    396: MR|terminet1200|terminet300|tn1200|tn300|terminet|GE terminet 1200:\
                    397:        :co#120:hc:os:\
                    398:        :cr=^M:do=^J:nl=^J:bl=^G:
                    399: # AED 512
                    400: # by giles Billingsley (ucbcad.gilesb@berkeley)
                    401: # rewritten 8/82 for newer AEDs and better operation of vi,etc.
                    402: MS|aed|AED|aed512|AED512|aed 512:\
                    403:        :db:co#64:li#40:cl=^L:\
                    404:        :bs:nd=\Ei0800\001:\
                    405:        :up=^K:ve=\E\E\E\E\E\E\E\072004=000200??\001:\
                    406:        :vb=\EK0001??0000K0001202080\001:\
                    407:        :us=\E\07200>8000140\001:ue=\E\07200>8000100\001:\
                    408:        :uc=\Ei???>l0800i0102\001:\
                    409:        :ti=\E\07200>8000140{<04<0??00001010L<0\072004=0002??00\001:\
                    410:        :te=\E\07200>8000100{804<0??00001000L80\072004=000200??\001:\
                    411:        :so=\E\07200>8000140[80C00\001:se=\E[00C80\001:\
                    412:        :is=\EG1MMM.`40K0001202080K8001????00^L\EC80L80{80^L\EK010100????K0601??0000c818100\EG1HHH.\07210000019A27FD006A280D002A200A52429FE8524861086118612861360N031B4C3F3F1800N041B0C1B4C38301800N001B3B313030301800N011B3B313030341800N021B3B313030381800N050800N061B3B313335301800\07211000015A58E8D5011A58F8D5111A5908D5211A5918D531160\07212000015AD5011858EAD5111858FAD52118590AD5311859160\0721300004B2071C5858E0A18658E0A0A858EA900858F268FA5278590A50A29018591A9F51865908590A90165918591A59038E58E8590A591E58F290185912071C5180A0A0A0901858EA900858F268F60\0721350000BA9472031DEA9502031DE60\E\E\E\EG1MMM.^A:
                    413: # CIT 80  - vt 100 emulator, the termcap has been modified to remove
                    414: #           the delay times and do an auto tab set rather than the indirect 
                    415: #           file used in vt100.
                    416: MT|cit80|cit 80|Citoh 80:\
                    417:        :co#80:li#24:am:cl=\E[;H\EJ:bs:cm=\E[%i%2;%2H:nd=\E[C:up=\E[A:\
                    418:        :ce=\EK:cd=\EJ:is=\E>:ks=\E[?1h\E=:ke=\E[?1l\E>:\
                    419:        :ku=\EOA:kd=\EOB:kr=\EOC:kl=\EOD:
                    420: # AlternateCIT 101 - vt 100 emulator, the termcap has been modified to remove
                    421: #           the delay times and do an auto tab set rather than the indirect 
                    422: #           file used in vt100.
                    423: #          Uses 23 lines so can run citsys (like h19sys).
                    424: MU|citc|Citoh fast vt100:\
                    425:        :co#80:li#23:am:cl=\E[;H\E[2J:bs:cm=\E[%i%2;%2H:nd=\E[C:up=\E[A:\
                    426:        :ce=\E[K:cd=\E[J:so=\E[7m:se=\E[m:us=\E[4m:ue=\E[m:\
                    427:        :is=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h\E[3g\E[>5g:\
                    428:        :ks=\E[?1h\E=:ke=\E[?1l\E>:ku=\EOA:kd=\EOB:kr=\EOC:kl=\EOD:\
                    429:         :vb=\E[?5h\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\E[?5l:\
                    430:        :dc=\E[P:al=\E[L:im=:ei=:dl=\E[M:ic=\E[@:
                    431: MV|cita|:\
                    432:        :co#80:li#23:am:cl=\E[;H\E[2J:bs:cm=\E[%i%2;%2H:nd=\E[C:up=\E[A:\
                    433:        :ce=\E[K:cd=\E[J:so=\E[7m:se=\E[m:us=\E[4m:ue=\E[m:\
                    434:        :is=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h\E[3g\E[>5g:\
                    435:        :ks=\E[?1h\E=:ke=\E[?1l\E>:\
                    436:        :ku=\EOA:kd=\EOB:kr=\EOC:kl=\EOD:\
                    437:         :vb=\E[?5h\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\E[?5l:
                    438: MW|cit101:li#24:vb@:tc=cita
                    439: MX|cit101b:li#24:tc=cita
                    440: # Note several versions of blit.  I don't know exactly what is what
                    441: # so please send me any corrections to this -- mrh
                    442: # From research!ikeya!rob Tue Aug 31 23:41 EDT 1982
                    443: MY|blit|jerq|blit-pb|blit running teletype rom:\
                    444:        :cr=^M:do=^J:nl=^J:bl=^G:ta=^I:\
                    445:        :IC=\Ef%+ :DC=\Ee%+ :AL=\EF%+ :DL=\EE%+ :\
                    446:        :mi:dl=\EE!:ic=\Ef!:dc=\Ee!:al=\EF!:\
                    447:        :ce=\EK:cl=^L:cm=\EY%r%+ %+ :co#87:li#72:nd=\EC:\
                    448:        :up=\EA:ku=\EA:kd=\EB:kr=\EC:kl=\ED:kb=^H:am:ul:pt:eo:
                    449: MZ|cbblit|columbus enhanced tty blit:\
                    450:        :vb=\E^G:so=\EU!:se=\EV!:us=\EU":ue=\EV":cd=\EJ:\
                    451:        :im=\EQ:ei=\ER:ic@:co#88:sf=\EG:tc=blit:
                    452: Ma|oblit|ojerq|first version of blit rom:\
                    453:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    454:        :AL=\Ef%+ :DL=\Ee%+ :mi:dl=\EE:ei=\ER:im=\EQ:dc=\EO:da:db:\
                    455:        :al=\EF:cd=\EJ:ce=\EK:cl=^L:cm=\EY%r%+ %+ :co#88:li#72:nd=\EC:\
                    456:        :up=\EA:vb=\E^G:am:ul:pt:eo:
                    457: Mb|daleblit|daleterm|blit running Dale DeJager's ROM:\
                    458:        :ku=\EA:kd=\EB:kr=\EC:kl=\ED:so=\EU!:se=\EV!:us=\EU":ue=\EV":\
                    459:        :da@:db@:tc=oblit:
                    460: Mc|datapoint|dp3|dp3360|datapoint 3360:\
                    461:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    462:        :am:le=^H:bs:cd=^_:ce=^^:cl=^]^_:co#82:ho=^]:li#25:nd=^x:up=^z:
                    463: # From ucbvax!faletti (Faletti@Berkeley)
                    464: # FREEDOM 100 by Liberty Electronics USA, SF.
                    465: # :kh=^^:  left out because it precludes using change-to-alternate-file in vi.
                    466: # Basic Freedom 100 entry, works with VI at 1200 baud.
                    467: Md|f100|freedom100|freedom|freedom 100 no padding:\
                    468:        :am:bs:bw:mi:ms:pt:co#80:kn#20:li#24:\
                    469:        :ct=\E3:st=\E1:is=\Eg\Ef\r\Ed:\
                    470:        :kr=^L:\
                    471:        :bl=^G:cl=^Z:cr=^M:do=^J:ho=^^:kb=^H:kl=^H:\:kd=^V:\
                    472:        :ko=dc,al,dl,cl,bt,ce,cd:ku=^K:le=^H:nd=^L:nl=^J:\
                    473:        :ch=\E]%+ :cm=\E=%+ %+ :cv=\E[%+ :sr=\Ej:ta=^I:up=^K:\
                    474:        :al=\EE:bt=\EI:cd=\EY:ce=\ET:dc=\EW:dl=\ER:ei=\Er:im=\Eq:\
                    475:        :se=\EG0:so=\EG4:ue=\EG0:us=\EG8:as=\E$:ae=\E%:\
                    476:        :vb=\Eb\200\200\Ed:\
                    477:        :k1=^A@\r:k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:\
                    478:        :k6=^AE\r:k7=^AF\r:k8=^AG\r:k9=^AH\r:k0=^AI\r:\
                    479:        :hs:ts=\Eg\Ef:fs=\r:ds=\Eg\Ef\r:
                    480: Me|f100-rv|freedom100-rv|freedom-rv|freedom100 with reverse video at 1200:\
                    481:        :is=\Eg\Ef\r\Eb:vb=\Ed\200\200\Eb:\
                    482:        :tc=freedom100:
                    483: # VI at 9600 baud (or EMACS at 1200 -- but may be more than is needed for emacs)
                    484: Mf|f100-v|freedom100-v|freedom-v|freedom100 for 9600 vi or 1200 emacs:\
                    485:        :al=6.5*\EE:dl=11.5*\ER:\
                    486:        :vb=\Eb\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Ed:\
                    487:        :tc=freedom100:
                    488: Mx|f100-v-rv|freedom100-v-rv|freedom-v-rv|freedom100 rev. vid. for 9600 vi:\
                    489:        :al=6.5*\EE:dl=11.5*\ER:\
                    490:        :is=\Eg\Ef\r\Eb:\
                    491:        :vb=\Ed\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Eb:\
                    492:        :tc=freedom100:
                    493: # EMACS at 9600 baud -- this still needs some more work on the padding
                    494: My|f100-e|freedom100-e|freedom-e|freedom100 for 9600 emacs:\
                    495:        :al=8.5*\EE:dl=11.5*\ER:ip=6:\
                    496:        :vb=\Eb\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Ed:\
                    497:        :tc=freedom100:
                    498: Mz|f100-e-rv|freedom100-e-rv|freedom-e-rv|freedom100 rev. vid. for emacs 9600:\
                    499:        :al=8.5*\EE:dl=11.5*\ER:ip=6:\
                    500:        :is=\Eg\Ef\r\Eb:\
                    501:        :vb=\Ed\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Eb:\
                    502:        :tc=freedom100:
                    503: Mg|dg|dg6053|data general 6053:\
                    504:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    505:        :am:le=^H:bs:cm=^P%r%.%.:cl=^L:ho=^H:nd=^S:\
                    506:        :up=^W:ce=^K:co#80:li#24:
                    507: Mi|cdi|cdi1203:\
                    508:        :am:le=^H:bs:hc:os:co#80:dC#200:\
                    509:        :cr=^M:do=^J:nl=^J:bl=^G:
                    510: # ^S is an arrow key!  Boy is this guy in for a surprise on v7!
                    511: Ml|sol:\
                    512:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    513:        :am:le=^H:bs:cm=\E^1%.\E^2%.:cl=^K:ho=^N:co#64:li#16:nd=^S:up=^W:\
                    514:        :kl=^A:kr=^S:ku=^W:kd=^Z:ma=^A^H^S ^W^P^Z^N:
                    515: Mn|xl83|Cybernex XL-83:\
                    516:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    517:        :am:le=^H:bs:cd=62^P:ce=3^O:cl=62^L:cm=^W%+ %+ :co#80:ho=^K:\
                    518:        :kd=^J:kl=^H:ku=^N:li#24:up=^N:nd=^I:
                    519: Mo|omron|Omron 8025AG:\
                    520:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    521:        :al=\EL:am:le=^H:bs:cd=\ER:co#80:ce=\EK:cl=\EJ:da:db:dc=\EP:dl=\EM:\
                    522:        :ho=\EH:li#24:nd=\EC:se=\E4:sf=\ES:so=\Ef:sr=\ET:up=\EA:ve=:vs=\EN:
                    523: Mp|plasma|plasma panel:\
                    524:        :am:le=^H:bs:cl=^L:co#85:ho=^^:li#45:nd=\030:up=\026:\
                    525:        :cr=^M:do=^J:nl=^J:bl=^G:
                    526: Mq|pty|psuedo teletype:\
                    527:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    528:        :co#80:li#24:am:cl=\EJ:le=^H:bs:cm=\EG%+ %+ :nd=\EC:\
                    529:        :up=\EA:ce=\EK:cd=\EL:al=\EP:dl=\EN:ic=\EO:\
                    530:        :so=\Ea$:se=\Eb$:us=\Ea!:ue=\Eb!:
                    531: Mr|remote|virtual remote terminal:\
                    532:        :co#79:am@:nl@:tc=virtual:
                    533: Ms|swtp|ct82|southwest technical products ct82:\
                    534:        :cr=^M:do=^J:nl=^J:bl=^G:am:le=^d:bc=^d:\
                    535:        :al=^\^y:cd=^v:ce=^F:cl=^L:cm=%r^k%.%.:co#82:li#20:\
                    536:        :dl=^z:nd=^s:up=^a:so=^^^v:se=^^^F:dc=^\^h:ic=^\^x:ho=^p:\
                    537:        :ei=:sf=^n:sr=^o:ll=^c:im=:\
                    538:        :is=^\^r^^^s^^^d^]^w^i^s^^^]^^^o^]^w^r^i:
                    539: Mt|terak|Terak emulating Datamedia 1520:\
                    540:        :tc=dm1520:
                    541: Mu|sun|Sun Microsystems Workstation console:\
                    542:        :li#34:co#80:cl=^L:cm=\E[%i%d;%dH:nd=\E[C:up=\E[A:\
                    543:        :am:bs:mi:ms:\
                    544:        :ce=\E[K:cd=\E[J:so=\E[7m:se=\E[m:\
                    545:        :kd=\E[B:kl=\E[D:ku=\E[A:kr=\E[C:kh=\E[H:\
                    546:        :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:\
                    547:        :al=\E[L:dl=\E[M:im=:ei=:ic=\E[@:dc=\E[P:
                    548: Mv|virtual|VIRTUAL|cb unix virtual terminal:\
                    549:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    550:        :co#80:li#24:am:cl=\E\112:le=^H:bs:cm=\E\107%r%.%.:nd=\E\103:\
                    551:        :up=\E\101:ce=\E\113:cd=\E\114:al=\E\120:dl=\E\116:im=:ei=:ic=\E\117:\
                    552:        :da:db:kl=\E\104:kr=\E\103:ku=\E\101:kd=\E\102:kh=\E\105:\
                    553:        :so=\E\141\004:se=\E\142\004:us=\E\141\001:ue=\E\142\001:
                    554: Mw|it2|intertube2|intertec data systems intertube 2:\
                    555:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    556:        :am:bs:cl=^L:co#80:ho=^A:li#25:up=^Z:ce=\EK:\
                    557:        :cm=^N%+ %+ :ch=^P%\102%.:cv=^K%.:nd=^F:do=\n:ll=^K^X\r:\
                    558:        :so=\E0P:se=\E0@:
                    559: Mx|delta|dd5000|delta data 5000:\
                    560:        :do=^J:nl=^J:bl=^G:\
                    561:        :am:le=^H:bs:cl=^NR:cm=^O%\068%+9%\068%+9:co#80:li#27:ho=^NQ:nc:nd=^Y:\
                    562:        :up=^Z:ce=^NU:dc=^NV:ma=^K^J^Z^P^Y :xr:
                    563: My|mdl110|cybernex mdl-110:\
                    564:        :cm=^P%+ %+ :co#80:li#24:am:cl=70^X:le=^H:bs:\
                    565:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    566:        :nd=^U:up=^Z:ho=^Y:ce=145^N@^V:cd=145^NA^W:al=65^NA^N^]:\
                    567:        :dl=40^NA^N^^:im=:\
                    568:        :ei=:ic=3.5^NA^]:dm=:ed=:dc=3.5^NA^^:so=^NF:se=^NG:ta=43\t:\
                    569:        :ma=^Z^P:cd=6^N@^V
                    570: Mz|zen30|z30|zentec 30:\
                    571:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    572:        :mi:co#80:li#24:ma=^L ^R^L^K^P:ul:\
                    573:        :al=1.5*\EE:le=^H:bs:ce=1.0*\ET:cm=\E=%+ %+ :cl=\E*:\
                    574:        :ho=^^:nd=^L:se=\EG0:so=\EG6:up=^K:im=\Eq:ei=\Er:\
                    575:        :am:dc=\EW:dl=1.5*\ER:cd=\EY:
                    576: # # --------------------------------
                    577: #
                    578: # N: ANN ARBOR
                    579: #
                    580: N0|aa|annarbor|4080|ann arbor 4080:\
                    581:        :cr=^M:do=^J:nl=^J:bl=^G:pt:ct=^\^P^P:st=^]^P1:\
                    582:        :cm=^O%r%\066%.%>^S^L%+@:\
                    583:        :co#80:li#40:le=^H:bs:cl=2^L:up=^N:nd=^_:ho=^K:am:\
                    584:        :kb=^^:kd=^J:ku=^N:kl=^H:kr=^_:kh=^K:ma=^_ ^N^P:
                    585: # Needs function keys added.
                    586: # Originally from Mike O'Brien@Rand and Howard Katseff at Bell Labs.
                    587: # Highly modified 6/22 by Mike O'Brien.
                    588: # split out into several for the various screen sizes by dave-yost@rand
                    589: # Modifications made 3/82 by Mark Horton
                    590: # Modified by Tom Quarles at UCB for greater efficiency and more diversity
                    591: # status line moved to top of screen, vb removed 5/82
                    592: #
                    593: # assumes the following setup:
                    594: # A: 0000 1010  0001 0000
                    595: # B: 9600  0100 1000  0000 0000  1000 0000  17  19
                    596: # C: 56   66   0    0    9600  0110 1100
                    597: # D: 0110 1001   1   0
                    598: #
                    599: #      Briefly, the settings are for the following modes:
                    600: #         (values are for bit set/clear with * indicating our preference
                    601: #          and the value used to test these termcaps)
                    602: #      Note that many of these settings are irelevent to the termcap
                    603: #      and are just set to the default mode of the terminal as shipped
                    604: #      by the factory.
                    605: #
                    606: # A menu: 0000 1010  0001 0000
                    607: #      Block/underline cursor*
                    608: #      blinking/nonblinking cursor*
                    609: #      key click/no key click*
                    610: #      bell/no bell at column 72*
                    611: #      
                    612: #      key pad is cursor control*/key pad is numeric
                    613: #      return and line feed/return for <cr> key *
                    614: #      repeat after .5 sec*/no repeat
                    615: #      repeat at 25/15 chars per sec. *
                    616: #
                    617: #      hold data until pause pressed/process data unless pause pressed*
                    618: #      slow scroll/no slow scroll*
                    619: #      Hold in area/don't hold in area*
                    620: #      functions keys have default*/function keys disabled on powerup
                    621: #
                    622: #      show/don't show position of cursor during page transmit*
                    623: #      unused
                    624: #      unused
                    625: #      unused
                    626: #
                    627: # B menu: 9600  0100 1000  0000 0000  1000 0000  17  19
                    628: #      Baud rate (9600*)
                    629: #
                    630: #      2 bits of parity - 00=odd,01=even*,10=space,11=mark
                    631: #      1 stop bit*/2 stop bits
                    632: #      parity error detection off*/on
                    633: #
                    634: #      keyboard local/on line*
                    635: #      half/full duplex*
                    636: #      disable/do not disable keyboard after data transmission*
                    637: #
                    638: #      transmit entire page/stop transmission at cursor*
                    639: #      transfer/do not transfer protected characters*
                    640: #      transmit all characters/transmit only selected characters*
                    641: #      transmit all selected areas/transmit only 1 selected area*
                    642: #
                    643: #      transmit/do not transmit line seperators to host*
                    644: #      transmit/do not transmit page tab stops tabs to host*
                    645: #      transmit/do not transmit column tab stop tabs to host*
                    646: #      transmit/do not transmit graphics control (underline,inverse..)*
                    647: #
                    648: #      enable*/disable auto XON/XOFF control
                    649: #      require/do not require receipt of a DC1 from host after each LF*
                    650: #      pause key acts as a meta key/pause key is pause*
                    651: #      unused
                    652: #
                    653: #      unused
                    654: #      unused
                    655: #      unused
                    656: #      unused
                    657: #
                    658: #      XON character (17*)
                    659: #      XOFF character (19*)
                    660: #      
                    661: # C menu: 56   66   0    0    9600  0110 1100
                    662: #      number of lines to print data on (printer) (56*)
                    663: #
                    664: #      number of lines on a sheet of paper (printer) (66*)
                    665: #
                    666: #      left margin (printer) (0*)
                    667: #
                    668: #      number of pad chars on new line to printer (0*)
                    669: #
                    670: #      printer baud rate (9600*)
                    671: #
                    672: #      printer parity: 00=odd,01=even*,10=space,11=mark
                    673: #      printer stop bits: 2*/1
                    674: #      print/do not print guarded areas*
                    675: #
                    676: #      new line is: 01=LF,10=CR,11=CRLF*
                    677: #      unused
                    678: #      unused
                    679: #
                    680: # D menu: 0110 1001   1   0
                    681: #      LF is newline/LF is down one line, same column*
                    682: #      wrap to preceeding line if move left from col 1*/don't wrap
                    683: #      wrap to next line if move right from col 80*/don't wrap
                    684: #      backspace is/is not destructive*
                    685: #
                    686: #      display*/ignore DEL character
                    687: #      display will not/will scroll*
                    688: #      page/column tab stops*
                    689: #      erase everything*/erase unprotected only
                    690: #
                    691: #      editing extent: 0=display,1=line*,2=field,3=area
                    692: #
                    693: #      unused
                    694: #      
                    695: N1|aaa-29-np|aaa-29 with no padding (for psl):\
                    696:        :al=\E[L:ce=\E[K:cl=\E[H\E[J:\
                    697:        :dc=\E[P:dl=\E[M:ic=\E[@:tc=aaa-29:
                    698: N2|aaa-unk|ann arbor ambassador (internal - don't use this directly):\
                    699:        :cr=^M:do=^J:nl=^J:bl=^G:al=3\E[L:am:le=^H:bs:\
                    700:        :cd=\E[J:ce=5\E[K:cl=156\E[H\E[J:cm=\E[%i%d;%dH:co#80:\
                    701:        :dc=4\E[P:dl=3\E[M:ho=\E[H:ic=4\E[@:\
                    702:        :md=\E[1m:mr=\E[7m:mb=\E[5m:mk=\E[8m:me=\E[m:\
                    703:        :ku=\EM:kd=\ED:kl=\E[D:kr=\E[C:kh=\E[H:ko=cl,dc,dl,ce,cd:\
                    704:        :ks=\EP`?z~[H~[[J`>z~[[J`8xz~[M`4xz~[[D`6xz~[[C`2xz~[D\E\\:\
                    705:        :ke=\EP`?y~[H~[[J`>y~[[2J`8xy~[M`4xy~[[D`6xy~[[C`2xy~[D\E\\:\
                    706:        :ch=\E[%i%d`:\
                    707:        :ul:ei=:im=:pt:bw:bt=\E[Z:\
                    708:        :mi:nd=\E[C:se=\E[m:so=\E[7m:ue=\E[m:us=\E[4m:up=\EM:
                    709: N3|aaa-18|ann arbor ambassador/18 lines:\
                    710:        :ti=\E[2J\E[18;0;0;18p:te=\E[60;0;0;18p\E[18;1H\E[J:\
                    711:        :is=\EP`+x~M\E\\\E[m\E7\E[60;0;0;18p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    712:        :li#18:tc=aaa-unk:
                    713: N4|aaa-20|ann arbor ambassador/20 lines:\
                    714:        :ti=\E[2J\E[20;0;0;20p:te=\E[60;0;0;20p\E[20;1H\E[J:\
                    715:        :is=\EP`+x~M\E\\\E[m\E7\E[60;0;0;20p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    716:        :li#20:tc=aaa-unk:
                    717: N5|aaa-22|ann arbor ambassador/22 lines:\
                    718:        :ti=\E[2J\E[22;0;0;22p:te=\E[60;0;0;22p\E[22;1H\E[J:\
                    719:        :is=\EP`+x~M\E\\\E[m\E7\E[60;0;0;22p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    720:        :li#22:tc=aaa-unk:
                    721: N6|aaa-24|ann arbor ambassador/24 lines:\
                    722:        :ti=\E[2J\E[24;0;0;24p:te=\E[60;0;0;24p\E[24;1H\E[J:\
                    723:        :is=\EP`+x~M\E\\\E[m\E7\E[60;0;0;24p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    724:        :li#24:tc=aaa-unk:
                    725: N7|aaa-26|ann arbor ambassador/26 lines:\
                    726:        :ti=\E[2J\E[26;0;0;26p:te=\E[60;0;0;26p\E[26;1H\E[J:\
                    727:        :is=\EP`+x~M\E\\\E[m\E7\E[60;0;0;26p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    728:        :li#26:tc=aaa-unk:
                    729: N8|aaa-28|ann arbor ambassador/28 lines:\
                    730:        :ti=\E[2J\E[28;0;0;28p:te=\E[60;0;0;28p\E[28;1H\E[J:\
                    731:        :is=\EP`+x~M\E\\\E[m\E7\E[60;0;0;28p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    732:        :li#28:tc=aaa-unk:
                    733: N9|aaa|ambassador|aaa-30|ann arbor ambassador/30 lines:\
                    734:        :ti=\E[2J\E[30;0;0;30p:te=\E[60;0;0;30p\E[30;1H\E[J:\
                    735:        :is=\EP`+x~M\E\\\E[m\E7\E[60;0;0;30p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    736:        :li#30:tc=aaa-unk:
                    737: NA|aaa-36|ann arbor ambassador/36 lines:\
                    738:        :ti=\E[2J\E[36;0;0;36p:te=\E[60;0;0;36p\E[36;1H\E[J:\
                    739:        :is=\EP`+x~M\E\\\E[m\E7\E[60;0;0;36p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    740:        :li#36:tc=aaa-unk:
                    741: NB|aaa-40|ann arbor ambassador/40 lines:\
                    742:        :ti=\E[2J\E[40;0;0;40p:te=\E[60;0;0;40p\E[40;1H\E[J:\
                    743:        :is=\EP`+x~M\E\\\E[m\E7\E[60;0;0;40p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    744:        :li#40:tc=aaa-unk:
                    745: NC|aaa-48|ann arbor ambassador/48 lines:\
                    746:        :ti=\E[2J\E[48;0;0;48p:te=\E[60;0;0;48p\E[48;1H\E[J:\
                    747:        :is=\EP`+x~M\E\\\E[m\E7\E[60;0;0;48p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    748:        :li#48:tc=aaa-unk:
                    749: ND|aaa-60|ann arbor ambassador/60 lines:\
                    750:        :ti=\E[2J\E[60;0;0;60p:te=\E[60;0;0;60p\E[60;1H\E[J:\
                    751:        :is=\EP`+x~M\E\\\E[m\E7\E[60;0;0;60p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    752:        :li#60:tc=aaa-unk:
                    753: NE|aaa-unk-s|ann arbor ambassador unknown with/status:\
                    754:        :hs:es:i2=\E7\E[>51h\E[H\E[2K\E[>51l\E8:\
                    755:        :ts=\E7\E[>51h\E[H\E[2K\E[%i%d`:fs=\E[>51l\E8:\
                    756:        :ds=\E7\E[>51h\E[H\E[2K\E[>51l\E8:\
                    757:        :tc=aaa-unk:
                    758: NF|aaa-18-s|ann arbor ambassador/18 lines + status line:\
                    759:        :ti=\E[2J\E[18;1;0;18p:\
                    760:        :te=\E[60;1;0;18p\E[17;1H\E[J:\
                    761:        :is=\EP`+x~M\E\\\E[m\E7\E[60;1;0;18p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    762:        :li#17:tc=aaa-unk-s:
                    763: NG|aaa-20-s|ann arbor ambassador/20 lines + status line:\
                    764:        :ti=\E[2J\E[20;1;0;20p:\
                    765:        :te=\E[60;1;0;20p\E[19;1H\E[J:\
                    766:        :is=\EP`+x~M\E\\\E[m\E7\E[60;1;0;20p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    767:        :li#19:tc=aaa-unk-s:
                    768: NH|aaa-22-s|ann arbor ambassador/22 lines + status line:\
                    769:        :ti=\E[2J\E[22;1;0;22p:\
                    770:        :te=\E[60;1;0;22p\E[21;1H\E[J:\
                    771:        :is=\EP`+x~M\E\\\E[m\E7\E[60;1;0;22p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    772:        :li#21:tc=aaa-unk-s:
                    773: NI|aaa-24-s|ann arbor ambassador/24 lines + status line:\
                    774:        :ti=\E[2J\E[24;1;0;24p:\
                    775:        :te=\E[60;1;0;24p\E[23;1H\E[J:\
                    776:        :is=\EP`+x~M\E\\\E[m\E7\E[60;1;0;24p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    777:        :li#23:tc=aaa-unk-s:
                    778: NJ|aaa-26-s|ann arbor ambassador/26 lines + status line:\
                    779:        :ti=\E[2J\E[26;1;0;26p:\
                    780:        :te=\E[60;1;0;26p\E[25;1H\E[J:\
                    781:        :is=\EP`+x~M\E\\\E[m\E7\E[60;1;0;26p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    782:        :li#25:tc=aaa-unk-s:
                    783: NK|aaa-28-s|ann arbor ambassador/28 lines + status line:\
                    784:        :ti=\E[2J\E[28;1;0;28p:\
                    785:        :te=\E[60;1;0;28p\E[27;1H\E[J:\
                    786:        :is=\EP`+x~M\E\\\E[m\E7\E[60;1;0;28p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    787:        :li#27:tc=aaa-unk-s:
                    788: NL|aaa-30-s|ann arbor ambassador/30 lines + status line:\
                    789:        :ti=\E[2J\E[30;1;0;30p:\
                    790:        :te=\E[60;1;0;30p\E[29;1H\E[J:\
                    791:        :is=\EP`+x~M\E\\\E[m\E7\E[60;1;0;30p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    792:        :li#29:tc=aaa-unk-s:
                    793: NM|aaa-36-s|ann arbor ambassador/36 lines + status line:\
                    794:        :ti=\E[2J\E[36;1;0;36p:\
                    795:        :te=\E[60;1;0;36p\E[35;1H\E[J:\
                    796:        :is=\EP`+x~M\E\\\E[m\E7\E[60;1;0;36p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    797:        :li#35:tc=aaa-unk-s:
                    798: NN|aaa-40-s|ann arbor ambassador/40 lines + status line:\
                    799:        :ti=\E[2J\E[40;1;0;40p:\
                    800:        :te=\E[60;1;0;40p\E[39;1H\E[J:\
                    801:        :is=\EP`+x~M\E\\\E[m\E7\E[60;1;0;40p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    802:        :li#39:tc=aaa-unk-s:
                    803: NO|aaa-48-s|ann arbor ambassador/48 lines+sl:\
                    804:        :ti=\E[2J\E[48;1;0;48p:te=\E[60;1;0;48p\E[47;1H\E[J:\
                    805:        :is=\EP`+x~M\E\\\E[m\EP`?y~[[2J~[[H\E7\E[60;1;0;48p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    806:        :li#47:tc=aaa-unk-s:
                    807: NP|aaa-60-s|ann arbor ambassador/60 lines + status line:\
                    808:        :ti=\E[2J\E[60;1;0;60p:te=\E[60;1;0;60p\E[59;1H\E[J:\
                    809:        :is=\EP`+x~M\E\\\E[m\E7\E[60;1;0;60p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    810:        :li#59:tc=aaa-unk-s:
                    811: NQ|aaa-18-rv|ambassador/18 lines+rv:\
                    812:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    813:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    814:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;0;0;18p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    815:        :tc=aaa-18:
                    816: NR|aaa-20-rv|ambassador/20 lines+rv:\
                    817:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    818:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    819:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;0;0;20p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    820:        :tc=aaa-20:
                    821: NS|aaa-22-rv|ambassador/22 lines+rv:\
                    822:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    823:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    824:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;0;0;22p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    825:        :tc=aaa-22:
                    826: NT|aaa-24-rv|ambassador/24 lines+rv:\
                    827:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    828:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    829:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;0;0;24p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    830:        :tc=aaa-24:
                    831: NU|aaa-26-rv|ambassador/26 lines+rv:\
                    832:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    833:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    834:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;0;0;26p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    835:        :tc=aaa-26:
                    836: NV|aaa-28-rv|ambassador/28 lines+rv:\
                    837:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    838:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    839:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;0;0;28p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    840:        :tc=aaa-28:
                    841: NW|aaa-30-rv|ann arbor ambassador/30 lines in reverse video:\
                    842:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    843:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    844:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;0;0;30p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    845:        :tc=aaa-30:
                    846: NX|aaa-36-rv|ann arbor ambassador/36 lines in reverse video:\
                    847:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    848:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    849:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;0;0;36p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    850:        :tc=aaa-36:
                    851: NY|aaa-40-rv|ann arbor ambassador/40 lines in reverse video:\
                    852:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    853:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    854:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;0;0;40p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    855:        :tc=aaa-40:
                    856: NZ|aaa-48-rv|ann arbor ambassador/48 lines in reverse video:\
                    857:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    858:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    859:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;0;0;48p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    860:        :tc=aaa-48:
                    861: Na|aaa-60-rv|ann arbor ambassador/60 lines in reverse video:\
                    862:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    863:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    864:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;0;0;60p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    865:        :tc=aaa-60:
                    866: Nb|aaa-18-rv-s|aaa-18-s-rv|ambassador/18 lines+sl+rv:\
                    867:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    868:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    869:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;1;0;18p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    870:        :tc=aaa-18-s:
                    871: Nc|aaa-20-rv-s|aaa-20-s-rv|ambassador/20 lines+sl+rv:\
                    872:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    873:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    874:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;1;0;20p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    875:        :tc=aaa-20-s:
                    876: Nd|aaa-22-rv-s|aaa-22-s-rv|ambassador/22 lines+sl+rv:\
                    877:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    878:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    879:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;1;0;22p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    880:        :tc=aaa-22-s:
                    881: Ne|aaa-24-rv-s|aaa-24-s-rv|ambassador/24 lines+sl+rv:\
                    882:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    883:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    884:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;1;0;24p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    885:        :tc=aaa-24-s:
                    886: Nf|aaa-26-rv-s|aaa-26-s-rv|ambassador/26 lines+sl+rv:\
                    887:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    888:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    889:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;1;0;26p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    890:        :tc=aaa-26-s:
                    891: Ng|aaa-28-rv-s|aaa-28-s-rv|ambassador/28 lines+sl+rv:\
                    892:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    893:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    894:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;1;0;28p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    895:        :tc=aaa-28-s:
                    896: Nh|aaa-30-rv-s|aaa-30-s-rv|ambassador/30 lines+sl+rv:\
                    897:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    898:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    899:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;1;0;30p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    900:        :tc=aaa-30-s:
                    901: Ni|aaa-36-rv-s|aaa-36-s-rv|ambassador/36 lines+sl+rv:\
                    902:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    903:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    904:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;1;0;36p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    905:        :tc=aaa-36-s:
                    906: Nj|aaa-40-rv-s|aaa-40-s-rv|ambassador/40 lines+sl+rv:\
                    907:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    908:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    909:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;1;0;40p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    910:        :tc=aaa-40-s:
                    911: Nk|aaa-48-rv-s|aaa-48-s-rv|ambassador/48 lines+sl+rv:\
                    912:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    913:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    914:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;1;0;48p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    915:        :tc=aaa-48-s:
                    916: Nl|aaa-60-rv-s|aaa-60-s-rv|ambassador/60 lines+sl+rv:\
                    917:        :md=\E[1;7m:mr=\E[m:mb=\E[5;7m:mk=\E[7;8m:me=\E[7m:\
                    918:        :us=\E[4;7m:ue=\E[7m:se=\E[7m:so=\E[m:\
                    919:        :is=\EP`+x~M\E\\\E[7m\E7\E[60;1;0;60p\E[3g\E[f\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E[8a\EH\E8\E[>6h\E[1Q:\
                    920:        :tc=aaa-60-s:
                    921: Nm|aaa-24-ctxt:\
                    922:        :ti=\E[30;1H\E[K\E[24;0;0;24p:te=\E[60;1;0;24p\E[60;1H\E[K:tc=aaa-24:
                    923: Nn|aaa-24-rv-ctxt:\
                    924:        :ti=\E[30;1H\E[K\E[24;0;0;24p:te=\E[60;1;0;24p\E[60;1H\E[K:tc=aaa-24-rv:
                    925: No|aaa-30-s-ctxt:\
                    926:        :ti=\E[30;1H\E[K\E[30;1;0;30p:te=\E[60;1;0;30p\E[59;1H\E[K:tc=aaa-30-s:
                    927: Np|aaa-30-s-rv-ctxt:\
                    928:        :ti=\E[30;1H\E[K\E[30;1;0;30p:\
                    929:        :te=\E[60;1;0;30p\E[59;1H\E[K:tc=aaa-30-s-rv:
                    930: Nq|aaa-ctxt|aaa-30-ctxt:\
                    931:        :ti=\E[30;0;0;30p:te=\E[60;0;0;30p\E[60;1H\E[K:tc=aaa-30:
                    932: Nr|aaa-rv-ctxt|aaa-30-rv-ctxt:\
                    933:        :ti=\E[30;0;0;30p:te=\E[60;0;0;30p\E[60;1H\E[K:tc=aaa-30-rv:
                    934: Ns|aaa-db|ann arbor ambassador 30/destructive backspace:\
                    935:        :ti=\E[H\E[J\E[30;0;0;30p:te=\E7\E[60;0;0;30p\E8:li#30:\
                    936:        :is=\E[60;0;0;30p\E[H\E[J\E[1Q\E[m\E[20l\E[>30h:le=\E[D:bc=\E[D:bs@:\
                    937:        :tc=aaa-unk:
                    938: # 
                    939: # # --------------------------------
                    940: #
                    941: # T: TELETYPE
                    942: #
                    943: # We need descriptions for the model 40.  There are known to be at least three
                    944: # flavors of the 40, both seem more like IBM half duplex forms fillers than
                    945: # ASCII terminals.  They have lots of awful braindamage, such as printing
                    946: # a visible newline indicator after each newline.  The 40-1 is a half duplex
                    947: # terminal and is hopeless.  The 40-2 is braindamaged but has hope and is
                    948: # described here.  The 40-4 is a 3270 lookalike and beyond hope.
                    949: # The terminal has visible bell but I don't know it - it's
                    950: # null here to prevent it from showing the BL character.
                    951: # There is an \EG in nl because of a bug in vi (if stty says you have
                    952: # a "newline" style terminal (-crmode) vi figures all it needs is nl
                    953: # to get crlf, even if cr is not ^M.)
                    954: T0|40|tty40|ds40|ds40/2|ds40-2|dataspeed40|teletype dataspeed 40/2:\
                    955:        :cl=160\ER:cd=160\EJ:al=160\EL:dl=160\EM:dc=50\EP:im=:ei=:ic=50\E\^:\
                    956:        :nd=\EC:up=\E7:bs:cr=\EG:nl=\EG\EB:do=\EB:co#80:li#24:vb=:\
                    957:        :so=\E3:se=\E4:
                    958: T3|33|tty33|tty|model 33 teletype:\
                    959:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    960:        :co#72:hc:os:
                    961: T4|43|tty43|model 43 teletype:\
                    962:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    963:        :kb=^h:am:le=^H:bs:hc:os:co#132:
                    964: T7|37|tty37|model 37 teletype:\
                    965:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    966:        :le=^H:bs:hc:hu=\E8:hd=\E9:up=\E7:os:
                    967: # From jwb Wed Mar 31 13:25:09 1982 remote from ihuxp
                    968: # This entry appears to avoid the top line - I have no idea why.
                    969: TT|4424|tty4424|teletype 4424M:\
                    970:        :al=\EL:da:db:ip=2:im=:ei=:ic=\E\^:dc=\EP:dl=\EM:\
                    971:        :co#80:li#23:am:cl=\E[2;H\E[J:bs:cm=\E[%i%2;%2H\E[B:\
                    972:        :nd=\E[C:up=\E[A:pt:mi:sr=\ET:\
                    973:        :ce=\E[K:so=\E[7m:se=\E[m:us=\E[4m:ue=\E[m:\
                    974:        :is=\E[m\E[2;24r:\
                    975:        :kd=\E[B:kl=\E[D:ku=\E[A:kr=\E[C:\
                    976:        :kh=\E[H:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:
                    977: # # --------------------------------
                    978: #
                    979: # V: VISUAL
                    980: #
                    981: # The Visual 200 beeps when you type a character in insert mode.
                    982: # This is a horribly obnoxious misfeature, and some of the entries
                    983: # below try to get around the problem by ignoring the feature or
                    984: # turning it off when inputting a character.  They are said not to
                    985: # work well at 300 baud.  (You could always cut the wire to the bell!)
                    986: V2|vi200|visual 200 with function keys:\
                    987:        :cr=^M:do=^J:nl=^J:bl=^G:\
                    988:        :al=\EL:am:le=^H:bs:cd=\Ey:ce=4*\Ex:cl=\Ev:\
                    989:        :cm=\EY%+ %+ :co#80:dc=4*\EO:dl=4*\EM:ho=\EH:\
                    990:        :im=:ei=:ic=\Ei \b\Ej:\
                    991:        :is=\E3\Eb\Ej\E\\\El\EG\Ed\Ek:\
                    992:        :k0=\EP:k1=\EQ:k2=\ER:k3=\E :k4=\E!:k5=\E":k6=\E#:\
                    993:        :k7=\E$:k8=\E%:k9=\E&:kl=\ED:kr=\EC:ku=\EA:kd=\EB:kh=\EH:\
                    994:        :li#24:nd=\EC:ta=^I:pt:sr=\EI:up=\EA:vs=\Ed:ve=\Ec:
                    995: VR|vi200-rv-ic|visual 200 reverse video using insert char:\
                    996:        :ei=\Ej:im=\Ei:ic@:tc=vi200-rv:
                    997: # The older Visuals didn't come with function keys. This entry uses
                    998: # ks and ke so that the keypad keys can be used as function keys.
                    999: # If your version of vi doesn't support function keys you may want
                   1000: # to use V2.
                   1001: Vf|vi200-f|visual|visual 200 no function keys:\
                   1002:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1003:        :al=\EL:am:le=^H:bs:cd=\Ey:ce=4*\Ex:cl=\Ev:\
                   1004:        :cm=\EY%+ %+ :co#80:dc=4*\EO:dl=4*\EM:ho=\EH:\
                   1005:        :im=:ei=:ic=\Ei \b\Ej:\
                   1006:        :is=\E3\Eb\Ej\E\\\El\EG\Ed\Ek:ks=\E=:ke=\E>:\
                   1007:        :k0=\E?p:k1=\E?q:k2=\E?r:k3=\E?s:k4=\E?t:k5=\E?u:k6=\E?v:\
                   1008:        :k7=\E?w:k8=\E?x:k9=\E?y:kl=\ED:kr=\EC:ku=\EA:kd=\EB:kh=\EH:\
                   1009:        :li#24:nd=\EC:ta=^I:pt:sr=\EI:up=\EA:vs=\Ed:ve=\Ec:
                   1010: Vr|vi200-rv|visual 200 reverse video:\
                   1011:        :so=\E4:se=\E3:sr@:vs@:ve@:tc=vi200:
                   1012: Vt|vi200-ic|visual 200 using insert char:\
                   1013:        :ei=\Ej:im=\Ei:ic@:tc=vi200:
                   1014: # # --------------------------------
                   1015: #
                   1016: # X: TEKTRONIX
                   1017: #
                   1018: Xa|tek|tek4012|4012|tektronix 4012:\
                   1019:        :cr=^M:do=^J:bl=^G:\
                   1020:        :is=\E^O:le=^H:bs:cl=1000\E^L:co#75:ns:li#35:os:
                   1021: Xb|tek4013|4013|tektronix 4013:\
                   1022:        :as=\E^N:ae=\E^O:tc=4012:
                   1023: Xc|tek4014|4014|tektronix 4014:\
                   1024:        :is=\E^O\E9:co#81:li#38:dF#1000:tc=tek4012:
                   1025: Xd|tek4015|4015|tektronix 4015:\
                   1026:        :as=\E^N:ae=\E^O:tc=4014:
                   1027: Xe|tek4014-sm|4014-sm|tektronix 4014 in small font:\
                   1028:        :is=\E^O\E\072:co#121:li#58:tc=tek4014:
                   1029: Xf|tek4015-sm|4015-sm|tektronix 4015 in small font:\
                   1030:        :as=\E^N:ae=\E^O:tc=4014sm:
                   1031: # I think the 1000UP is supposed to be so expensive it never happens.
                   1032: X4|tek4023|4023|tex|tektronix 4023:\
                   1033:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1034:        :so=^_P:se=^_@:cm=\034%r%+ %+ :nd=\t:le=^H:bs:cl=4\E^L:co#80:li#24:am:\
                   1035:        :up=1000UP:vt#4:
                   1036: # Can't use cursor motion because it's memory relative, and because
                   1037: # it only works in the workspace, not the monitor.  Same for home.
                   1038: # Likewise, standout only works in the workspace.
                   1039: # 145 ms padding on al and AL taken out since it doesn't seem to be needed much.
                   1040: X5|4025|4027|4024|tek4025|tek4027|tek4024|4025cu|4027cu|tektronix 4024/4025/4027:\
                   1041:        :cr=^M:sf=^F^J:do=^F^J:bl=^G:\
                   1042:        :is=\41com 31\r\n^_sto 9 17 25 33 41 49 57 65 73\r:\
                   1043:        :ks=^_lea p4 /h/\r^_lea p8 /k/\r^_lea p6 / /\r^_lea p2 /j/\r^_lea f5 /H/\r^_lea p5 /H/\r:\
                   1044:        :ke=^_lea p2\r^_lea p4\r^_lea p6\r^_lea p8\r^_lea p5\r^_lea f5\r:\
                   1045:        :am:le=^H:bs:da:db:ta=^I:pt:li#34:co#80:cl=^_era\r\n\n:up=^K:nd=^_rig\r:\
                   1046:        :al=^_up\r^_ili\r:dl=^_dli\r^F:\
                   1047:        :dc=^_dch\r:im=^_ich\r:ei=^F^_dow\r^K:nl=^F\n:\
                   1048:        :cd=^_dli 50\r:CC=^_:\
                   1049:        :AL=^_up\r^_ili %d\r:DL=^_dli %d\r^F:\
                   1050:        :UP=^_up %d\r:DO=^_dow %d\r:LE=^_lef %d\r:RI=^_rig %d\r:
                   1051: X7|4025-17|4027-17|tek 4025 17 line window:\
                   1052:        :li#17:tc=4025:
                   1053: X8|4025-17ws|4027-17ws|tek 4025 17 line window in workspace:\
                   1054:        :is=\41com 31\r\n^_sto 9,17,25,33,41,49,57,65,73\r^_wor 17\r^_mon 17\r:\
                   1055:        :ti=^_wor h\r:te=^_mon h\r:so=^_att e\r:se=^_att s\r:tc=4025-17:
                   1056: X9|4025ex|4027ex|tek 4025 w/!:\
                   1057:        :ti=\41com 31\r:te=^_com 33\r:\
                   1058:        :is=^_com 33\r\n\41sto 9,17,25,33,41,49,57,65,73\r:tc=4025:
                   1059: # From cbosg!teklabs!davem Wed Sep 16 21:11:41 1981
                   1060: # Here's the comamnd file that I use to get rogue to work on the 4025.
                   1061: # It should work with any program using the old curses (e.g. it better
                   1062: # not try to scroll, or cursor addressing won't work.  Also, you can't
                   1063: # see the cursor.)
                   1064: # (This "learns" the arrow keys for rogue. I have adapted it for termcap - mrh)
                   1065: Xr|4025-cr|tek 4025 for curses and rogue:\
                   1066:        :is=\41com 31\r\n^_sto 9 17 25 33 41 49 57 65 73\r:\
                   1067:        :am:le=^H:bs:ta=^I:pt:li#33:co#80:cm=^_jum%i%d,%d;:up=^K:cr=^M:\
                   1068:        :do=^F^J:bl=^G:cl=^_era;:nd=^_rig;:nl=^F\n:ti=^_wor 33h:te=^_wor 0:
                   1069: # next two lines commented out since curses only allows 128 chars, sigh.
                   1070: #      :ti=^_lea p1/b/^_lea p2/j/^_lea p3/n/^_lea p4/h/^_lea p5/ /^_lea p6/l/^_lea p7/y/^_lea p8/k/^_lea p9/u/^_lea p./f/^_lea pt/`era w/13^_lea p0/s/^_wor 33h:\
                   1071: #      :te=^_lea p1^_lea p2^_lea p3^_lea p4^_lea pt^_lea p5^_lea p6^_lea p7^_lea p8^_lea p9/la/13^_lea p.^_lea p0^_wor 0:
                   1072: # The 4110 series may be a wonderful graphics series, but they make the 4025
                   1073: # look good for screen editing.  In the dialog area, you can't move the cursor
                   1074: # off the bottom line.  Out of the dialog area, ^K moves it up, but there
                   1075: # is no way to scroll.
                   1076: Xs|4112|4113|4114|tek4112|tektronix 4110 series:\
                   1077:        :le=^H:cr=^M:nl=^J:do=^J:bl=^G:bs:am:cl=\ELZ:li#34:co#80:
                   1078: Xt|4112-nd|4112 not in dialog area:up=^K:ns:tc=4112:
                   1079: Xu|4112-5|4112 in 5 line dialog area:li#5:tc=4112:
                   1080: # # --------------------------------
                   1081: #
                   1082: # a: ADDS
                   1083: #
                   1084: # From ralph@UCBARPA Tue May 17 10:49:19 1983
                   1085: #
                   1086: # Regent: lowest common denominator, works on all regents.
                   1087: a0|regent|Adds Regent Series:li#24:co#80:am:cl=^L:ll=^A:up=^Z:\
                   1088:        :bs:bc=^U:nd=^F:do=^J:bl=^G:ho=\EY  :
                   1089: # Regent 100 has a bug where if computer sends escape when user is holding
                   1090: # down shift key it gets confused, so we avoid escape.
                   1091: a1|regent100|Adds Regent 100:k0=^B1^M:k1=^B2^M:k2=^B3^M:k3=^B4^M:\
                   1092:        :k4=^B5^M:k5=^B6^M:k6=^B7^M:k7=^B8^M:\
                   1093:        :l0=F1:l1=F2:l2=F3:l3=F4:l4=F5:l5=F6:l6=F7:l7=F8:\
                   1094:        :so=\E0P:ue=\E0@:us=\E0`:se=\E0@:\
                   1095:        :cm=^K%+ %B^P%.:ug#1:sg#1:tc=regent:
                   1096: a2|regent20|Adds Regent 20:cd=\Ek:ce=\EK:cm=\EY%+ %+ :tc=regent:
                   1097: a3|regent25|Adds Regent 25:kh=^A:kl=^U:kr=^F:ku=^Z:kd=^J:tc=regent20:
                   1098: a4|regent40|Adds Regent 40:k0=^B1^M:k1=^B2^M:k2=^B3^M:k3=^B4^M:\
                   1099:        :k4=^B5^M:k5=^B6^M:k6=^B7^M:k7=^B8^M:\
                   1100:        :l0=F1:l1=F2:l2=F3:l3=F4:l4=F5:l5=F6:l6=F7:l7=F8:\
                   1101:        :al=2*\EM:dl=2*\El:\
                   1102:        :so=\E0P:ue=\E0@:us=\E0`:se=\E0@:ug#1:sg#1:tc=regent25:
                   1103: a5|regent40+|Adds Regent 40+:is=\EB:tc=regent40:
                   1104: a6|regent60|regent200|Adds Regent 60:se=\ER\E0@\EV:so=\ER\E0P\EV:dc=\EE:ei=\EF:\
                   1105:        :im=\EF:is=\EV\EB:ko=dc,im,ei:tc=regent40+:
                   1106: a7|regent60na|regent 60 w/no arrow keys:\
                   1107:        kl@:kr@:ku@:kd@:tc=regent60:
                   1108: # Note: if return acts weird on a980, check internal switch #2
                   1109: # on the top chip on the CONTROL pc board.
                   1110: ac|a980|adds consul 980:\
                   1111:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1112:        :al=13\E^N:am:le=^H:bs:cl=^L\200^K@:cm=^K%+@\E^E%2:co#80:dl=13\E^O:\
                   1113:        :k0=\E0:k1=\E1:k2=\E2:k3=\E3:k4=\E4:k5=\E5:k6=\E6:k7=\E7:k8=\E8:k9=\E9:\
                   1114:        :li#24:nd=\E^E01:so=^Y^^^N:se=^O:up=9:
                   1115: as|viewpt60|viewpoint60|addsviewpoint60|adds viewpoint60:\
                   1116:        :tc=regent40:
                   1117: # From Onyx:edward  Thu Jul  9 09:27:33 1981
                   1118: av|viewpoint|addsviewpoint|adds viewpoint:\
                   1119:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1120:        :am:le=^H:bs:li#24:co#80:cm=\EY%+ %+ :cd=\Ek:ce=\EK:nd=^F:\
                   1121:        :up=^Z:cl=^L:ll=^A:kl=^U:kr=^F:kd=^J:ku=^Z:kh=^A:\
                   1122:        :so=^N:se=^O:us=^N:ue=^O:is=^O\E0`:vs=^O\E0P:ve=^O\E0`:
                   1123: # # --------------------------------
                   1124: #
                   1125: # b: BEEHIVE
                   1126: #
                   1127: # Reports are that most of these Beehive entries (except superbee) have not been
                   1128: # tested and do not work right.  se is a trouble spot.  Be warned.
                   1129: b2|sb2|sb3|fixed superbee:\
                   1130:        :xb@:tc=superbee:
                   1131: # set tab is ^F, clear (one) tab is ^V, no way to clear all tabs.
                   1132: # good grief - does this entry make sg/ug when it doesn't have to?
                   1133: # look at those spaces in se/so.  Seems strange to me...
                   1134: bh|bh3m|beehiveIIIm:\
                   1135:        :if=/usr/lib/tabset/beehive:\
                   1136:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1137:        :al=160^S:am:le=^H:bs:cd=^R:ce=^P:cl=^E^R:\
                   1138:        :co#80:dl=350^Q:ho=^E:li#20:ll=^E^K:\
                   1139:        :nd=^L:ta=^I:pt:se= ^_:so=^] :up=^K:
                   1140: # This loses on lines > 80 chars long, use at your own risk
                   1141: bi|superbeeic|super bee with insert char:\
                   1142:        :ic=:im=\EQ:ei=\ER:tc=superbee:
                   1143: bm|microb|microbee|micro bee series:\
                   1144:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1145:        :am:le=^H:bs:cd=\EJ:ce=\EK:cl=\EE:co#80:cm=\EF%+ %+ :\
                   1146:        :k1=\Ep:k2=\Eq:k3=\Er:k4=\Es:k5=\Et:k6=\Eu:k7=\Ev:k8=\Ew:k9=\Ex:\
                   1147:        :kd=\EB:kh=\EH:kl=\ED:kr=\EC:ku=\EA:\
                   1148:        :li#24:nd=\EC:ta=^I:pt:se=\Ed@ :so= \EdP:ue=\Ed@:up=\EA:us=\Ed`:
                   1149: # Superbee - f1=escape, f2=^C.
                   1150: # Note: there are at least 3 kinds of superbees in the world.  The sb1
                   1151: # holds onto escapes and botches ^C's.  The sb2 is the best of the 3.
                   1152: # The sb3 puts garbage on the bottom of the screen when you scroll with
                   1153: # the switch in the back set to CRLF instead of AEP.  This description
                   1154: # is tested on the sb2 but should work on all with either switch setting.
                   1155: # The f1/f2 business is for the sb1 and the :xb: can be taken out for
                   1156: # the other two if you want to try to hit that tiny escape key.
                   1157: # This description is tricky: being able to use cm depends on there being
                   1158: # 2048 bytes of memory and the hairy nl string.
                   1159: bs|sb1|superbee|superb|beehive super bee:\
                   1160:        :ct=\E3:st=\E1:is=\EE:do=^J:\
                   1161:        :cr=^M:sf=\n\200\200\200\n\200\200\200\EA\EK\200\200\200\ET\ET:bl=^G:\
                   1162:        :am:le=^H:bs:cd=3\EJ:ce=3\EK:cl=3\EH\EJ:co#80:cm=\EF%r%3%3:cr=1000\r:\
                   1163:        :dC#10:da:db:xb:dc=3\EP:dl=100\EM:so=\E_1:se=\E_0:\
                   1164:        :li#25:nl=\n\200\200\200\n\200\200\200\EA\EK\200\200\200\ET\ET:\
                   1165:        :nd=\EC:ta=^I:pt:up=\EA:ho=\EH:ve=\n:\
                   1166:        :k1=\Ep:k2=\Eq:k3=\Er:k4=\Es:k5=\Et:k6=\Eu:k7=\Ev:k8=\Ew:\
                   1167:        :kd=\EB:kh=\EH:kl=\ED:kr=\EC:ku=\EA:
                   1168: # # --------------------------------
                   1169: #
                   1170: # c: CONCEPT (HUMAN DESIGNED SYSTEMS)
                   1171: #
                   1172: # From vax135!hpk  Sat Jun 27 07:41:20 1981
                   1173: # Extensive changes to c108 by arpavax:eric Feb 1982
                   1174: #
                   1175: # There seem to be a number of different versions of the C108 PROMS
                   1176: # (with bug fixes in its Z-80 program).
                   1177: # The first one that we had would lock out the keyboard of you
                   1178: # sent lots of short lines (like /usr/dict/words) at 9600 baud.
                   1179: # Try that on your C108 and see if it sends a ^S when you type it.
                   1180: # If so, you have an old version of the PROMs.
                   1181: # The old one also messed up running vi with a 132-character line-length.
                   1182: # You should configure the C108 to send ^S/^Q before running this.
                   1183: # It is much faster (at 9600 baud) than the c100 because the delays
                   1184: # are not fixed.
                   1185: # new status line display entries for c108:
                   1186: # hs - has status capability
                   1187: # es - escape sequences are OK on status line
                   1188: # i2 - second init str - setup term for status display - set programmer mode,
                   1189: #      select window 2, define window at last line of memory,
                   1190: #      set bkgnd stat mesg there, select window 0.
                   1191: # ts - to status line - select window 2, home cursor, erase to end-of-window,
                   1192: #      1/2 bright on, goto(line#0, col#?)
                   1193: # fs - from status line - 1/2 bright off, select window 0
                   1194: # ds - disable status display - set bkgnd status mesg with illegal window #
                   1195: #
                   1196: # the following two entries are for emacs -- they are just like the regular
                   1197: # entries except that they have buffer overflow control OFF
                   1198: c0|e108-8p:\
                   1199:        :i2=\EU\E z"\Ev^A\177 !p\E ;"\E z \Ev  ^A\177p\Ep\n:\
                   1200:        :te=\Ev  ^A\177p\Ep\r\n:tc=e108-4p:
                   1201: c1|e108-4p:\
                   1202:        :is=\EU\E f\Ef\E7\E5\E8\El\ENH\EK\E\200\Eo&\200\Eo\47\E\E!\E^G!\E^HA@ :\
                   1203:        :tc=c108-4p:
                   1204: c2|c108|c108-8p|concept108-8p|concept 108 w/8 pages:\
                   1205:        :i2=\EU\E z"\Ev^A\177 !p\E ;"\E z \Ev  ^A\177p\Ep\n:\
                   1206:        :te=\Ev  ^A\177p\Ep\r\n:tc=c108-4p:
                   1207: c3|c108-4p|concept108-4p|concept 108 w/4 pages:\
                   1208:        :es:hs:\
                   1209:        :ts=\E z"\E?\E^C\Ea %+ :fs=\E z :ds=\E ;\177:\
                   1210:        :i2=\EU\E z"\Ev\177 !p\E ;"\E z \Ev  \177p\Ep\n:\
                   1211:        :do=^J:bl=^G:pt:\
                   1212:        :is=\EU\E F\Ef\E7\E5\E8\El\ENH\EK\E\200\Eo&\200\Eo\47\E\E!\E^G!\E^HA@ :\
                   1213:        :ti=\EU\Ev  8p\Ep\r:te=\Ev  \177p\Ep\r\n:\
                   1214:        :al=\E^R:le=^H:bs:cd=\E^C:ce=\E^S:cl=\E?\E^E:cm=\Ea%+ %+ :co#80:\
                   1215:        :dc=\E^Q:dl=\E^B:ei=\E\200:eo:im=\E^P:li#24:mi:nd=\E=:\
                   1216:        :kb=^h:ul:up=\E;:db:us=\EG:ue=\Eg:vs=\EW:ve=\Ew:am:xn:\
                   1217:        :vb=\Ek\200\200\200\200\200\200\200\200\200\200\200\200\200\200\EK:\
                   1218:        :ks=\EX:ke=\Ex:ku=\E;:kd=\E<:kl=\E>:kr=\E=:kh=\E?:\
                   1219:        :k1=\E5:k2=\E6:k3=\E7:k4=\E8:k5=\E9:k6=\E\72:\
                   1220:        :so=\ED:se=\Ed:mh=\EE:md=\ED:mr=\ED:me=\Ee\Ed\Eg\Ec:
                   1221: c4|c108-rv-8p|concept108-rv-8p|concept 108 w/8 pages, in reverse video:\
                   1222:        :vb=\EK\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Ek:\
                   1223:        :is=\EU\E F\Ef\E7\E5\E8\El\ENH\Ek\E\200\Eo&\200\Eo\47\E\E!\E^G!\E^HA@ :\
                   1224:        :ts=\E z"\E?\E^C\EE\Ea %+ :fs=\Ee\E z :\
                   1225:        :tc=c108-8p:
                   1226: c5|c108-rv-4p|concept108-rv-4p|concept 108 w/4 pages, in reverse video:\
                   1227:        :vb=\EK\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Ek:\
                   1228:        :is=\EU\E F\Ef\E7\E5\E8\El\ENH\Ek\E\200\Eo&\200\Eo\47\E\E!\E^G!\E^HA@ :\
                   1229:        :ts=\E z"\E?\E^C\EE\Ea %+ :fs=\Ee\E z :\
                   1230:        :tc=c108-4p:
                   1231: c6|c108-na|c108-na-8p|concept108-na-8p|concept 108 w/8 pages, no arrows:\
                   1232:        :ks@:ke@:k7=\E;:k8=\E<:k9=\E=:tc=c108-8p
                   1233: c7|c108-rv-na|c108-rv-na-8p|concept 108 w/8 pages, no arrows in rev video:\
                   1234:        :ts=\E z"\E?\E^C\EE\Ea %+ :fs=\Ee\E z :\
                   1235:        :ks@:ke@:k7=\E;:k8=\E<:k9=\E=:tc=c108-rv8p
                   1236: # this needs new frotz in the cm capability for 2-char addrs when > 95....
                   1237: c8|c108-w|c108-w-8p|concept108-w-8p|concept 108 w/8 pages in wide mode:\
                   1238:        :is=\EU\E F\Ef\E7\E5\E8\El\ENH\EK\E\200\Eo&\200\Eo\47\E\E"\E^G!\E^HA@ :\
                   1239:        :ti=\EU\Ev  8^AD\Ep\r:te=\Ev  ^A0^AD\Ep\r\n:pt@:cm@:\
                   1240:        :co#132:tc=c108-8p
                   1241: cA|avt-w|HDS concept avt w/4 or 8 pages; 132 columns:\
                   1242:        :is=\E[1*q\E[2!t\E[7!t\E[=4;101;119l\E[=103;107;118;207h\E)1\E[1Q\EW\E[7!y\E[0\0720\07232!r\E[w\E2\r\n:\
                   1243:        :ch=\E[%i%3G:cm=\E[%i%2;%3H:co#132:tc=avt:
                   1244: cB|avt-8p-s|concept avt w/8 pages & 80 cols running sysline:\
                   1245:        :is=\E[1*q\E[2!t\E[7!t\E[=4;101;103;119l\E[=107;118;207h\E)1\E[1Q\EW\E[0!y\E[0\0720\07232!r\E[2!w\E[192w\E[2*w\E[!w\E[1;191w\E2\r\n:\
                   1246:        :hs:es:ts=\E[2!w\E[H\E[J\E[%i%dG:fs=\E[!w:\
                   1247:        :ds=\E[2!w\E[2J\E[!w\E[*w:te=\E[1;191w\E2\n:tc=avt:
                   1248: cC|avt-4p-s|concept avt w/4 pages & 80 cols running sysline:\
                   1249:        :is=\E[1*q\E[2!t\E[7!t\E[=4;101;103;119l\E[=107;118;207h\E)1\E[1Q\EW\E[0!y\E[0\0720\07232!r\E[2!w\E[96w\E[2*w\E[!w\E[1;95w\E2\r\n:\
                   1250:        :hs:es:ts=\E[2!w\E[H\E[J\E[%i%dG:fs=\E[!w:\
                   1251:        :ds=\E[2!w\E[2J\E[!w\E[*w:te=\E[1;95w\E2\n:tc=avt:
                   1252: cD|avt-rv|HDS concept avt w/4 or 8 pages, 80 columns, reverse video:\
                   1253:        :is=\E[1*q\E[2!t\E[7!t\E[=4;101;103;119l\E[=107;118;205;207h\E)1\E[1Q\EW\E[0!y\E[0\0720\07232!r\E[w\E2\r\n:\
                   1254:        :ve=\E[4l:vs=\E[4l:tc=avt
                   1255: cE|avt|HDS concept avt w/4 or 8 pages, 80 columns:\
                   1256:        :is=\E[1*q\E[2!t\E[7!t\E[=4;101;103;119;205l\E[=107;118;207h\E)1\E[1Q\EW\E[0!y\E[0\0720\07232!r\E[w\E2\r\n:\
                   1257:        :ae=^O:al=\E[L:am:as=^N:bs:bt=\E[Z:cd=\E[J:ce=\E[K:\
                   1258:        :ch=\E[%i%2G:cl=\E[H\E[J:cm=\E[%i%2;%2H:co#80:cv=\E[%i%2d:\
                   1259:        :dc=\E[P:dl=\E[M:do=\E[B:ei=\E1:eo:ho=\E[H:im=\E1:kb=^H:kd=\E[B:\
                   1260:        :kh=\E[H:kl=\E[D:ko=do,ho,nd,up:kr=\E[C:\
                   1261:        :ks=\E[1;4!z\E[1;8!z\E[1;10!z\E[1;11!z\E[1;12!z\E[1;14!z\E[3;7!z\E[3;9!z:\
                   1262:        :ke=\E[;4!z\E[;8!z\E[;10!z\E[;11!z\E[;12!z\E[3;14!z\E[;7!z\E[;9!z:\
                   1263:        :ku=\E[A:li#24:mi:nd=\E[C:pt:se=\E[7!{:so=\E[7m:\
                   1264:        :te=\E[w\E2\n:ti=\E[1;24w\E2\n:ue=\E[4!{:ul:\
                   1265:        :up=\E[A:us=\E[4m:ve=\E[=4;119l:vs=\E[4l\E[=119h:xn:
                   1266: #
                   1267: # Concepts have only window relative cursor addressing, not screen relative.
                   1268: # To get it to work right here, ti/te (which were invented for the concept)
                   1269: # lock you into a one page window for screen style programs.  To get out of
                   1270: # the one page window, we use a clever trick: we set the window size to zero
                   1271: # ("\Ev    " in te) which the terminal recognizes as an error and resets the
                   1272: # window to all of memory.
                   1273: #
                   1274: # Some tty drivers use cr3 for concept, others use nl3, hence dN/dC below.
                   1275: # This padding is only needed at 9600 baud.
                   1276: # 2 nulls padding on te isn't always enough.  6 works fine.  Maybe less
                   1277: # than 6 but more than 2 will work.
                   1278: ca|c100|concept|c1004p|c100-4p|concept100|concept 100:\
                   1279:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1280:        :is=\EU\Ef\E7\E5\E8\El\ENH\EK\E\200\Eo&\200\Eo\47\E\E^G\041\E^HA@ :\
                   1281:        :ti=\EU\Ev  8p\Ep\r:te=\Ev    \200\200\200\200\200\200\Ep\r\n:\
                   1282:        :al=3*\E^R:am:le=^H:bs:cd=16*\E^C:ce=16\E^U:cl=2*^L:cm=\Ea%+ %+ :co#80:\
                   1283:        :dc=16\E^Q:dl=3*\E^B:ei=\E\200:eo:im=\E^P:ip=16*:li#24:mi:nd=\E=:\
                   1284:        :ta=^I:pt:kb=^h:ta=8\t:ul:up=\E;:db:us=\EG:ue=\Eg:xn:\
                   1285:        :vb=\Ek\200\200\200\200\200\200\200\200\200\200\200\200\200\200\EK:\
                   1286:        :.dN#9:dC#9:pb#9600:vt#8:us=\EG:ue=\Eg:so=\EE\ED:se=\Ed\Ee:\
                   1287:        :mh=\EE:mr=\ED:mb=\EC:mp=\EI:mk=\EH:me=\EN\200:\
                   1288:        :ks=\EX:ke=\Ex:ku=\E;:kd=\E<:kl=\E>:kr=\E=:kh=\E?:k1=\E5:k2=\E6:k3=\E7:
                   1289: cb|c100-rv-pp|c100-rv-4p-pp|concept100-rv-pp|c100rv4ppp|w/ printer port:\
                   1290:        :is=\EU\Ef\E7\E5\E8\El\ENH\Ek\E\200\Eo&\200\Eo\041\200\EQ"\EY(^W\Eo\47\E\E^G\041\E^HA@ :\
                   1291:        :tc=c100-rv:
                   1292: cc|c100-rv-na|c100-rv-4p-na|concept100-rv-na|c100rv4pna|c100 with no arrows:\
                   1293:        :ks@:ke@:tc=c100-rv:
                   1294: cd|c100-rv|c100-rv-4p|concept100-rv|c100rv4p|c100rv|c100 rev video:\
                   1295:        :is=\EU\Ef\E7\E5\E8\El\ENH\Ek\E\200\Eo&\200\Eo\47\E\E^G\041\E^HA@ :\
                   1296:        :vb=\EK\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Ek:\
                   1297:        :so=\EE:se=\Ee:tc=c100:
                   1298: # This is useful at 1200 baud.
                   1299: ce|c100-s|concept-s|concept100-s|slow concept 100:\
                   1300:        :vb=\Ek\200\EK:ta=^I:pt:dC@:dN@:tc=c100:
                   1301: cf|c100-rv-s|concept-rv-s|concept100-rv-s|c100rvs|slow reverse concept 100:\
                   1302:        :vb=\EK\200\Ek:ta=^I:pt:dC@:dN@:tc=c100-rv:
                   1303: # # --------------------------------
                   1304: #
                   1305: # d: DEC (DIGITAL EQUIPMENT CORPORATION)
                   1306: #
                   1307: # Note that xn glitch in vt100 is not quite the same as concept, since
                   1308: # the cursor is left in a different position while in the weird state
                   1309: # (concept at beginning of next line, vt100 at end of this line) so
                   1310: # all versions of vi before 3.7 don't handle xn right on vt100.
                   1311: # I assume you have smooth scroll off or are at a slow enough baud
                   1312: # rate that it doesn't matter (1200? or less).  Also this assumes
                   1313: # that you set auto-nl to "on", if you set it off use vt100-nam below.
                   1314: #
                   1315: # Since there are two things here called vt100, the installer can make
                   1316: # a local decision to make either one standard "vt100" by including
                   1317: # it in the list of terminals in reorder, since the first vt100 in
                   1318: # /etc/termcap is the one that it will find.  The choice is between
                   1319: # nam (no automatic margins) and am (automatic margins), as determined
                   1320: # by the wrapline switch (group 3 #2).  I presonally recommend turning
                   1321: # on the bit and using vt100-am, since having stuff hammer on the right
                   1322: # margin is sort of hard to read.  However, the xn glitch does not occur
                   1323: # if you turn the bit off.
                   1324: #
                   1325: # I am unsure about the padding requirements listed here.  I have heard
                   1326: # a claim that the vt100 needs no padding.  It's possible that it needs
                   1327: # padding only if the xon/xoff switch is off.  For UNIX, this switch
                   1328: # should probably be on.
                   1329: #
                   1330: # The vt100 uses rs and rf rather than is/ct/st because the tab settings
                   1331: # are in non-volatile memory and don't need to be reset upon login.
                   1332: # You can type "reset" to get them set.
                   1333: dp|vt100-np|vt100 with no padding (for psl games):\
                   1334:        :cl=\E[H\E[2J:sr=\EM:cm=\E[%i%d;%dH:nd=\E[C:up=\E[A:\
                   1335:        :ce=\E[K:cd=\E[J:so=\E[7m:se=\E[m:us=\E[4m:ue=\E[m:\
                   1336:        :md=\E[1m:mr=\E[7m:mb=\E[5m:me=\E[m:tc=vt100:
                   1337: d0|vt100|vt100-am|dec vt100:\
                   1338:        :cr=^M:do=^J:nl=^J:bl=^G:co#80:li#24:cl=50\E[;H\E[2J:\
                   1339:        :le=^H:bs:am:cm=5\E[%i%d;%dH:nd=2\E[C:up=2\E[A:\
                   1340:        :ce=3\E[K:cd=50\E[J:so=2\E[7m:se=2\E[m:us=2\E[4m:ue=2\E[m:\
                   1341:        :md=2\E[1m:mr=2\E[7m:mb=2\E[5m:me=2\E[m:is=\E[1;24r\E[24;1H:\
                   1342:        :rf=/usr/lib/tabset/vt100:\
                   1343:        :rs=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:ks=\E[?1h\E=:ke=\E[?1l\E>:\
                   1344:        :ku=\EOA:kd=\EOB:kr=\EOC:kl=\EOD:kb=^H:\
                   1345:        :ho=\E[H:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:ta=^I:pt:sr=5\EM:vt#3:xn:\
                   1346:        :sc=\E7:rc=\E8:cs=\E[%i%d;%dr:
                   1347: d1|vt100-nam|vt100 w/no am:\
                   1348:        :am@:xn@:tc=vt100-am:
                   1349: d2|gt42|dec gt42:\
                   1350:        :cr=^M:do=^J:bl=^G:\
                   1351:        :le=^H:bs:co#72:ns:li#40:os:
                   1352: d3|vt132|vt132:\
                   1353:        :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:
                   1354: d4|gt40|dec gt40:\
                   1355:        :cr=^M:do=^J:bl=^G:\
                   1356:        :le=^H:bs:co#72:ns:li#30:os:
                   1357: d5|vt50|dec vt50:\
                   1358:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1359:        :le=^H:bs:cd=\EJ:ce=\EK:cl=\EH\EJ:co#80:li#12:nd=\EC:ta=^I:pt:up=\EA:
                   1360: d6|vt125|vt125-am|DEC vt125:\
                   1361:        :cr=^M:do=^J:nl=^J:bl=^G:co#80:li#24:cl=50\E[H\E[2J:\
                   1362:        :le=^H:am:bs:cm=5\E[%i%d;%dH:nd=2\E[C:up=2\E[A:ce=3\E[K:cd=50\E[J:\
                   1363:        :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:\
                   1364:        :me=2\E[m:is=\E[1;24r\E[24;1H\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:\
                   1365:        :ks=\E[?1h\E=:ke=\E[?1l\E>:if=/usr/lib/tabset/vt100:ku=\EOA:kd=\EOB:\
                   1366:        :kr=\EOC:kl=\EOD:kb=^H:ho=\E[H:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:ta=^I:\
                   1367:        :pt:sr=5\EM:vt#3:sc=\E7:rc=\E8:cs=\E[%i%d;%dr:
                   1368: # DEC gigi color graphic terminal , same as vt52
                   1369: d7|gigi|dec gigi terminal:\
                   1370:        :co#80:is=200\E>\E[?4l\E[?5l\E[?7h\E[?8h:\
                   1371:        :li#24:cl=100\E[;H\E[2J:bs:cm=50\E[%i%2;%2H:nd=200\E[C:up=100\E[A:\
                   1372:        :ce=120\E[K:cd=100\E[J:so=20\E[7m:se=20\E[m:us=20\E[4m:ue=20\E[m:\
                   1373:        :ks=200\E[?1h\E=:ke=200\E[?1l\E>:\
                   1374:        :ku=\EOA:kd=\EOB:kr=\EOC:kl=\EOD:\
                   1375:        :kh=\E[H:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:pt:sr=200\EM:\
                   1376:        :dC=50:dF=200:dN=50:dT=50:
                   1377: dI|dw1|decwriter I:\
                   1378:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1379:        :le=^H:bs:co#72:hc:os:
                   1380: # From [email protected] Thu May 12 14:49:02 1983
                   1381: dJ|dw3|la120|decwriter III:\
                   1382:        :bs:kb=^H:co#132:hc:os:pt:\
                   1383:        :is=\E(B\E[20l\E[w\E[1;132s\E[2g\E[9;17;25;33;41;49;57;65;73;81;89;97;105;113;121;129u\E[z\E[66t\E[1;66r\E[4g\E>\r:
                   1384: # From [email protected] Thu Sep 24 22:10:46 1981
                   1385: df|dw4|decwriter IV:\
                   1386:        :cr=^M:do=^J:nl=^J:bl=^G:le=^H:bs:co#132:hc:os:am:\
                   1387:        :ta=^I:pt:is=\Ec:k0=\EOP:k1=\EOQ:k2=\EOR:k3=\EOS:kb=^H:
                   1388: dh|vt50h|dec vt50h:\
                   1389:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1390:        :le=^H:bs:cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\EY%+ %+ :co#80:li#12:nd=\EC:\
                   1391:        :ta=^I:pt:sr=\EI:up=\EA:
                   1392: di|vt100-s|vt100 with status line at top:\
                   1393:        :li#23:i2=\E[2;24r\E[24;1H:\
                   1394:        :cm@:ho=\E[H^J:cl=50\E[;H^J\E[2J:\
                   1395:        :hs:es:ts=\E7\E[1;%dH\E[1K:fs=\E8:tc=vt100-am:
                   1396: dj|vt100-s-bot|vt100 with status line at bottom:\
                   1397:        :li#23:i2=\E[1;23r\E[23;1H:\
                   1398:        :hs:es:ts=\E7\E[24;%dH\E[1K:fs=\E8:tc=vt100-am:
                   1399: ds|vt100-nav|dec vt100 132 cols 14 lines (w/o advanced video option):\
                   1400:        :li#14:tc=vt100-w:
                   1401: dt|vt100-w|dec vt100 132 cols (w/advanced video):\
                   1402:        :co#132:li#24:rs=\E>\E[?3h\E[?4l\E[?5l\E[?8h:tc=vt100-am:
                   1403: dv|vt100-w-nam|dec vt100 132 cols (w/advanced video), no am:\
                   1404:        :co#132:li#24:rs=\E>\E[?3h\E[?4l\E[?5l\E[?8h:vt@:tc=vt100-nam:
                   1405: dw|vt52|dec vt52:\
                   1406:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1407:        :le=^H:bs:cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\EY%+ %+ :co#80:li#24:nd=\EC:\
                   1408:        :ta=^I:pt:sr=\EI:up=\EA:ku=\EA:kd=\EB:kr=\EC:kl=\ED:kb=^H:
                   1409: dx|dw2|decwriter II:\
                   1410:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1411:        :kb=^h:le=^H:bs:co#132:hc:os:
                   1412: # # --------------------------------
                   1413: #
                   1414: # h: HEWLETT PACKARD
                   1415: #
                   1416: # Note: no "ho" on HP's since that homes to top of memory, not screen.
                   1417: # Due to severe 2621 braindamage, the only way to get the arrow keys to
                   1418: # transmit anything at all is to turn on the function key labels
                   1419: # (f1-f8) with ks, and even then the poor user has to hold down shift!
                   1420: # The default 2621 turns off the labels except when it has to to enable
                   1421: # the function keys.  If your installation prefers labels on all the time,
                   1422: # or off all the time (at the "expense" of the function keys) move the
                   1423: # 2621-nl or 2621-wl labels to the front using reorder.
                   1424: # Note: there are newer ROM's for 2621's that allow you to set strap A
                   1425: # so the regular arrow keys xmit \EA, etc, as with the 2645.  However,
                   1426: # even with this strap set, the terminal stops xmitting if you reset it,
                   1427: # until you unset and reset the strap!  Since there is no way to set/unset
                   1428: # the strap with an escape sequence, we don't use it in the default.
                   1429: # If you like, you can use 2621-ba (braindamaged arrow keys).
                   1430: h1|2621-ba|2621 w/new rom, strap A set:\
                   1431:        :ks@:ke@:ku=\EA:kd=\EB:kl=\ED:kr=\EC:kh=\Eh:tc=hp2621:
                   1432: # 2621 with function labels.  Most of the time they are off,
                   1433: # but inside vi, the function key labels appear.  You have to
                   1434: # hold down shift to get them to xmit.
                   1435: h2|2621|hp2621|hp2621a|hp2621p|2621a|2621p|2621-pb|hp2621-fl|hp 2621:\
                   1436:        :is=\E&j@\r:bt=\Ei:cm=\E&a%r%dc%dY:dc=2\EP:ip=2:pb#19200:\
                   1437:        :so=\E&dD:se=\E&d@:us=\E&dD:ue=\E&d@:me=\E&d@:\
                   1438:        :kh=\Ep\r:ku=\Et\r:kl=\Eu\r:kr=\Ev\r:kd=\Ew\r:\
                   1439:        :kn#8:k1=\Ep\r:k2=\Eq\r:k3=\Er\r:k4=\Es\r:k5=\Et\r:k6=\Eu\r:k7=\Ev\r:\
                   1440:        :k8=\Ew\r:ks=\E&jB:ke=\E&j@:ta=2^I:tc=hp:
                   1441: # 2621k45: untested
                   1442: # 2622: unsure if this is quite it, have only heard about the terminal.
                   1443: h3|2621k45|hp2621k45|k45|2622|hp2622|hp 2621 with 45 keyboard:\
                   1444:        :kb=^H:ku=\EA:kd=\EB:kl=\ED:kr=\EC:kh=\Eh:ks=\E&s1A:ke=\E&s0A:tc=2621:
                   1445: h4|hp2645|2645|hp45:\
                   1446:        :mh=\E&dH:mr=\E&dB:us=\E&dD:mb=\E&dA:me=\E&d@:\
                   1447:        :ku=\EA:kd=\EB:kl=\ED:kr=\EC:kh=\Eh:ks=\E&s1A:ke=\E&s0A:tc=hp:
                   1448: h5|hp|hewlett-packard:\
                   1449:        :ct=\E3:st=\E1:cr=^M:do=^J:nl=^J:bl=^G:al=\EL:am:le=^H:bs:\
                   1450:        :cd=\EJ:ce=\EK:ch=\E&a%dC:cl=\EH\EJ:cm=6\E&a%r%dc%dY:\
                   1451:        :co#80:cv=\E&a%dY:da:db:dc=\EP:dl=\EM:ei=\ER:im=\EQ:\
                   1452:        :kb=^H:li#24:mi:nd=\EC:ta=^I:pt:se=\E&d@:so=\E&dJ:\
                   1453:        :us=\E&dD:ue=\E&d@:up=\EA:xs:vt#6:pb#9600:
                   1454: # This entry does not use any of the fancy windowing stuff of the 2621.
                   1455: # Indeed, termcap does not yet handle such stuff.  We are looking at it.
                   1456: h6|hp2626|hp2626a|hp2626p|2626|2626a|2626p|hp 2626:\
                   1457:        :dc=2\EP:ip=2:se=\E&d@:so=\E&dB:cd=500\EJ:\
                   1458:        :mr=\E&dB:us=\E&dD:mb=\E&dA:mk=\E&dS:me=\E&d@:ue=\E&d@:\
                   1459:        :kh=\Eh:ku=\EA:kl=\ED:kr=\EC:kd=\EB:ks=\E&s1A:ke=\E&s0A:\
                   1460:        :sf=\ES:ta=2^I:xs:tc=2621:
                   1461: # cD is a pain - but it only screws up at 9600 baud.
                   1462: # You should use this terminal at 4800 baud or less.
                   1463: h8|hp2648|hp2648a|2648a|2648|HP 2648a graphics terminal:\
                   1464:        :cl=50\EH\EJ:cm=20\E&a%r%dc%dY:dc=7\EP:ip=5:tc=2645:
                   1465: # This terminal should be used at 4800 baud or less.
                   1466: h9|hp2645-np|2645 w/no padding:cm=\E&a%r%dc%dY:tc=hp2645:
                   1467: # 2640a doesn't have the Y cursor addressing feature, and C is memory relative
                   1468: # instead of screen relative, as we need.
                   1469: ha|2640|hp2640a|2640a|hp 2640a:\
                   1470:        :cm@:ks@:ke@:tc=2645:
                   1471: hb|2640b|hp2640b|2644a|hp2644a|hp 264x series:\
                   1472:        :ks@:ke@:tc=2645:
                   1473: # 2621 using all 48 lines of memory, only 24 visible at any time.  Untested.
                   1474: hl|2621-48|48 line 2621:\
                   1475:        :li#48:ho=\EH:cm=\E&a%r%dc%dR:tc=2621:
                   1476: # 2621 with no labels ever.  Also prevents vi delays on escape.
                   1477: hn|2621-nl|hp2621nl|2621nl|hp2621-nl|hp 2621 with no labels:\
                   1478:        :ks@:ke@:kh@:ku@:kl@:kr@:kd@:tc=hp2621-fl:
                   1479: # Needed for UCB ARPAVAX console, since lsi-11 expands tabs (wrong).
                   1480: ht|hp2621-nt|2621nt|2621-nt|hp2621nt|hp 2621 w/no tabs:\
                   1481:        :pt@:tc=hp2621:
                   1482: # 2621 with labels on all the time - normal outside vi, function inside vi.
                   1483: hw|hp2621wl|2621wl|2621-wl|hp2621-wl|hp 2621 w/labels:\
                   1484:        :is=\E&jA\r:ke=\E&jA:tc=hp2621-fl:
                   1485: # # --------------------------------
                   1486: #
                   1487: # i: INFOTON (GENERAL TERMINAL)
                   1488: #
                   1489: # Infoton is now called General Terminal Corp. or some such thing.
                   1490: # gt100 sounds like something DEC would come out with.  Lets hope they don't.
                   1491: i1|i100|gt100|gt100a|General Terminal 100A (formerly Infoton 100):\
                   1492:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1493:        :cl=^L:cd=\EJ:ce=\EK:li#24:co#80:\
                   1494:        :al=\EL:dl=\EM:up=\EA:nd=\EC:ho=\EH:cm=\Ef%r%+ %+ :vb=\Eb\Ea:\
                   1495:        :am:le=^H:bs:so=\Eb:se=\Ea:
                   1496: i4|i400|400|infoton 400:\
                   1497:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1498:        :al=\E[L:am:le=^H:bs:ce=\E[N:cl=\E[2J:cm=%i\E[%3;%3H:co#80:dl=\E[M:\
                   1499:        :li#25:nd=\E[C:up=\E[A:im=\E[4h\E[2Q:ei=\E[4l\E[0Q:\
                   1500:        :dc=\E[4h\E[2Q\E[P\E[4l\E[0Q:
                   1501: ia|addrinfo:\
                   1502:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1503:        :li#24:co#80:cl=^L:ho=^H:nd=^Y:cd=^K:\
                   1504:        :up=^\:am:le=^Z:bc=^Z:cm=\037%+\377%+\377:ll=^H^\:
                   1505: ik|infotonKAS:\
                   1506:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1507:        :am:le=^Z:bc=^Z:cd=^K:cl=^L:co#80:li#24:nd=^Y:up=^\:ll=^H^\:
                   1508: # # --------------------------------
                   1509: #
                   1510: # k: HEATHKIT (ZENITH)
                   1511: #
                   1512: kA|h19-a|h19a|heath-ansi|heathkit-a|heathkit h19 ansi mode:\
                   1513:        :cr=^M:nl=^J:bl=^G:\
                   1514:        :al=1*\E[1L:am:le=^H:bs:cd=\E[J:ce=\E[K:cl=\E[2J:cm=\E[%i%2;%2H:co#80:\
                   1515:        :dc=\E[1P:dl=1*\E[1M:do=\E[1B:ei=\E[4l:ho=\E[H:im=\E[4h:li#24:mi:\
                   1516:        :nd=\E[1C:as=\E[10m:ae=\E[11m:ms:ta=^I:pt:se=\E[0m:so=\E[7m:up=\E[1A:\
                   1517:        :vs=\E[>4h:ve=\E[>4l:kb=^h:ku=\E[1A:kd=\E[1B:kl=\E[1D:kr=\E[1C:\
                   1518:        :kh=\E[H:kn#8:k1=\EOS:k2=\EOT:k3=\EOU:k4=\EOV:k5=\EOW:l6=blue:\
                   1519:        :l7=red:l8=white:k6=\EOP:k7=\EOQ:k8=\EOR:\
                   1520:        :sr=\EM:is=\E<\E[>1;2;3;4;5;6;7;8;9l\E[0m\E[11m\E[?7h:
                   1521: kB|h19-bs|h19bs|heathkit w/keypad shifted:\
                   1522:        :ks=\Et:ke=\Eu:tc=h19-b:
                   1523: kU|h19-us|h19us|heathkit w/keypad shifted/underscore cursor:\
                   1524:        :ks=\Et:ke=\Eu:tc=h19-u:
                   1525: kb|h19|heath|h19-b|h19b|heathkit|heath-19|z19|zenith|heathkit h19:\
                   1526:        :cr=^M:nl=^J:bl=^G:\
                   1527:        :al=1*\EL:am:le=^H:bs:cd=\EJ:ce=\EK:cl=\EE:cm=\EY%+ %+ :co#80:dc=\EN:\
                   1528:        :dl=1*\EM:do=\EB:ei=\EO:ho=\EH:im=\E@:li#24:mi:nd=\EC:as=\EF:ae=\EG:\
                   1529:        :ms:ta=^I:pt:sr=\EI:se=\Eq:so=\Ep:up=\EA:vs=\Ex4:ve=\Ey4:\
                   1530:        :kb=^h:ku=\EA:kd=\EB:kl=\ED:kr=\EC:kh=\EH:kn#8:\
                   1531:        :k1=\ES:k2=\ET:k3=\EU:k4=\EV:k5=\EW:\
                   1532:        :l6=blue:l7=red:l8=white:k6=\EP:k7=\EQ:k8=\ER:\
                   1533:        :es:hs:ts=\Ej\Ex5\Ex1\EY8%+ \Eo:fs=\Ek\Ey5:ds=\Ey1:
                   1534: ke|h19-e|h19e|h19 for emacs:ip=1.5:tc=h19-us:
                   1535: ku|h19-u|h19u|heathkit with underscore cursor:\
                   1536:        :vs@:ve@:tc=h19-b:
                   1537: kg|h19-g|h19g|heathkit w/block cursor:\
                   1538:        :ve=\Ex4:tc=h19-b:
                   1539: kp|p19:\
                   1540:        :al=2*\EL:dl=2*\EM:tc=h19-b:
                   1541: # # --------------------------------
                   1542: #
                   1543: # l: LEAR SIEGLER (ADM)
                   1544: #
                   1545: # If the adm31 gives you trouble with standout mode, check the DIP switch
                   1546: # in position 6, bank @c11, 25% from back end of pc.  Should be OFF.
                   1547: # If there is no such switch, you have an old adm31 and must use oadm31
                   1548: l1|adm31|31|lsi adm31:\
                   1549:        :is=\Eu\E0:cr=^M:do=^J:nl=^J:bl=^G:\
                   1550:        :al=\EE:am:le=^H:bs:ce=\ET:cm=\E=%+ %+ :cl=\E*:cd=\EY:\
                   1551:        :co#80:dc=\EW:dl=\ER:ei=\Er:ho=^^:im=\Eq:\
                   1552:        :k0=^A0\r:k1=^A1\r:k2=^A2\r:k3=^A3\r:k4=^A4\r:\
                   1553:        :k5=^A5\r:k6=^A6\r:k7=^A7\r:k8=^A8\r:k9=^A9\r:kd=^J:kl=^H:kr=^L:ku=^K:\
                   1554:        :li#24:ma=j^Jk^P^K^Pl ^R^L^L :mi:nd=^L:\
                   1555:        :se=\EG0:so=\EG1:up=^K:us=\EG1:ue=\EG0:
                   1556: l2|adm2|lsi adm2:\
                   1557:        :cr=^M:do=^J:nl=^J:bl=^G:al=\EE:am:le=^H:bs:cd=\EY:ce=\ET:cl=\E;:\
                   1558:        :cm=\E=%+ %+ :co#80:dc=\EW:dl=\ER:\
                   1559:        :ei=:ho=^^:ic=\EQ:im=:kd=^J:kh=^^:kl=^H:kr=^L:ku=^K:li#24:nd=^L:up=^K:
                   1560: l3|adm3|3|lsi adm3:\
                   1561:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1562:        :am:le=^H:bs:cl=^Z:li#24:ma=^K^P:co#80:
                   1563: l4|adm42|42|lsi adm42:\
                   1564:        :vs=\EC\E3 \E3(:\
                   1565:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1566:        :al=270\EE:am:le=^H:bs:cd=\EY:ce=\ET:cl=\E;:cm=\E=%+ %+ :co#80:\
                   1567:        :dc=\EW:dl=\ER:ei=\Er:im=\Eq:ip=6*:li#24:\
                   1568:        :bt=\EI:nd=^L:se=\EG0:so=\EG4:ta=\t:up=^k:\
                   1569:        :ma=^K^P:pc=\177:
                   1570: l5|adm5|5|lsi adm5:\
                   1571:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1572:        :cd=\EY:ce=\ET:do=^J:kb=^H:kh=^^:\
                   1573:        :ma=^Hh^Jj^Kk^Ll^^H:se=\EG:sg#1:so=\EG:tc=adm3aplus:
                   1574: l7|adm20|lear siegler adm20:\
                   1575:        :li#24:co#80:bs:cl=^Z:cm=\E=%i%r%+^_%+^_:nd=^L:up=^K:ho=^\^:ce=\ET:\
                   1576:        :cd=\EY:al=\EE:dl=\ER:im=:ei=:ic=\EQ:dm=:ed=:dc=\EW:so=\E):se=\E(:\
                   1577:        :am:bt=\EI:pt:kn#7:k1=^A:k2=^B:k3=^W:k4=^D:k5=^E:k6:^X:k7=^Z:
                   1578: la|adm3a|3a|lsi adm3a:\
                   1579:        :am:cr=^M:do=^J:nl=^J:bl=^G:\
                   1580:        :le=^H:bs:cm=\E=%+ %+ :cl=1^Z:co#80:ho=^^:li#24:ma=^K^P:nd=^L:up=^K:
                   1581: lb|adm3a+|3a+|adm3aplus:\
                   1582:        :kl=^H:kd=^J:ku=^K:kr=^L:tc=adm3a:
                   1583: # # --------------------------------
                   1584: #
                   1585: # m: MICROTERM
                   1586: #
                   1587: # These mime1 entries refer to the Microterm Mime I or Mime II.
                   1588: # The default mime is assumed to be in enhanced act iv mode.
                   1589: m3|mime3a|mime1 emulating 3a:\
                   1590:        :am@:ma=^X ^K^J^Z^P:ku=^Z:kd=^K:kl=^H:kr=^X:tc=adm3a:
                   1591: m4|microterm|act4|microterm act iv:\
                   1592:        :am:cr=^M:do=^J:nl=^J:bl=^G:\
                   1593:        :le=^H:bs:cd=^_:ce=^^:cl=^L:cm=^T%.%.:co#80:li#24:nd=^X:up=^Z:ho=^]:
                   1594: # The padding on sr and ta for act5 and mime is a guess and not final.
                   1595: # The act 5 has hardware tabs, but they are in columns 8, 16, 24, 32, 41 (!)...
                   1596: m5|microterm5|act5|microterm act v:\
                   1597:        :uc=\EA:sr=3\EH:ku=^Z:kd=^K:kl=^H:kr=^X:ma=^Z^P^Xl^Kj:tc=act4:
                   1598: # Act V in split screen mode.  act5s is not tested and said not to work.
                   1599: mS|act5s|skinny act5:\
                   1600:        :ti=\EP:te=\EQ:li#48:co#39:tc=act5:
                   1601: # Mimes using brightness for standout.  Half bright is really dim unless
                   1602: # you turn up the brightness so far that lines show up on the screen.
                   1603: # uc is disabled to get around a curses bug, should be put back in someday.
                   1604: mf|mime-fb|full bright mime1:\
                   1605:        :so=^Y:se=^S:is=^S\E:tc=mime:
                   1606: mh|mime-hb|half bright mime1:\
                   1607:        :so=^S:se=^Y:is=^Y\E:tc=mime:
                   1608: mm|mime|mime1|mime2|mimei|mimeii|microterm mime1:\
                   1609:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1610:        :al=80^A:am:le=^H:bs:cd=^_:ce=^^:cl=\035^C:cm=^T%+^X%> 0%+P:co#80:\
                   1611:        :dl=80^W:ta=2^I:li#24:nd=^X:ta=^I:pt:uc=^U:up=^z:ho=\035:do=^K:\
                   1612:        :is=^S\E^Q:ma=^X ^K^J^Z^P:ku=^Z:kd=^K:kl=^H:kr=^X:sr=3^R:vt#9:
                   1613: # These termcaps (for mime 2a) put the terminal in low intensity mode
                   1614: # since high intensity mode is so obnoxious.
                   1615: ms|mime2a-s|microterm mime2a (emulating an enhanced soroc iq120):\
                   1616:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1617:        :al=20*^A:am:le=^H:bs:cd=20*\EJ:ce=\EK:cl=\EL:cm=\E=%+ %+ :co#80:dc=\ED:\
                   1618:        :dl=20*^W:kl=^H:kr=^L:ku=^K:kd=^J:ho=^^:is=\E):sr=\EI\
                   1619:        :im=\EE:ei=^Z:ip=2:li#24:nd=^L:so=\E\072:se=\E;:up=\EI:\
                   1620:        :us=\E6:ue=\E7:
                   1621: # This is the preferred mode (but ^X can't be used as a kill character)
                   1622: mv|mime2a|mime2a-v|microterm mime2a (emulating an enhanced vt52):\
                   1623:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1624:        :al=20*^A:le=^H:bs:cd=20*\EQ:co#80:ce=\EP:cl=\EL:cm=\EY%+ %+ :is=^Y\
                   1625:        :dc=^N:dl=20*^W:ip=2:ei=^Z:ho=\EH:im=^O:kd=\EB:kl=\ED:kr=\EC:ku=\EA:\
                   1626:        :li#24:nd=\EC:ta=^I:pt:se=\E9:so=\E8:up=\EA:sr=\EA:us=\E4:ue=\E5:
                   1627: mx|mime-3ax|mime1 emulating enhanced 3a:\
                   1628:        :al=80^A:dl=80^W:ta=^I:pt:ce=^X:cd=^_:tc=mime-3a:
                   1629: # # --------------------------------
                   1630: #
                   1631: # p: PERKIN ELMER
                   1632: #
                   1633: pe|pe550|bantam|perkin elmer 550:\
                   1634:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1635:        :le=^H:bs:co#80:ce=20\EI:cl=20\EK:cm=\EX%+ \EY%+ :\
                   1636:        :ho=\EH:li#24:ll=\EH\EA:nd=\EC:up=\EA:\
                   1637:        :ma=^Z^P:cd=6^N@^V:
                   1638: pf|fox|perkin elmer 1100:\
                   1639:        :ct=\E3:st=\E1:cr=^M:do=^J:nl=^J:bl=^G:\
                   1640:        :am:le=^H:bs:cd=5.5*\EJ:ce=\EI:cl=132\EH\EJ:co#80:ho=\EH:li#24:\
                   1641:        :ll=\EH\EA:nd=\EC:cm=\EX%+ \EY%+ :up=\EA:vb=^P^B^P^C:
                   1642: po|owl|perkin elmer 1200:\
                   1643:        :ct=\E3:st=\E1:cr=^M:do=^J:nl=^J:bl=^G:al=5.5*\EL:am:le=^H:\
                   1644:        :bs:cd=5.5*\EJ:ce=5.5\EI:cl=132\EH\EJ:ho=\EH:ll=\EH\EA:\
                   1645:        :cm=\EX%+ \EY%+ :co#80:dc=5.5*\EO:dl=5.5*\EM:ei=:ic=\EN:im=:ip=5.5*:\
                   1646:        :kb=^h:in:li#24:nd=\EC:up=\EA:se?=\E!\200:so?=\E!^H:vb=^P^B^P^C:\
                   1647:        :k1=\ERA:k2=\ERB:k3=\ERC:k4=\ERD:k5=\ERE:k6=\ERF:\
                   1648:        :k7=\ERG:k8=\ERH:k9=\ERI:k0=\ERJ:
                   1649: # # --------------------------------
                   1650: #
                   1651: # q: HOME MADE TERMINALS
                   1652: #
                   1653: qB|bc|bill croft homebrew:\
                   1654:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1655:        :am:le=^H:bs:cm=\E=%+ %+ :cl=^Z:co#96:ho=^^:li#72:\
                   1656:        :nd=^L:up=^K:vb=:
                   1657: qN|nucterm|rayterm|NUC homebrew:\
                   1658:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1659:        :am:le=^H:bs:cl=1^L:li#24:co#80:nd=^C:up=^N:ho=^B:ll=^K:ce=^A:cd=^E:
                   1660: qb|ex3000:\
                   1661:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1662:        :li#24:co#80:ho=^Q:
                   1663: qc|carlock|klc:\
                   1664:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1665:        :al=^E:am:bs:ce=^U:cl=100^Z:cm=\E=%+ %+ :co#80:dc=\177:dl=^D:dm=:\
                   1666:        :ed=:ei=^T:ho=^^:im=^T:li#24:nd=^L:se=^V:so=^V:up=^K:vb=\EV\EV:
                   1667: qe|exidy|exidy2500|exidy sorcerer as dm2500:\
                   1668:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1669:        :al=^P^J^X:am:le=^H:bs:ce=^W:cl=^^:cm=^L%r%n%.%.:co#64:\
                   1670:        :dc=\b:dl=^P^Z^X:dm=^P:ed=^X:ei=^X:ho=^B:ic=^\:\
                   1671:        :im=^P:li#30:nd=^\:ta=^I:pt:so=^N:se=^X:up=^Z:
                   1672: qn|netx|netronics:\
                   1673:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1674:        :le=^H:bs:cd=2000^F^E:ce=1600^E:cl=466^L:cm=\E=%+@%+@:co#64:ho=^D:\
                   1675:        :li#16:ma=j^Jk^Pl :nd=\E+@A:pc=\200:sr=\E=@@^K:up=^K:
                   1676: # This came from the comp ctr who got it from some user.  Smart indeed!
                   1677: qs|sexidy|exidy smart:\
                   1678:        :cr=^M:do=^J:nl=^J:bl=^G:li#24:co#64:cl=^l:ho=^q:nd=^s:\
                   1679:        :up=^w:le=^H:bs:le=^a:bc=^a:ma=^x^J:kd=^S:
                   1680: qu|ubell|ubellchar:\
                   1681:        :if=/usr/lib/tabset/ubell:\
                   1682:        :cr=^M:do=^J:nl=^J:bl=^G:am:le=^H:bs:ta=^I:pt:\
                   1683:        :ce=\Ed:cl=^Z:cm=\E=%+ %+ :co#80:li#24:nd=^L:up=^K:\
                   1684:        :ma=j^Jk^P^K^Pl :ho=^^:
                   1685: qw|ttyWilliams:\
                   1686:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1687:        :co#80:li#12:le=^Y:bc=^Y:do=^K:up=^Z:cl=^^:ce=^_:am:ho=^]:nd=^X:
                   1688: qx|xitex|xitex sct-100:\
                   1689:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1690:        :le=^H:bs:cd=2000^F^E:ce=1600^E:cl=400^L:cm=\E=%+@%+@:co#64:ho=^D:\
                   1691:        :li#16:ma=j^Jk^Pl :nd=\E+@A:pc=\200:sr=\E=@@^K:up=^K:
                   1692: # # --------------------------------
                   1693: #
                   1694: # s: SPECIALS
                   1695: #
                   1696: # Special "terminals".  These are used to label tty lines when you don't
                   1697: # know what kind of terminal is on it.  The characteristics of an unknown
                   1698: # terminal are the lowest common denominator - they look about like a ti 700.
                   1699: sa|network:\
                   1700:        :tc=unknown:
                   1701: sb|arpanet:\
                   1702:        :tc=unknown:
                   1703: sc|bussiplexer:\
                   1704:        :tc=unknown:
                   1705: sd|du|dialup:\
                   1706:        :tc=unknown:
                   1707: se|ethernet:\
                   1708:        :tc=unknown:
                   1709: sl|lpr|printer|print|printing|line printer:\
                   1710:        :cr=^M:do=^J:nl=^J:bl=^G:le=^H:bs:co#132:hc:os:
                   1711: sp|plugboard|patch|patchboard:\
                   1712:        :tc=unknown:
                   1713: su|dumb|un|unknown:\
                   1714:        :am:bl=^G:co#80:cr=^M:do=^J:nl=^J:
                   1715: sw|switch|intelligent switch:\
                   1716:        :tc=unknown:
                   1717: sx|ansi|any ansi terminal with pessimistic assumptions:\
                   1718:        :co#80:li#24:cl=50\E[;H\E[2J:\
                   1719:        :bs:am:cm=\E[%i%d;%dH:nd=\E[C:up=\E[A:\
                   1720:        :ce=\E[K:ho=\E[H:pt:
                   1721: # # --------------------------------
                   1722: #
                   1723: # t: TEXAS INSTRUMENTS
                   1724: #
                   1725: t3|ti|ti700|ti733|735|ti735|ti silent 700:\
                   1726:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1727:        :le=^H:bs:co#80:hc:os:dC#162:
                   1728: t4|ti745|745|743|ti silent 745:\
                   1729:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1730:        :le=^H:bs:co#80:hc:os:
                   1731: t8|ti800|ti omni 800:\
                   1732:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1733:        :le=^H:bs:co#132:hc:os:
                   1734: # # --------------------------------
                   1735: #
                   1736: # v: TELEVIDEO
                   1737: #
                   1738: # There are some tvi's that require incredible amounts of padding and
                   1739: # some that don't.  I'm assuming 912 and 920 are the old slow ones,
                   1740: # and 912b, 912c, 920b, 920c are the new ones that don't need padding.
                   1741: v1|tvi912|912|920|tvi920|old televideo:\
                   1742:        :ct=\E3:st=\E1:cr=^M:do=^J:nl=^J:bl=^G:\
                   1743:        :al=33*\EE:le=^H:ce=\ET:cm=\E=%+ %+ :cl=^Z:co#80:dc=\EW:dl=33*\ER:ei=:\
                   1744:        :kb=^h:ku=^K:kd=^J:kl=^H:kr=^L:k0=^A@\r:k1=^AA\r:k2=^AB\r:k3=^AC\r:\
                   1745:        :bs:am:k4=^AD\r:k5=^AE\r:k6=^AF\r:k7=^AG\r:k8=^AH\r:k9=^AI\r:\
                   1746:        :ho=^^:im=:ic=\EQ:li#24:nd=^L:ta=^I:pt:se=\Ek:so=\Ej:up=^K:us=\El:ue=\Em:\
                   1747:        :ma=^K^P^L :sg#1:ug#1:
                   1748: # the 912 has a <funct> key that's like shift: <funct>8 xmits "^A8\r".
                   1749: # The 920 has this plus real function keys that xmit different things.
                   1750: # Termcap makes you use the funct key on the 912 but the real keys on the 920.
                   1751: v2|912b|912c|tvi912b|tvi912c|tvi|new televideo 912:\
                   1752:        :al=5*\EE:dl=5*\ER:tc=tvi912:
                   1753: v3|920b|920c|tvi920b|tvi920c|new televideo 920:\
                   1754:        :k0=^A@\r:k1=^AA\r:k2=^AB\r:k3=^AC\r:k4=^AD\r:k5=^AE\r:\
                   1755:        :k6=^AF\r:k7=^AG\r:k8=^AH\r:k9=^AI\r:tc=tvi912b:
                   1756: # set to page 1 when entering ex (\E-17 )
                   1757: # reset to page 0 when exiting ex (\E-07 )
                   1758: v4|tvi912-2p|tvi920-2p|912-2p|920-2p|tvi-2p|televideo w/2 pages:\
                   1759:        :ti=\E-17 :te=\E-07 :tc=tvi912:\
                   1760: v5|tvi950-ap|tvi 950 w/alt pages:\
                   1761:        :is=\E\\1:ti=\E-06 :te=\E-16 :tc=tvi950:
                   1762: v6|tvi950-b|bare tvi950 no is:\
                   1763:        :is@:tc=tvi950:
                   1764: v7|tvi950-ns|tvi950 w/no standout:\
                   1765:        :so@:se@:us@:ue@:tc=tvi950:
                   1766: v8|tvi925|925|televideo model 925:\
                   1767:        :hs:xn:am:bs:co#80:li#24:cm=\E=%+ %+ :cl=^Z:cd=\EY:ce=\ET:is=\El\E":\
                   1768:        :al=\EE:dl=\ER:im=:ei=:ic=\EQ:dc=\EW:if=/usr/lib/tabset/stdcrt:\
                   1769:        :ho=^^:nd=^L:bt=\EI:pt:so=\EG4:se=\EG0:sg#1:us=\EG8:ue=\EG0:ug#1:\
                   1770:        :up=^K:do=^V:kb=^H:ku=^K:kd=^V:kl=^H:kr=^L:kh=^^:ma=^V^J^L :\
                   1771:        :k1=^A@\r:k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:k6=^AE\r:k7=^AF\r:\
                   1772:        :k8=^AG\r:k9=^AH\r:k0=^AI\r:ko=ic,dc,al,dl,cl,ce,cd,bt:\
                   1773:        :ts=\Ef:fs=\Eg:
                   1774: # entry by Tim Curry 5/21/82 Univ. of Central Fla. duke!ucf-cs!tim
                   1775: v9|925a|tvi925a|TeleVideo Model 925:\
                   1776:         :al=\EE:am:bs:bt=\EI:bw:cd=\EY:ce=\ET:cl=^Z:cm=\E=%+ %+ :co#80:dc=\EW:\
                   1777:         :dl=\ER:do=^V:ei=:ic=\EQ:if=/usr/lib/tabset/std:im=:kb=^H:kd=^V:\
                   1778:         :kh=^^:kl=^H:kn#12:kr=^L:ku=^K:li#24:nd=^L:pt:se=\EG0:sg=#1:so=\EG4:\
                   1779:         :ue=\EG0:ug#1:ul:up=^K:us=\EG8:is=\El\
                   1780:         :vb=\Eb\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Ed:\
                   1781:         :ve=\E.4:vs=\E.2:
                   1782: # The following tvi descriptions from B:pjphar and virus!mike
                   1783: # is for all 950's.  It sets the following attributes:
                   1784: # full duplex (\EDF)           write protect off (\E()
                   1785: # conversation mode (\EC)      graphics mode off (\E%)
                   1786: # white on black (\Ed)         auto page flip off (\Ew)
                   1787: # turn off status line (\Eg)   clear status line (\Ef\r)
                   1788: # normal video (\E0)           monitor mode off (\EX or \Eu)
                   1789: # edit mode (\Er)              load blank char to space (\Ee\040)
                   1790: # line edit mode (\EO)         enable buffer control (^O)
                   1791: # protect mode off (\E\047)    duplex edit keys (\El)
                   1792: # program unshifted send key to send line all (\E016)
                   1793: # program shifted send key to send line unprotected (\E004)
                   1794: # set the following to nulls:
                   1795: #      field delimiter (\Ex0\200\200)
                   1796: #      line delimiter (\Ex1\200\200)
                   1797: #      start-protected field delimiter (\Ex2\200\200)
                   1798: #      end-protected field delimiter (\Ex3\200\200)
                   1799: # set end of text delimiter to carriage return/null (\Ex4\r\200)
                   1800: #
                   1801: va|tvi950|950|televideo950:\
                   1802:        :ct=\E3:st=\E1:cr=^M:do=^J:nl=^J:bl=^G:\
                   1803:        :is=\EDF\EC\Ed\EG0\Eg\Er\EO\E\047\E(\E%\Ew\EX\Ee ^O\
                   1804:        \El\E016\E004\Ex0\200\200\Ex1\200\200\Ex2\200\200\
                   1805:        \Ex3\200\200\Ex4\r\200\Ef\r:\
                   1806:        :al=\EE:am:le=^H:bs:bt=\EI:cd=\Ey:ce=\Et:cl=\E*:cm=\E=%+ %+ :\
                   1807:        :co#80:dc=\EW:dl=\ER:do=^V:ei=\Er:ho=^^:im=\Eq:k0=^A0\r:\
                   1808:        :k1=^A@\r:k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:k6=^AE\r:\
                   1809:        :k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=^V:kh=^^:kl=^H:\
                   1810:        :ko=ic\054dc\054al\054dl\054cl\054bt\054ce\054cd:kr=^L:\
                   1811:        :ku=^K:li#24:ma=^Vj^Kk^Hh^Ll^^H:mi:ms:nd=^L:ta=^I:pt:se=\EG0:\
                   1812:        :sg#1:so=\EG4:sr=\Ej:ue=\EG0:ug#1:up=^K:us=\EG8:\
                   1813:        :vb=\Eb\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Ed:\
                   1814:        :xn:hs:ts=\Eg\Ef:fs=\r:ds=\Eg\Ef\r:
                   1815: #
                   1816: # is for 950 with two pages adds the following:
                   1817: #      set 48 line page (\E\\2)
                   1818: #      place cursor at page 0, line 24, column 1 (\E-07 )
                   1819: #      set local (no send) edit keys (\Ek)
                   1820: #
                   1821: # two page 950 adds the following:
                   1822: #      when entering ex, set 24 line page (\E\\1)
                   1823: #      when exiting ex, reset 48 line page (\E\\2)
                   1824: #                       place cursor at 0,24,1 (\E-07 )
                   1825: #      set duplex (send) edit keys (\El) when entering vi
                   1826: #      set local (no send) edit keys (\Ek) when exiting vi
                   1827: #
                   1828: vb|tvi950-2p|950-2p|televideo950 w/2 pages:\
                   1829:        :is=\EDF\EC\Ed\EG0\Eg\Er\EO\E\047\E(\E%\Ew\EX\Ee ^O\
                   1830:        \Ek\E016\E004\Ex0\200\200\Ex1\200\200\Ex2\200\200\
                   1831:        \Ex3\200\200\Ex4\r\200\E\\2\E-07 \
                   1832:        :te=\E\\2\E-07 :ti=\E\\1\E-07 :ks=\El:ke=\Ek:tc=tvi950:
                   1833: #
                   1834: # is for 950 with four pages adds the following:
                   1835: #      set 96 line page (\E\\3)
                   1836: #      place cursor at page 0, line 24, column 1 (\E-07 )
                   1837: #
                   1838: # four page 950 adds the following:
                   1839: #      when entering ex, set 24 line page (\E\\1)
                   1840: #      when exiting ex, reset 96 line page (\E\\3)
                   1841: #                       place cursor at 0,24,1 (\E-07 )
                   1842: #
                   1843: vc|tvi950-4p|950-4p|televideo950 w/4 pages:\
                   1844:        :is=\EDF\EC\Ed\EG0\Eg\Er\EO\E\047\E(\E%\Ew\EX\Ee ^O\
                   1845:        \Ek\E016\E004\Ex0\200\200\Ex1\200\200\Ex2\200\200\
                   1846:        \Ex3\200\200\Ex4\r\200\E\\3\E-07 \
                   1847:        :te=\E\\3\E-07 :ti=\E\\1\E-07 :ks=\El:ke=\Ek:tc=tvi950:
                   1848: #
                   1849: # is for reverse video 950 changes the following:
                   1850: #      set reverse video (\Ed)
                   1851: #
                   1852: # set vb accordingly (\Ed ...nulls... \Eb)
                   1853: #
                   1854: vd|tvi950-rv|950-rv|televideo950 rev video:\
                   1855:        :is=\EDF\EC\Eb\EG0\Eg\Er\EO\E\047\E(\E%\Ew\EX\Ee ^O\
                   1856:        \El\E016\E004\Ex0\200\200\Ex1\200\200\Ex2\200\200\
                   1857:        \Ex3\200\200\Ex4\r\200:\
                   1858:        :vb=\Ed\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Eb:\
                   1859:        :tc=tvi950:
                   1860: #
                   1861: # uses the appropriate entries from 950-2p and 950-rv
                   1862: #
                   1863: ve|tvi950-rv-2p|950-rv-2p|televideo950 rev video w/2 pages:\
                   1864:        :is=\EDF\EC\Eb\EG0\Eg\Er\EO\E\047\E(\E%\Ew\EX\Ee ^O\
                   1865:        \Ek\E016\E004\Ex0\200\200\Ex1\200\200\Ex2\200\200\
                   1866:        \Ex3\200\200\Ex4\r\200\E\\2\E-07 :\
                   1867:        :vb=\Ed\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Eb:\
                   1868:        :te=\E\\2\E-07 :ti=\E\\1\E-07 :ks=\El:ke=\Ek:tc=tvi950:
                   1869: #
                   1870: # uses the appropriate entries from 950-4p and 950-rv
                   1871: #
                   1872: vf|tvi950-rv-4p|950-rv-4p|televideo950 rev video w/4 pages:\
                   1873:        :is=\EDF\EC\Eb\EG0\Er\EO\E\047\E(\E%\Ew\EX\Ee ^O\
                   1874:        \Ek\E016\E004\Ex0\200\200\Ex1\200\200\Ex2\200\200\
                   1875:        \Ex3\200\200\Ex4\r\200\E\\3\E-07 :\
                   1876:        :vb=\Ed\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Eb:\
                   1877:        :te=\E\\3\E-07 :ti=\E\\1\E-07 :ks=\El:ke=\Ek:tc=tvi950:
                   1878: # # --------------------------------
                   1879: #
                   1880: # y: TELERAY
                   1881: #
                   1882: # Note two things called "teleray".  Reorder should move the common one
                   1883: # to the front if you have either.  A dumb teleray with the cursor stuck
                   1884: # on the bottom and no obvious model number is probably a 3700.
                   1885: y1|t3700|teleray|dumb teleray 3700:\
                   1886:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1887:        :le=^H:bs:cl=^L:co#80:li#24:
                   1888: y3|t3800|teleray 3800 series:\
                   1889:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1890:        :le=^H:bs:cd=\EJ:ce=\EK:cl=^L:cm=\EY%+ %+ :co#80: \
                   1891:        :do=\n:ho=\EH:li#24:ll=\EY7 :nd=\EC:ta=^I:pt:up=^K:
                   1892: y6|t1061|teleray 1061:\
                   1893:        :ct=\EG:st=\EF:\
                   1894:        :cr=^M:do=^J:nl=^J:bl=^G:\
                   1895:        :al=2*\EL:am:le=^H:bs:cd=1\EJ:ce=\EK:cl=1^L:cm=\EY%+ %+ :co#80:\
                   1896:        :dc=\EQ:dl=2*\EM:ei=:ho=\EH:ic=\EP:im=:ip=0.4*:\
                   1897:        :k1=^Z1:k2=^Z2:k3=^Z3:k4=^Z4:k5=^Z5:k6=^Z6:k7=^Z7:k8=^Z8:\
                   1898:        :li#24:nd=\EC:ta=^I:pt:se=\ER@:so= \ERD:\
                   1899:        :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:\
                   1900:        :up=\EA:us=\ERH:ue=\ER@:xs:xt:sg#2:ug#1:
                   1901: # "Teleray Arpa Special", offically designated as
                   1902: # "Teleray Arpa network model 10" with "Special feature 720".
                   1903: # This is the new (1981) fast microcode updating the older "arpa" proms
                   1904: # (which gave meta-key and pgmmable-fxn keys).  720 is much much faster,
                   1905: # converts the keypad to programmable function keys, and has other goodies.
                   1906: # Standout mode is still broken (magic cookie, etc) so is suppressed as no
                   1907: # programs handle such lossage properly.
                   1908: # Note: this is NOT the old termcap's "t1061f with fast proms."
                   1909: # From Univ of Utah, J.Lepreau  Tue Feb  1 06:39:37 1983
                   1910: # lepreau@utah-cs, harpo!utah-cs!lepreau
                   1911: #
                   1912: y7|t10|teleray 10 special:\
                   1913:        :so@:se@:us@:ue@:\
                   1914:        :al=\EL:bs:cd=\EJ:ce=\EK:cl=30\Ej:cm=\EY%+ %+ :co#80:\
                   1915:        :dc=\EQ:dl=\EM:ei=:ho=\EH:ic=\EP:im=:km:li#24:nd=\EC:nl=\n:pc=\200:pt:\
                   1916:        :se=\ER@:so=\ERD:sf=\Eq:sg#2:sr=\Ep:up=\EA:ug#1:ue=\ER@:us=\ERH:\
                   1917:        :xs:xt:
                   1918: yf|t1061f|teleray 1061 with fast PROMs:\
                   1919:        :al=\EL:ip@:dl=\EM:tc=t1061:
                   1920: # # --------------------------------
                   1921: #
                   1922: # z: MISC (cont)
                   1923: #
                   1924: z0|wind:\
                   1925:        :bs:cm=\Ep%r%.%.:cl=\En\120\030\Eo:co#80:\
                   1926:        :ho=\Ep\200\200:li#24:nd=^L:up=^K:nl=\035:\
                   1927:        :kl=\E3:kr=\E4:ku=\E1:kd=\E2:k1=\E5:k2=\E6:k3=\E7:k4=\E8:\
                   1928:        :so=\Em\014:se=\Em\003:
                   1929: z1|wind16:\
                   1930:        :bs:cm=\Ep%r%.%.:cl=\En\120\020\Eo:co#80:\
                   1931:        :ho=\Ep\200\200:li#16:nd=^L:up=^K:nl=\035:\
                   1932:        :so=\Em\014:se=\Em\003:
                   1933: z2|wind40:\
                   1934:        :bs:cm=\Ep%r%.%.:cl=\En\120\050\Eo:co#80:\
                   1935:        :ho=\Ep\200\200:li#40:nd=^L:up=^K:nl=\035:\
                   1936:        :so=\Em\014:se=\Em\003:
                   1937: z3|wind50:\
                   1938:        :bs:cm=\Ep%r%.%.:cl=\En\128\062\Eo:co#88:\
                   1939:        :ho=\Ep\200\200:li#50:nd=^L:up=^K:nl=\035:\
                   1940:        :kl=\E3:kr=\E4:ku=\E1:kd=\E2:k1=\E5:k2=\E6:k3=\E7:k4=\E8:\
                   1941:        :so=\Em\014:se=\Em\003:
                   1942: z4|cad68-3|cgc3|cad68 basic monitor transparent mode size 3 chars:\
                   1943:        :am:bs:cl=^Z:co#73:ho=\036:li#36:nd=^L:up=^K:
                   1944: z5|cad68-2|cgc2|cad68 basic monitor transparent mode size 2 chars:\
                   1945:        :am:bs:cl=^Z:co#85:ho=\036:li#39:nd=^L:up=^K:
                   1946:        :kl=\E3:kr=\E4:ku=\E1:kd=\E2:k1=\E5:k2=\E6:k3=\E7:k4=\E8:\
                   1947:        :so=\Em\014:se=\Em\003:
                   1948: z6|v50|visual 50:\
                   1949:        :am:bs:al=\EL:dl=\EM:\
                   1950:        :cd=\Ek:ce=\EK:cl=^Z:cm=\E=%+\040%+\040:co#80:do=^J:ho=\EH:\
                   1951:        :kb=^H:kd=\EB:kh=\EH:kl=\ED:kr=\EC:ku=\EA:li#24:ms:nd=^L:pt:\
                   1952:        :so=\EU:se=\ET:up=^K:
                   1953: z7|trs2|trsII|trs80II|Radio Shack Model II using P&T CP/M:\
                   1954:        :nl=^_:\
                   1955:        :al=^D:am:bs:cd=^B:ce=^A:cl=^L:cm=\EY%+ %+ :co#80:\
                   1956:        :dl=^K:do=^_:ho=^F:li#24:nd=^]:\
                   1957:        :ms:pt:se=^O:so=^N:up:=^^:\
                   1958:        :kb=^H:kd=^_:kl=^\:kr=^]:ku=^^:
                   1959: #
                   1960: # END OF TERMCAP
                   1961: #  ------------------------

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.