1######## TERMINAL TYPE DESCRIPTIONS SOURCE FILE 2# 3# $MirOS: src/share/termtypes/termtypes.master,v 1.8 2013/09/10 20:38:07 tg Exp $ 4# $OpenBSD: termtypes.master,v 1.34 2003/01/27 19:14:44 miod Exp $ 5# 6# This version of terminfo.src is distributed with ncurses. 7# Report bugs to 8# bug-ncurses@gnu.org 9# 10# Version 10.2.1 11# Date: 2001/02/11 01:36:18 12# terminfo syntax 13# 14# Eric S. Raymond (current maintainer) 15# John Kunze, Berkeley 16# Craig Leres, Berkeley 17# 18# Please e-mail changes to terminfo@thyrsus.com; the old termcap@berkeley.edu 19# address is no longer valid. The latest version can always be found at 20# <http://www.tuxedo.org/terminfo>. 21# 22# PURPOSE OF THIS FILE: 23# 24# This file describes the capabilities of various character-cell terminals, 25# as needed by software such as screen-oriented editors. 26# 27# Other terminfo and termcap files exist, supported by various OS vendors 28# or as relics of various older versions of UNIX. This one is the longest 29# and most comprehensive one in existence. It subsumes not only the entirety 30# of the historical 4.4BSD, GNU, System V and SCO termcap files and the BRL 31# termcap file, but also large numbers of vendor-maintained termcap and 32# terminfo entries more complete and carefully tested than those in historical 33# termcap/terminfo versions. 34# 35# Pointers to related resources (including the ncurses distribution) may 36# be found at <http://www.tuxedo.org/terminfo>. 37# 38# INTERNATIONALIZATION: 39# 40# This file uses only the US-ASCII character set (no ISO8859 characters). 41# 42# This file assumes a US-ASCII character set. If you need to fix this, start 43# by global-replacing \E(B and \E)B with the appropriate ISO 6429 enablers 44# for your character set. \E(A and \E)A enables the British character set 45# with the pound sign at position 2/3. 46# 47# In a Japanese-processing environment using EUC/Japanese or Shift-JIS, 48# C1 characters are considered the first-byte set of the Japanese encodings, 49# so \E)0 should be avoided in <enacs> and initialization strings. 50# 51# FILE FORMAT: 52# 53# The version you are looking at may be in any of three formats: master 54# (terminfo with OT capabilities), stock terminfo, or termcap. You can tell 55# which by the format given in the header above. 56# 57# The master format is accepted and generated by the terminfo tools in the 58# ncurses suite; it differs from stock (System V-compatible) terminfo only 59# in that it admits a group of capabilities (prefixed `OT') equivalent to 60# various obsolete termcap capabilities. You can, thus, convert from master 61# to stock terminfo simply by filtering with `sed "/OT[^,]*,/s///"'; but if 62# you have ncurses `tic -I' is nicer (among other things, it automatically 63# outputs entries in a canonical form). 64# 65# The termcap version is generated automatically from the master version 66# using tic -C. This filtering leaves in the OT capabilities under their 67# original termcap names. All translated entries fit within the 1023-byte 68# string-table limit of archaic termcap libraries except where explicitly 69# noted below. Note that the termcap translation assumes that your termcap 70# library can handle multiple tc capabilities in an entry. 4.4BSD has this 71# capability. Older versions of GNU termcap, through 1.3, do not. 72# 73# For details on these formats, see terminfo(5) in the ncurses distribution, 74# and termcap(5) in the 4.4BSD Unix Programmer's Manual. Be aware that 4.4BSD 75# curses has been declared obsolete by the caretakers of the 4.4BSD sources 76# as of June 1995; they are encouraging everyone to migrate to ncurses. 77# 78# Note: unlike some other distributed terminfo files (Novell Unix & SCO's), 79# no entry in this file has embedded comments. This is so source translation 80# to termcap only has to carry over leading comments. Also, no name field 81# contains embedded whitespace (such whitespace confuses rdist). 82# 83# Further note: older versions of this file were often installed with an editor 84# script (reorder) that moved the most common terminal types to the front of 85# the file. This should no longer be necessary, as the file is now ordered 86# roughly by type frequency with ANSI/VT100 and other common types up front. 87# 88# Some information has been merged in from terminfo files distributed by 89# USL and SCO (see COPYRIGHTS AND OTHER DELUSIONS below). Much information 90# comes from vendors who maintain official terminfos for their hardware 91# (notably DEC and Wyse). 92# 93# A detailed change history is included at the end of this file. 94# 95# FILE ORGANIZATION: 96# 97# Comments in this file begin with # - they cannot appear in the middle 98# of a terminfo/termcap entry (this feature had to be sacrificed in order 99# to allow standard terminfo and termcap syntax to be generated cleanly from 100# the master format). Individual capabilities are commented out by 101# placing a period between the colon and the capability name. 102# 103# The file is divided up into major sections (headed by lines beginning with 104# the string "########") and minor sections (beginning with "####"); do 105# 106# grep "^####" <file> | more 107# 108# to see a listing of section headings. The intent of the divisions is 109# (a) to make it easier to find things, and (b) to order the database so 110# that important and frequently-encountered terminal types are near the 111# front (so that you'll get reasonable search efficiency from a linear 112# search of the termcap form even if you don't use reorder). Minor sections 113# usually correspond to manufacturers or standard terminal classes. 114# Parenthesized words following manufacturer names are type prefixes or 115# product line names used by that manufacturers. 116# 117# HOW TO READ THE ENTRIES: 118# 119# The first name in an entry is the canonical name for the model or 120# type, last entry is a verbose description. Others are mnemonic synonyms for 121# the terminal. 122# 123# Terminal names look like <manufacturer> <model> - <modes/options> 124# The part to the left of the dash, if a dash is present, describes the 125# particular hardware of the terminal. The part to the right may be used 126# for flags indicating special ROMs, extra memory, particular terminal modes, 127# or user preferences. 128# 129# All names should be in lower case, for consistency in typing. 130# 131# The following are conventionally used suffixes: 132# -2p Has two pages of memory. Likewise 4p, 8p, etc. 133# -am Enable auto-margin. 134# -m Monochrome. Suppress color support 135# -mc Magic-cookie. Some terminals (notably older Wyses) can 136# only support one attribute without magic-cookie lossage. 137# Their base entry is usually paired with another that 138# uses magic cookies to support multiple attributes. 139# -nam No auto-margin - suppress <am> capability 140# -nl No labels - suppress soft labels 141# -ns No status line - suppress status line 142# -rv Terminal in reverse video mode (black on white) 143# -s Enable status line. 144# -vb Use visible bell (<flash>) rather than <bel>. 145# -w Wide - in 132 column mode. 146# If a name has multiple suffixes and one is a line height, that one should 147# go first. Thus `aaa-30-s-rv' is recommended over `aaa-s-rv-30'. 148# 149# Entries with embedded plus signs are designed to be included through use/tc 150# capabilities, not used as standalone entries. 151# 152# To avoid search clashes, some older all-numeric names for terminals have 153# been removed (i.e., "33" for the Model 33 Teletype, "2621" for the HP2621). 154# All primary names of terminals now have alphanumeric prefixes. 155# 156# Comments marked "esr" are mostly results of applying the termcap-compiler 157# code packaged with ncurses and contemplating the resulting error messages. 158# In many cases, these indicated obvious fixes to syntax garbled by the 159# composers. In a few cases, I was able to deduce corrected forms for garbled 160# capabilities by looking at context. All the information in the original 161# entries is preserved in the comments. 162# 163# In the comments, terminfo capability names are bracketed with <> (angle 164# brackets). Termcap capability names are bracketed with :: (colons). 165# 166# INTERPRETATION OF USER CAPABILITIES 167# 168# The System V Release 4 and XPG4 terminfo format defines ten string 169# capabilities for use by applications, <u0>...<u9>. In this file, we use 170# certain of these capabilities to describe functions which are not covered 171# by terminfo. The mapping is as follows: 172# 173# u9 terminal enquire string (equiv. to ANSI/ECMA-48 DA) 174# u8 terminal answerback description 175# u7 cursor position request (equiv. to VT100/ANSI/ECMA-48 DSR 6) 176# u6 cursor position report (equiv. to ANSI/ECMA-48 CPR) 177# 178# The terminal enquire string <u9> should elicit an answerback response 179# from the terminal. Common values for <u9> will be ^E (on older ASCII 180# terminals) or \E[c (on newer VT100/ANSI/ECMA-48-compatible terminals). 181# 182# The cursor position request (<u7>) string should elicit a cursor position 183# report. A typical value (for VT100 terminals) is \E[6n. 184# 185# The terminal answerback description (u8) must consist of an expected 186# answerback string. The string may contain the following scanf(3)-like 187# escapes: 188# 189# %c Accept any character 190# %[...] Accept any number of characters in the given set 191# 192# The cursor position report (<u6>) string must contain two scanf(3)-style 193# %d format elements. The first of these must correspond to the Y coordinate 194# and the second to the %d. If the string contains the sequence %i, it is 195# taken as an instruction to decrement each value after reading it (this is 196# the inverse sense from the cup string). The typical CPR value is 197# \E[%i%d;%dR (on VT100/ANSI/ECMA-48-compatible terminals). 198# 199# These capabilities are used by tack(1m), the terminfo action checker 200# (distributed with ncurses 5.0). 201# 202# TABSET FILES 203# 204# All the entries in this file have been edited to assume that the tabset 205# files directory is /usr/share/tabset, in conformance with the File Hierarchy 206# Standard for Linux and open-source BSD systems. Some vendors (notably Sun) 207# use /usr/lib/tabset or (more recently) /usr/share/lib/tabset. 208# 209# No curses package we know of actually uses these files. If their location 210# is an issue, you will have to hand-patch the file locations before compiling 211# this file. 212# 213# REQUEST FOR CONTACT INFORMATION AND HISTORICAL MATERIAL 214# 215# As the ANSI/ECMA-48 standard and variants take firmer hold, and as 216# character-cell terminals are increasingly replaced by X displays, much of 217# this file is becoming a historical document (this is part of the reason for 218# the new organization, which puts ANSI types, xterm, Unix consoles, 219# and vt100 up front in confidence that this will catch 95% of new hardware). 220# 221# For the terminal types still alive, I'd like to have manufacturer's 222# contact data (Internet address and/or snail-mail + phone). 223# 224# I'm also interested in enriching the comments so that the latter portions of 225# the file do in fact become a potted history of VDT technology as seen by 226# UNIX hackers. Ideally, I'd like the headers for each manufacturer to 227# include its live/dead/out-of-the-business status, and for as many 228# terminal types as possible to be tagged with information like years 229# of heaviest use, popularity, and interesting features. 230# 231# I'm especially interested in identifying the obscure entries listed under 232# `Miscellaneous obsolete terminals, manufacturers unknown' before the tribal 233# wisdom about them gets lost. If you know a lot about obscure old terminals, 234# please go to the terminfo resource page, grab the UFO file (ufo.ti), and 235# eyeball it for things you can identify and describe. 236# 237# If you have been around long enough to contribute, please read the file 238# with this in mind and send me your annotations. 239# 240# COPYRIGHTS AND OTHER DELUSIONS 241# 242# The BSD ancestor of this file had a standard Regents of the University of 243# California copyright with dates from 1980 to 1993. 244# 245# Some information has been merged in from a terminfo file SCO distributes. 246# It has an obnoxious boilerplate copyright which I'm ignoring because they 247# took so much of the content from the ancestral BSD versions of this file 248# and didn't attribute it, thereby violating the BSD Regents' copyright. 249# 250# Not that anyone should care. However many valid functions copyrights may 251# serve, putting one on a termcap/terminfo file with hundreds of anonymous 252# contributors makes about as much sense as copyrighting a wall-full of 253# graffiti -- it's legally dubious, ethically bogus, and patently ridiculous. 254# 255# This file deliberately has no copyright. It belongs to no one and everyone. 256# If you claim you own it, you will merely succeed in looking like a fool. 257# Use it as you like. Use it at your own risk. Copy and redistribute freely. 258# There are no guarantees anywhere. Svaha! 259# 260 261######## ANSI, UNIX CONSOLE, AND SPECIAL TYPES 262# 263# This section describes terminal classes and brands that are still 264# quite common. 265# 266 267#### Specials 268# 269# Special "terminals". These are used to label tty lines when you don't 270# know what kind of terminal is on it. The characteristics of an unknown 271# terminal are the lowest common denominator - they look about like a ti 700. 272# 273 274dumb|80-column dumb tty, 275 am, 276 cols#80, 277 bel=^G, cr=^M, cud1=^J, ind=^J, 278unknown|unknown terminal type, 279 gn, use=dumb, 280lpr|printer|line printer, 281 OTbs, hc, os, 282 cols#132, lines#66, 283 bel=^G, cr=^M, cub1=^H, cud1=^J, ff=^L, ind=^J, 284glasstty|classic glass tty interpreting ASCII control characters, 285 OTbs, am, 286 cols#80, 287 bel=^G, clear=^L, cr=^M, cub1=^H, cud1=^J, ht=^I, kcub1=^H, 288 kcud1=^J, nel=^M^J, .kbs=^H, 289 290vanilla, 291 OTbs, 292 bel=^G, cr=^M, cud1=^J, ind=^J, 293 294#### ANSI.SYS/ISO 6429/ECMA-48 Capabilities 295# 296# See the end-of-file comment for more on these. 297# 298 299# ANSI capabilities are broken up into pieces, so that a terminal 300# implementing some ANSI subset can use many of them. 301ansi+local1, 302 cub1=\E[D, cud1=\E[B, cuf1=\E[C, cuu1=\E[A, 303ansi+local, 304 cub=\E[%p1%dD, cud=\E[%p1%dB, cuf=\E[%p1%dC, 305 cuu=\E[%p1%dA, use=ansi+local1, 306ansi+tabs, 307 cbt=\E[Z, ht=^I, hts=\EH, tbc=\E[2g, 308ansi+inittabs, 309 it#8, use=ansi+tabs, 310ansi+erase, 311 clear=\E[H\E[J, ed=\E[J, el=\E[K, 312ansi+rca, 313 hpa=\E[%p1%{1}%+%dG, vpa=\E[%p1%{1}%+%dd, 314ansi+cup, 315 cup=\E[%i%p1%d;%p2%dH, home=\E[H, 316ansi+rep, 317 rep=%p1%c\E[%p2%{1}%-%db, 318ansi+idl1, 319 dl1=\E[M, il1=\E[L, 320ansi+idl, 321 dl=\E[%p1%dM, il=\E[%p1%dL, use=ansi+idl1, 322ansi+idc, 323 dch1=\E[P, ich=\E[%p1%d@, ich1=\E[@, rmir=\E6, smir=\E6, 324ansi+arrows, 325 kbs=^H, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 326 khome=\E[H, 327ansi+sgr|ansi graphic renditions, 328 blink=\E[5m, invis=\E[8m, rev=\E[7m, sgr0=\E[0m, 329ansi+sgrso|ansi standout only, 330 rmso=\E[m, smso=\E[7m, 331ansi+sgrul|ansi underline only, 332 rmul=\E[m, smul=\E[4m, 333ansi+sgrbold|ansi graphic renditions; assuming terminal has bold; not dim, 334 bold=\E[1m, 335 sgr=\E[%?%p1%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p6%t1;%;m, 336 use=ansi+sgr, use=ansi+sgrso, use=ansi+sgrul, 337ansi+sgrdim|ansi graphic renditions; assuming terminal has dim; not bold, 338 dim=\E[2m, 339 sgr=\E[%?%p1%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p5%t2;%;m, 340 use=ansi+sgr, use=ansi+sgrso, use=ansi+sgrul, 341ansi+pp|ansi printer port, 342 mc0=\E[0i, mc4=\E[4i, mc5=\E[5i, 343ansi+csr|ansi scroll-region plus cursor save & restore, 344 csr=\E[%i%p1%d;%p2%dr, rc=\E8, sc=\E7, 345 346# The IBM PC alternate character set. Plug this into any Intel console entry. 347# We use \E[11m for rmacs rather than \E[12m so the <acsc> string can use the 348# ROM graphics for control characters such as the diamond, up- and down-arrow. 349# This works with the System V, Linux, and BSDI consoles. It's a safe bet this 350# will work with any Intel console, they all seem to have inherited \E[11m 351# from the ANSI.SYS de-facto standard. 352klone+acs|alternate character set for ansi.sys displays, 353 acsc=+\020\,\021-\030.^Y0\333`\004a\261f\370g\361h\260j\331k\277l\332m\300n\305o~p\304q\304r\304s_t\303u\264v\301w\302x\263y\363z\362{\343|\330}\234~\376, 354 rmacs=\E[10m, smacs=\E[11m, 355 356# Highlight controls corresponding to the ANSI.SYS standard. Most 357# console drivers for Intel boxes obey these. Makes the same assumption 358# about \E[11m as klone+acs. True ANSI/ECMA-48 would have <rmso=\E[27m>, 359# <rmul=\E[24m>, but this isn't a documented feature of ANSI.SYS. 360klone+sgr|attribute control for ansi.sys displays, 361 blink=\E[5m, bold=\E[1m, invis=\E[8m, rev=\E[7m, 362 rmpch=\E[10m, rmso=\E[m, rmul=\E[m, 363 sgr=\E[0;10%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;%?%p7%t;8%;%?%p9%t;11%;m, 364 sgr0=\E[0;10m, smpch=\E[11m, smso=\E[7m, smul=\E[4m, 365 use=klone+acs, 366 367# Highlight controls corresponding to the ANSI.SYS standard. *All* 368# console drivers for Intel boxes obey these. Does not assume \E[11m will 369# work; uses \E[12m instead, which is pretty bulletproof but loses you the ACS 370# diamond and arrow characters under curses. 371klone+sgr-dumb|attribute control for ansi.sys displays (no ESC [ 11 m), 372 blink=\E[5m, bold=\E[1m, invis=\E[8m, rev=\E[7m, rmso=\E[m, 373 rmul=\E[m, 374 sgr=\E[0;10%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;%?%p7%t;8%;%?%p9%t;12%;m, 375 sgr0=\E[0;10m, smacs=\E[12m, smso=\E[7m, smul=\E[4m, 376 use=klone+acs, 377 378# KOI8-R (RFC1489) acs (alternate character set) 379# From: Qing Long <qinglong@Bolizm.ihep.su>, 24 Feb 1996. 380klone+koi8acs|alternate character set for ansi.sys displays with KOI8 charset, 381 acsc=+\020\,\021-\036.^_0\215`\004a\237f\234g\232h\222i\220j\205k\203l\202m\204n\212o\213p\216q\0r\217s\214t\206u\207v\210w\211x\201y\230z\231{\267|\274}L~\225, 382 rmacs=\E[10m, smacs=\E[11m, 383 384# ANSI.SYS color control. The setab/setaf caps depend on the coincidence 385# between SVr4/XPG4's color numbers and ANSI.SYS attributes. Here are longer 386# but equivalent strings that don't rely on that coincidence: 387# setb=\E[4%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m, 388# setf=\E[3%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m, 389# The DOS 5 manual asserts that these sequences meet the ISO 6429 standard. 390# They match a subset of ECMA-48. 391klone+color|color control for ansi.sys and ISO6429-compatible displays, 392 colors#8, ncv#3, pairs#64, 393 op=\E[37;40m, setab=\E[4%p1%dm, setaf=\E[3%p1%dm, 394 395# This is better than klone+color, it doesn't assume white-on-black as the 396# default color pair, but many `ANSI' terminals don't grok the <op> cap. 397ecma+color|color control for ECMA-48-compatible terminals, 398 AX, 399 colors#8, ncv#3, pairs#64, 400 op=\E[39;49m, setab=\E[4%p1%dm, setaf=\E[3%p1%dm, 401 402# Attribute control for ECMA-48-compatible terminals 403ecma+sgr|attribute capabilities for true ECMA-48 terminals, 404 rmso=\E[27m, rmul=\E[24m, use=klone+sgr, 405 406# For comparison, here are all the capabilities implied by the Intel 407# Binary Compatibility Standard (level 2) that fit within terminfo. 408# For more detail on this rather pathetic standard, see the comments 409# near the end of this file. 410ibcs2|Intel Binary Compatibility Standard prescriptions, 411 cbt=\E[Z, clear=\Ec, cub=\E[%p1%dD, cud=\E[%p1%dB, 412 cuf=\E[%p1%dC, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, 413 dch=\E[%p1%dP, dispc=\E=%p1%dg, ech=\E[%p1%dX, 414 hpa=\E[%i%p1%dG, hts=\EH, ich=\E[%p1%d@, il=\E[%p1%dL, 415 indn=\E[%p1%dS, rc=\E7, rin=\E[%p1%dT, rmam=\E[?7l, sc=\E7, 416 smam=\E[?7h, tbc=\E[g, vpa=\E[%i%p1%dd, 417 418#### ANSI/ECMA-48 terminals and terminal emulators 419# 420# See near the end of this file for details on ANSI conformance. 421# Don't mess with these entries! Lots of other entries depend on them! 422# 423# This section lists entries in a least-capable to most-capable order. 424# if you're in doubt about what `ANSI' matches yours, try them in that 425# order and back off from the first that breaks. 426 427# ansi-mr is for ANSI terminals with ONLY relative cursor addressing 428# and more than one page of memory. It uses local motions instead of 429# direct cursor addressing, and makes almost no assumptions. It does 430# assume auto margins, no padding and/or xon/xoff, and a 24x80 screen. 431ansi-mr|mem rel cup ansi, 432 am, xon, 433 cols#80, lines#24, use=vanilla, use=ansi+erase, 434 use=ansi+local1, 435 436# ansi-mini is a bare minimum ANSI terminal. This should work on anything, but 437# beware of screen size problems and memory relative cursor addressing. 438ansi-mini|any ansi terminal with pessimistic assumptions, 439 am, xon, 440 cols#80, lines#24, use=vanilla, use=ansi+cup, 441 use=ansi+erase, 442 443# ansi-mtabs adds relative addressing and minimal tab support 444ansi-mtabs|any ansi terminal with pessimistic assumptions, 445 it#8, 446 ht=^I, use=ansi+local1, use=ansi-mini, 447 448# ANSI X3.64 from emory!mlhhh (Hugh Hansard) via BRL 449# 450# The following is an entry for the full ANSI 3.64 (1977). It lacks 451# padding, but most terminals using the standard are "fast" enough 452# not to require any -- even at 9600 bps. If you encounter problems, 453# try including the padding specifications. 454# 455# Note: the :as: and :ae: specifications are not implemented here, for 456# the available termcap documentation does not make clear WHICH alternate 457# character set to specify. ANSI 3.64 seems to make allowances for several. 458# Please make the appropriate adjustments to fit your needs -- that is 459# if you will be using alternate character sets. 460# 461# There are very few terminals running the full ANSI 3.64 standard, 462# so I could only test this entry on one verified terminal (Visual 102). 463# I would appreciate the results on other terminals sent to me. 464# 465# Please report comments, changes, and problems to: 466# 467# U.S. MAIL: Hugh Hansard 468# Box: 22830 469# Emory University 470# Atlanta, GA. 30322. 471# 472# USENET {akgua,msdc,sb1,sb6,gatech}!emory!mlhhh. 473# 474# (Added vt100 <rc>,<sc> to quiet a tic warning --esr) 475ansi77|ansi 3.64 standard 1977 version, 476 OTbs, am, mir, 477 cols#80, it#8, lines#24, 478 bel=^G, clear=\E[;H\E[2J, cr=^M, csr=\E[%i%p1%d;%p2%dr, 479 cub1=^H, cud1=\E[B, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 480 cuu1=\E[A, dch1=\E[P, dl1=\E[M$<5*/>, ed=\E[J, el=\E[K, 481 home=\E[H, ht=^I, il1=\E[L$<5*/>, ind=\ED, kbs=^H, 482 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kf1=\EOP, 483 kf2=\EOR, kf4=\EOS, khome=\E[H, nel=^M\ED, rc=\E8, ri=\EM, 484 rmir=\E[4l, rmso=\E[m, rmul=\E[m, sc=\E7, smir=\E[4h, 485 smso=\E[7m, smul=\E[4m, 486 487# Procomm and some other ANSI emulations don't recognize all of the ANSI- 488# standard capabilities. This entry deletes <cuu>, <cuf>, <cud>, <cub>, and 489# <vpa>/<hpa> capabilities, forcing curses to use repetitions of <cuu1>, 490# <cuf1>, <cud1> and <cub1>. Also deleted <ich> and <ich1>, as QModem up to 491# 5.03 doesn't recognize these. Finally, we delete <rep> and <ri>, which seem 492# to confuse many emulators. On the other hand, we can count on these programs 493# doing <rmacs>/<smacs>/<sgr>. Older versions of this entry featured 494# <invis=\E[9m>, but <invis=\E[8m> now seems to be more common under 495# ANSI.SYS influence. 496# From: Eric S. Raymond <esr@snark.thyrsus.com> Oct 30 1995 497pcansi-m|pcansi-mono|ibm-pc terminal programs claiming to be ansi (mono mode), 498 OTbs, am, mir, msgr, 499 cols#80, it#8, lines#24, 500 bel=^G, cbt=\E[Z, clear=\E[H\E[J, cr=^M, cub1=\E[D, 501 cud1=\E[B, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, 502 dch1=\E[P, dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, ht=^I, 503 hts=\EH, il1=\E[L, ind=^J, kbs=^H, kcub1=\E[D, kcud1=\E[B, 504 kcuf1=\E[C, kcuu1=\E[A, khome=\E[H, tbc=\E[2g, 505 use=klone+sgr-dumb, 506pcansi-25-m|pcansi25m|ibm-pc terminal programs with 25 lines (mono mode), 507 lines#25, use=pcansi-m, 508pcansi-33-m|pcansi33m|ibm-pc terminal programs with 33 lines (mono mode), 509 lines#33, use=pcansi-m, 510pcansi-43-m|ansi43m|ibm-pc terminal programs with 43 lines (mono mode), 511 lines#43, use=pcansi-m, 512# The color versions. All PC emulators do color... 513pcansi|ibm-pc terminal programs claiming to be ansi, 514 use=klone+color, use=pcansi-m, 515pcansi-25|pcansi25|ibm-pc terminal programs with 25 lines, 516 lines#25, use=pcansi, 517pcansi-33|pcansi33|ibm-pc terminal programs with 33 lines, 518 lines#33, use=pcansi, 519pcansi-43|pcansi43|ibm-pc terminal programs with 43 lines, 520 lines#43, use=pcansi, 521 522# ansi-m -- full ANSI X3.64 with ANSI.SYS-compatible attributes, no color. 523# If you want pound signs rather than dollars, replace `B' with `A' 524# in the <s0ds>, <s1ds>, <s2ds>, and <s3ds> capabilities. 525# From: Eric S. Raymond <esr@snark.thyrsus.com> Nov 6 1995 526ansi-m|ansi-mono|ANSI X3.64-1979 terminal with ANSI.SYS compatible attributes, 527 mc5i, 528 cub=\E[%p1%dD, cud=\E[%p1%dB, cuf=\E[%p1%dC, 529 cuu=\E[%p1%dA, dch=\E[%p1%dP, dl=\E[%p1%dM, 530 ech=\E[%p1%dX, el1=\E[1K, hpa=\E[%i%p1%dG, ht=\E[I, 531 ich=\E[%p1%d@, il=\E[%p1%dL, indn=\E[%p1%dS, kbs=^H, 532 kcbt=\E[Z, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 533 kich1=\E[L, mc4=\E[4i, mc5=\E[5i, nel=\r\E[S, 534 rep=%p1%c\E[%p2%{1}%-%db, rin=\E[%p1%dT, s0ds=\E(B, 535 s1ds=\E)B, s2ds=\E*B, s3ds=\E+B, tbc=\E[2g, 536 vpa=\E[%i%p1%dd, use=pcansi-m, 537 538# ansi -- this terminfo expresses the largest subset of X3.64 that will fit in 539# standard terminfo. Assumes ANSI.SYS-compatible attributes and color. 540# From: Eric S. Raymond <esr@snark.thyrsus.com> Nov 6 1995 541ansi|ansi/pc-term compatible with color, 542 u6=\E[%i%d;%dR, u7=\E[6n, u8=\E[?%[;0123456789]c, 543 u9=\E[c, use=ecma+color, use=klone+sgr, use=ansi-m, 544 545# ansi-generic is a vanilla ANSI terminal. This is assumed to implement 546# all the normal ANSI stuff with no extensions. It assumes 547# insert/delete line/char is there, so it won't work with 548# vt100 clones. It assumes video attributes for bold, blink, 549# underline, and reverse, which won't matter much if the terminal 550# can't do some of those. Padding is assumed to be zero, which 551# shouldn't hurt since xon/xoff is assumed. 552ansi-generic|generic ansi standard terminal, 553 am, xon, 554 cols#80, lines#24, use=vanilla, use=ansi+csr, use=ansi+cup, 555 use=ansi+rca, use=ansi+erase, use=ansi+tabs, 556 use=ansi+local, use=ansi+idc, use=ansi+idl, use=ansi+rep, 557 use=ansi+sgrbold, use=ansi+arrows, 558 559#### DOS ANSI.SYS variants 560# 561# This completely describes the sequences specified in the DOS 2.1 ANSI.SYS 562# documentation (except for the keyboard key reassignment feature, which 563# doen't fit the <pfkey> model well). The klone+acs sequences were valid 564# though undocumented. The <pfkey> capability is untested but should work for 565# keys F1-F10 (%p1 values outside this range will yield unpredictable results). 566# From: Eric S. Raymond <esr@snark.thyrsus.com> Nov 7 1995 567ansi.sys-old|ANSI.SYS under PC-DOS 2.1, 568 OTbs, am, mir, msgr, xon, 569 cols#80, lines#25, 570 clear=\E[2J, cub1=^H, cud1=\E[B, cuf1=\E[C, 571 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, el=\E[k, home=\E[H, 572 is2=\E[m\E[?7h, kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, 573 khome=^^, pfkey=\E[0;%p1%{58}%+%d;%p2"%s", rc=\E[u, 574 rmam=\E[?7l, sc=\E[s, smam=\E[?7h, u6=\E[%i%d;%dR, 575 u7=\E[6n, use=klone+color, use=klone+sgr, 576ansi.sys|ANSI.SYS 3.1 and later versions, 577 el=\E[K, use=ansi.sys-old, 578 579# 580# Define IBM PC keypad keys for vi as per MS-Kermit while using ANSI.SYS. 581# This should only be used when the terminal emulator cannot redefine the keys. 582# Since redefining keys with ansi.sys also affects PC-DOS programs, the key 583# definitions must be restored. If the terminal emulator is quit while in vi 584# or others using <smkx>/<rmkx>, the keypad will not be defined as per PC-DOS. 585# The PgUp and PgDn are prefixed with ESC so that tn3270 can be used on Unix 586# (^U and ^D are already defined for tn3270). The ESC is safe for vi but it 587# does "beep". ESC ESC i is used for Ins to avoid tn3270 ESC i for coltab. 588# Note that <kcub1> is always BS, because PC-dos can tolerate this change. 589# Caution: vi is limited to 256 string bytes, longer crashes or weirds out vi. 590# Consequently the End keypad key could not be set (it is relatively safe and 591# actually useful because it sends ^@ O, which beeps and opens a line above). 592ansi.sysk|ansisysk|PC-DOS 3.1 ANSI.SYS with keypad redefined for vi, 593 is2=U2 PC-DOS 3.1 ANSI.SYS with keypad redefined for vi 9-29-86\n\E[;75;8p, 594 rmkx=\E[;71;0;71p\E[;72;0;72p\E[;73;0;73p\E[;77;0;77p\E[;80;0;80p\E[;81;0;81p\E[;82;0;82p\E[;83;0;83p, 595 smkx=\E[;71;30p\E[;72;11p\E[;73;27;21p\E[;77;12p\E[;80;10p\E[;81;27;4p\E[;82;27;27;105p\E[;83;127p, 596 use=ansi.sys, 597# 598# Adds ins/del line/character, hence vi reverse scrolls/inserts/deletes nicer. 599nansi.sys|nansisys|PC-DOS Public Domain NANSI.SYS, 600 dch1=\E[1P, dl1=\E[1M, ich1=\E[1@, il1=\E[1L, 601 is2=U3 PC-DOS Public Domain NANSI.SYS 9-23-86\n, 602 use=ansi.sys, 603# 604# See ansi.sysk and nansi.sys above. 605nansi.sysk|nansisysk|PC-DOS Public Domain NANSI.SYS with keypad redefined for vi, 606 dch1=\E[1P, dl1=\E[1M, ich1=\E[1@, il1=\E[1L, 607 is2=U4 PC-DOS Public Domain NANSI.SYS with keypad redefined for vi 9-29-86\n\E[;75;8p, 608 use=ansi.sysk, 609 610#### ANSI console types 611# 612 613#### BeOS 614# 615# BeOS entry for Terminal program Seems to be almost ANSI 616beterm|BeOS Terminal, 617 am, eo, mir, msgr, xenl, xon, 618 colors#8, cols#80, it#8, lines#25, ncv#5, pairs#64, 619 bel=^G, bold=\E[1m, clear=\E[H\E[J, cr=^M, 620 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 621 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 622 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 623 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, 624 ech=\E[%p1%dX, ed=\E[J, el=\E[K, el1=\E[1K, home=\E[H, 625 hpa=\E[%i%p1%dG, ht=^I, hts=\EH, ich=\E[%p1%d@, ich1=\E[@, 626 il=\E[%p1%dL, il1=\E[L, ind=^J, kbs=^H, kcub1=\E[D, 627 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[3~, 628 kend=\E[4~, kf1=\E[11~, kf10=\E[20~, kf11=\E[21~, 629 kf12=\E[22~, kf2=\E[12~, kf3=\E[13~, kf4=\E[14~, 630 kf5=\E[15~, kf6=\E[16~, kf7=\E[17~, kf8=\E[18~, kf9=\E[19~, 631 khome=\E[1~, kich1=\E[2~, knp=\E[6~, kpp=\E[5~, kspd=^Z, 632 nel=^M^J, op=\E[m, rc=\E8, rev=\E[7m, ri=\EM, rmir=\E[4l, 633 rmkx=\E[?4l, rmso=\E[m, rmul=\E[24m, rs1=\Ec, sc=\E7, 634 setab=\E[4%p1%dm, setaf=\E[3%p1%dm, 635 setb=\E[%p1%{40}%+%cm, setf=\E[%p1%{30}%+%cm, 636 sgr0=\E[0;10m, smir=\E[4h, smkx=\E[?4h, smso=\E[7m, 637 smul=\E[4m, u6=\E[%i%p1%d;%p2%dR, u7=\E[6n, 638 vpa=\E[%i%p1%dd, 639 640#### Linux consoles 641# 642 643# This entry is good for the 1.2.13 or later version of the Linux console. 644# 645# *************************************************************************** 646# * * 647# * WARNING: * 648# * Linuxes come with a default keyboard mapping kcbt=^I. This entry, in * 649# * response to user requests, assumes kcbt=\E[Z, the ANSI/ECMA reverse-tab * 650# * character. Here are the keymap replacement lines that will set this up: * 651# * * 652# keycode 15 = Tab Tab 653# alt keycode 15 = Meta_Tab 654# shift keycode 15 = F26 655# string F26 ="\033[Z" 656# * * 657# * This has to use a key slot which is unfortunate (any unused one will * 658# * do, F26 is the higher-numbered one). The change ought to be built * 659# * into the kernel tables. * 660# * * 661# *************************************************************************** 662# 663# The 1.3.x kernels add color-change capabilities; if yours doesn't have this 664# and it matters, turn off <ccc>. The %02x escape used to implement this is 665# not back-portable to SV curses and not supported in ncurses versions before 666# 1.9.9. All linux kernels since 1.2.13 (at least) set the screen size 667# themselves; this entry assumes that capability. 668# 669# This entry is good for the 1.2.13 or later version of the Linux console. 670# 671# *************************************************************************** 672# * * 673# * WARNING: * 674# * Linuxes come with a default keyboard mapping kcbt=^I. This entry, in * 675# * response to user requests, assumes kcbt=\E[Z, the ANSI/ECMA reverse-tab * 676# * character. Here are the keymap replacement lines that will set this up: * 677# * * 678# keycode 15 = Tab Tab 679# alt keycode 15 = Meta_Tab 680# shift keycode 15 = F26 681# string F26 ="\033[Z" 682# * * 683# * This has to use a key slot which is unfortunate (any unused one will * 684# * do, F26 is the higher-numbered one). The change ought to be built * 685# * into the kernel tables. * 686# * * 687# *************************************************************************** 688# 689# The 1.3.x kernels add color-change capabilities; if yours doesn't have this 690# and it matters, turn off <ccc>. The %02x escape used to implement this is 691# not back-portable to SV curses and not supported in ncurses versions before 692# 1.9.9. All linux kernels since 1.2.13 (at least) set the screen size 693# themselves; this entry assumes that capability. 694# 695# The 2.2.x kernels add a private mode that sets the cursor type; use that to 696# get a block cursor for cvvis. 697# reported by Frank Heckenbach <frank@g-n-u.de>. 698linux|linux console, 699 am, bce, eo, mir, msgr, xenl, xon, 700 it#8, ncv#18, 701 acsc=+\020\,\021-\030.^Y0\333`\004a\261f\370g\361h\260i\316j\331k\277l\332m\300n\305o~p\304q\304r\304s_t\303u\264v\301w\302x\263y\363z\362{\343|\330}\234~\376, 702 bel=^G, civis=\E[?25l\E[?1c, clear=\E[H\E[J, 703 cnorm=\E[?25h\E[?0c, cr=^M, csr=\E[%i%p1%d;%p2%dr, 704 cub1=^H, cud1=^J, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 705 cuu1=\E[A, cvvis=\E[?25h\E[?8c, dch=\E[%p1%dP, dch1=\E[P, 706 dim=\E[2m, dl=\E[%p1%dM, dl1=\E[M, ech=\E[%p1%dX, ed=\E[J, 707 el=\E[K, el1=\E[1K, flash=\E[?5h\E[?5l$<200/>, home=\E[H, 708 hpa=\E[%i%p1%dG, ht=^I, hts=\EH, ich=\E[%p1%d@, ich1=\E[@, 709 il=\E[%p1%dL, il1=\E[L, ind=^J, kb2=\E[G, kbs=\177, 710 kcbt=\E[Z, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 711 kdch1=\E[3~, kend=\E[4~, kf1=\E[[A, kf10=\E[21~, 712 kf11=\E[23~, kf12=\E[24~, kf13=\E[25~, kf14=\E[26~, 713 kf15=\E[28~, kf16=\E[29~, kf17=\E[31~, kf18=\E[32~, 714 kf19=\E[33~, kf2=\E[[B, kf20=\E[34~, kf3=\E[[C, kf4=\E[[D, 715 kf5=\E[[E, kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, 716 khome=\E[1~, kich1=\E[2~, kmous=\E[M, knp=\E[6~, kpp=\E[5~, 717 kspd=^Z, nel=^M^J, rc=\E8, rev=\E[7m, ri=\EM, rmir=\E[4l, 718 rmso=\E[27m, rmul=\E[24m, rs1=\Ec\E]R, sc=\E7, 719 sgr=\E[0;10%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p6%t;1%;%?%p7%t;8%;%?%p9%t;11%;m, 720 smir=\E[4h, smul=\E[4m, tbc=\E[3g, u6=\E[%i%d;%dR, 721 u7=\E[6n, u8=\E[?6c, u9=\E[c, vpa=\E[%i%p1%dd, 722 use=klone+sgr, use=ecma+color, 723linux-m|Linux console no color, 724 colors@, pairs@, 725 setab@, setaf@, setb@, setf@, use=linux, 726linux-c-nc|linux console 1.3.x hack for ncurses only, 727 ccc, 728 initc=\E]P%p1%x%p2%{255}%*%{1000}%/%02x%p3%{255}%*%{1000}%/%02x%p4%{255}%*%{1000}%/%02x, 729 oc=\E]R, use=linux, 730# From: Dennis Henriksen <opus@osrl.dk>, 9 July 1996 731linux-c|linux console 1.3.6+ with private palette for each virtual console, 732 ccc, 733 colors#8, pairs#64, 734 initc=\E]P%?%p1%{9}%>%t%p1%{10}%-%'a'%+%c%e%p1%d%;%p2%{255}%&%Pr%gr%{16}%/%Px%?%gx%{9}%>%t%gx%{10}%-%'A'%+%c%e%gx%d%;%gr%{15}%&%Px%?%gx%{9}%>%t%gx%{10}%-%'A'%+%c%e%gx%d%;%p3%{255}%&%Pr%gr%{16}%/%Px%?%gx%{9}%>%t%gx%{10}%-%'A'%+%c%e%gx%d%;%gr%{15}%&%Px%?%gx%{9}%>%t%gx%{10}%-%'A'%+%c%e%gx%d%;%p4%{255}%&%Pr%gr%{16}%/%Px%?%gx%{9}%>%t%gx%{10}%-%'A'%+%c%e%gx%d%;%gr%{15}%&%Px%?%gx%{9}%>%t%gx%{10}%-%'A'%+%c%e%gx%d%;, 735 oc=\E]R, use=linux, 736 737# See the note on ICH/ICH1 VERSUS RMIR/SMIR near the end of file 738linux-nic|linux with ich/ich1 suppressed for non-curses programs, 739 ich@, ich1@, use=linux, 740 741# This assumes you have used setfont(8) to load one of the Linux koi8-r fonts. 742# acsc entry from Pavel Roskin" <pavel@absolute.spb.su>, 29 Sep 1997. 743linux-koi8|linux with koi8 alternate character set, 744 acsc=+\020\,\021-\030.^Y0\215`\004a\221f\234g\237h\220i\276j\205k\203l\202m\204n\212o~p\0q\0r\0s_t\206u\207v\211w\210x\201y\230z\231{\267|\274~\224, 745 use=linux, use=klone+koi8acs, 746 747# Another entry for KOI8-r with Qing Long's acsc. 748# (which one better complies with the standard?) 749linux-koi8r|linux with koi8-r alternate character set, 750 use=linux, use=klone+koi8acs, 751 752# Entry for the latin1 and latin2 fonts 753linux-lat|linux with latin1 or latin2 alternate character set, 754 acsc=+\020\,\021-\030.^Y0\333`\004a\013f\370g\361h\260i\316j\211k\214l\206m\203n\305o~p\304q\212r\304s_t\207u\215v\301w\302x\205y\363z\362{\343|\330}\234~\376, 755 use=linux, 756 757#### Mach 758# 759 760# From: Matthew Vernon <mcv21@pick.sel.cam.ac.uk> 761mach|Mach Console, 762 am, km, 763 cols#80, it#8, lines#25, 764 bel=^G, blink=\E[5m, bold=\E[1m, clear=\Ec, cr=^M, 765 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=^J, 766 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 767 cuu=\E[%p1%dA, cuu1=\E[A, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, 768 el=\E[K, home=\E[H, ht=^I, il=\E[%p1%dL, il1=\E[L, ind=^J, 769 kbs=^H, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 770 kdch1=\E[9, kend=\E[Y, kf1=\EOP, kf10=\EOY, kf2=\EOQ, 771 kf3=\EOR, kf4=\EOS, kf5=\EOT, kf6=\EOU, kf7=\EOV, kf8=\EOW, 772 kf9=\EOX, khome=\E[H, kich1=\E[@, kll=\E[F, knp=\E[U, 773 kpp=\E[V, rev=\E[7m, rmso=\E[0m, rmul=\E[24m, sgr0=\E[0m, 774 smso=\E[7m, smul=\E[4m, 775mach-bold|Mach Console with bold instead of underline, 776 rmul=\E[0m, smul=\E[1m, use=mach, 777mach-color|Mach Console with ANSI color, 778 colors#8, pairs#64, 779 dim=\E[2m, invis=\E[8m, op=\E[37;40m, rmso=\E[27m, 780 setab=\E[4%p1%dm, setaf=\E[3%p1%dm, use=mach, 781 782#### OSF Unix 783# 784 785# OSF/1 1.1 Snapshot 2 786pmcons|pmconsole|PMAX console, 787 am, 788 cols#128, lines#57, 789 bel=^G, clear=^L, cr=^M, cub1=^H, cud1=^J, cuu1=^K, ht=^I, 790 ind=^J, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 791 kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, 792 793# SCO console and SOS-Syscons console for 386bsd 794# (scoansi: had unknown capabilities 795# :Gc=N:Gd=K:Gh=M:Gl=L:Gu=J:Gv=\072:\ 796# :GC=E:GD=B:GH=D:GL=\64:GU=A:GV=\63:GR=C: 797# :G1=?:G2=Z:G3=@:G4=Y:G5=;:G6=I:G7=H:G8=<:\ 798# :CW=\E[M:NU=\E[N:RF=\E[O:RC=\E[P:\ 799# :WL=\E[S:WR=\E[T:CL=\E[U:CR=\E[V:\ 800# I renamed GS/GE/HM/EN/PU/PD/RT and added klone+sgr-dumb, based 801# on the <smacs>=\E[12m -- esr) 802# 803# klone+sgr-dumb is an error since the acsc does not match -TD 804# 805# In this description based on SCO's keyboard(HW) manpage list of default function key 806# values: 807# F13-F24 are shifted F1-F12 808# F25-F36 are control F1-F12 809# F37-F48 are shift+control F1-F12 810# 811# hpa/vpa work in the console, but not in scoterm: 812# hpa=\E[%p1%dG, 813# vpa=\E[%p1%dd, 814# 815# SCO's terminfo uses 816# kLFT=\E[d, 817# kRIT=\E[c, 818# which do not work (console or scoterm). 819# 820# Console documents only 3 attributes can be set with SGR (so we don't use sgr). 821scoansi|SCO Extended ANSI standard crt, 822 OTbs, am, bce, eo, xon, 823 colors#8, cols#80, it#8, lines#25, pairs#64, 824 acsc=0[5566778899\:\:;;<<==>>FFGGHHIIJJKKLLMMNNOOPPQQRRSSTTUUVVWWXX`ja0fxgqh2jYk?lZm@nEqDtCu4vAwBx3~y, 825 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, 826 civis=\E[=14;12C, clear=\E[2J\E[H, cnorm=\E[=10;12C, 827 cub1=\E[D, cud1=\E[B, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 828 cuu1=\E[A, cvvis=\E[=0;12C, dch1=\E[P, dl=\E[%p1%dM, 829 dl1=\E[M, ed=\E[m\E[J, el=\E[m\E[K, home=\E[H, ht=^I, 830 ich1=\E[@, il=\E[%p1%dL, il1=\E[L, ind=\E[S, 831 indn=\E[%p1%dS, invis=\E[8m, kbeg=\E[E, kbs=^H, kcbt=\E[Z, 832 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=^_, 833 kend=\E[F, kf1=\E[M, kf10=\E[V, kf11=\E[W, kf12=\E[X, 834 kf13=\E[Y, kf15=\E[a, kf16=\E[b, kf17=\E[c, kf18=\E[d, 835 kf19=\E[e, kf2=\E[N, kf20=\E[f, kf21=\E[g, kf22=\E[h, 836 kf23=\E[i, kf24=\E[j, kf25=\E[k, kf26=\E[l, kf27=\E[m, 837 kf28=\E[n, kf29=\E[o, kf3=\E[O, kf30=\E[p, kf31=\E[q, 838 kf32=\E[r, kf33=\E[s, kf34=\E[t, kf35=\E[u, kf36=\E[v, 839 kf37=\E[w, kf38=\E[x, kf39=\E[y, kf4=\E[P, kf40=\E[z, 840 kf41=\E[@, kf42=\E[[, kf43=\E[\\, kf44=\E[], kf45=\E[\^, 841 kf46=\E[_, kf47=\E[`, kf48=\E[{, kf5=\E[Q, kf6=\E[R, 842 kf7=\E[S, kf8=\E[T, kf9=\E[U, khome=\E[H, kich1=\E[L, 843 knp=\E[G, kpp=\E[I, op=\E[37;40m, rev=\E[7m, ri=\E[T, 844 rin=\E[%p1%dT, rmacs=\E[10m, rmam=\E[?7l, rmso=\E[m, 845 rmul=\E[m, setab=\E[4%p1%dm, setaf=\E[3%p1%dm, 846 sgr0=\E[0;10m, smacs=\E[12m, smam=\E[?7h, smso=\E[7m, 847 smul=\E[4m, 848 849# This actually describes the generic SVr4 display driver for Intel boxes. 850# The <dim=\E[2m> isn't documented and therefore may not be reliable. 851# From: Eric Raymond <esr@snark.thyrsus.com> Mon Nov 27 19:00:53 EST 1995 852att6386|at386|386at|AT&T WGS 6386 console, 853 am, bw, eo, xon, 854 cols#80, it#8, lines#25, 855 acsc=``a1fxgqh0jYk?lZm@nEooppqDrrsstCu4vAwBx3yyzz{{||}}~~, 856 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, civis=\E[=C, 857 clear=\E[2J\E[H, cnorm=\E[=1C, cr=^M, cub=\E[%p1%dD, 858 cub1=\E[D, cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, 859 cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, 860 cuu1=\E[A, dch=\E[%p1%dP, dch1=\E[P, dim=\E[2m, 861 dl=\E[%p1%dM, dl1=\E[1M, ech=\E[%p1%dX, ed=\E[J, el=\E[K, 862 home=\E[H, hpa=\E[%i%p1%dG, ht=^I, hts=\EH, ich=\E[%p1%d@, 863 ich1=\E[1@, il=\E[%p1%dL, il1=\E[1L, ind=\E[S, 864 indn=\E[%p1%dS, invis=\E[9m, is2=\E[0;10;39m, kbs=^H, 865 kcbt=^], kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 866 kdch1=\E[P, kend=\E[Y, kf1=\EOP, kf10=\EOY, kf11=\EOZ, 867 kf12=\EOA, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf5=\EOT, kf6=\EOU, 868 kf7=\EOV, kf8=\EOW, kf9=\EOX, khome=\E[H, kich1=\E[@, 869 knp=\E[U, kpp=\E[V, krmir=\E0, nel=\r\E[S, rc=\E8, rev=\E[7m, 870 ri=\E[T, rin=\E[%p1%dT, rmacs=\E[10m, rmso=\E[m, rmul=\E[m, 871 sc=\E7, 872 sgr=\E[10m\E[0%?%p1%p3%|%t;7%;%?%p2%t;4%;%?%p4%t;5%;%?%p5%t;2%;%?%p6%t;1%;%?%p9%t;12%e;10%;%?%p7%t;9%;m, 873 sgr0=\E[0;10m, smacs=\E[12m, smso=\E[7m, smul=\E[4m, 874 tbc=\E[2g, vpa=\E[%i%p1%dd, use=klone+color, 875# (pc6300plus: removed ":KM=/usr/lib/ua/kmap.s5:"; renamed BO/EE/CI/CV -- esr) 876pc6300plus|AT&T 6300 plus, 877 OTbs, am, xon, 878 cols#80, lines#24, 879 bel=^G, blink=\E[5m, bold=\E[1m, civis=\E[=C, 880 clear=\E[2J\E[H, cnorm=\E[=1C, cr=^M, cub1=^H, cud1=\E[B, 881 cuf1=\E[C, cup=\E[%i%p1%2d;%p2%2dH, cuu1=\E[A, 882 dch1=\E[1P, dim=\E[2m, dl1=\E[1M, ed=\E[0J, el=\E[0K, 883 home=\E[H, hts=\EH, ich1=\E[1@, il1=\E[1L, ind=^J, 884 invis=\E[9m, kbs=^H, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, 885 kcuu1=\E[A, kf1=\EOc, kf10=\EOu, kf2=\EOd, kf3=\EOe, 886 kf4=\EOf, kf5=\EOg, kf6=\EOh, kf7=\EOi, kf8=\EOj, kf9=\EOk, 887 nel=^M^J, rev=\E[7m, rmso=\E[m, rmul=\E[m, sgr0=\E[m, 888 smso=\E[7m, smul=\E[4m, tbc=\E[3g, 889 890# From: Benjamin C. W. Sittler <bsittler@nmt.edu> 891# 892# I have a UNIX PC which I use as a terminal attached to my Linux PC. 893# Unfortunately, the UNIX PC terminfo entry that comes with ncurses 894# is broken. All the special key sequences are broken, making it unusable 895# with Emacs. The problem stems from the following: 896# 897# The UNIX PC has a plethora of keys (103 of them, and there's no numeric 898# keypad!), loadable fonts, and strange highlighting modes ("dithered" 899# half-intensity, "smeared" bold, and real strike-out, for example.) It also 900# uses resizable terminal windows, but the bundled terminal program always 901# uses an 80x24 window (and doesn't support seem to support a 132-column 902# mode.) 903# 904# HISTORY: The UNIX PC was one of the first machines with a GUI, and used a 905# library which was a superset of SVr3.5 curses (called tam, for "terminal 906# access method".) tam includes support for real, overlapping windows, 907# onscreen function key labels, and bitmap graphics. But since the primary 908# user interface on the UNIX PC was a GUI program (ua, for "user 909# assistant",) and remote administration was considered important for the 910# machine, tam also supported VT100-compatible terminals attached to the 911# serial port or used across the StarLan network. To simulate the extra keys 912# not present on a VT100, users could press ESC and a two-letter sequence, 913# such as u d (Undo) or U D (Shift-Undo.) These two-letter sequences, 914# however, were not the same as those sent by the actual Undo key. The 915# actual Undo key sends ESC 0 s unshifted, and ESC 0 S shifted, for example. 916# (If you're interested in adding some of the tam calls to ncurses, btw, I 917# have the full documentation and several programs which use tam. It also 918# used an extended terminfo format to describe key sequences, special 919# highlighting modes, etc.) 920# 921# KEYS: This means that ncurses would quite painful on the UNIX PC, since 922# there are two sequences for every key-modifier combination (local keyboard 923# sequence and remote "VT100" sequence.) But I doubt many people are trying 924# to use ncurses on the UNIX PC, since ncurses doesn't properly handle the 925# GUI. Unfortunately, the terminfo entry (and the termcap, too, I presume) 926# seem to have been built from the manual describing the VT100 sequences. 927# This means it doesn't work for a real live UNIX PC. 928# 929# FONTS: The UNIX PC also has a strange interpretation of "alternate 930# character set". Rather than the VT100 graphics you might expect, it allows 931# up to 8 custom fonts to be loaded at any given time. This means that 932# programs expecting VT100 graphics will usually be disappointed. For this 933# reason I have disabled the smacs/rmacs sequences, but they could easily be 934# re-enabled. Here are the relevant control sequences (from the ESCAPE(7) 935# manpage), should you wish to do so: 936# 937# SGR10 - Select font 0 - ESC [ 10 m or SO 938# SGR11 - Select font 1 - ESC [ 11 m or SI 939# SGR12 - Select font 2 - ESC [ 12 m 940# ... (etc.) 941# SGR17 - Select font 7 - ESC [ 17 m 942# 943# Graphics for line drawing are not reliably found at *any* character 944# location because the UNIX PC has dynamically reloadable fonts. I use font 945# 0 for regular text and font 1 for italics, but this is by no means 946# universal. So ASCII line drawing is in order if smacs/rmacs are enabled. 947# 948# MISC: The cursor visible/cursor invisible sequences were swapped in the 949# distributed terminfo. 950# 951# To ameliorate these problems (and fix a few highlighting bugs) I rewrote 952# the UNIX PC terminfo entry. The modified version works great with Lynx, 953# Emacs, and XEmacs running on my Linux PC and displaying on the UNIX PC 954# attached by serial cable. In Emacs, even the Undo key works, and many 955# applications can now use the F1-F8 keys. 956# 957# esr's notes: 958# Terminfo entry for the AT&T Unix PC 7300 959# from escape(7) in Unix PC 7300 Manual. 960# Somewhat similar to a vt100-am (but different enough 961# to redo this from scratch.) 962# 963# /*************************************************************** 964# * 965# * FONT LOADING PROGRAM FOR THE UNIX PC 966# * 967# * This routine loads a font defined in the file ALTFONT 968# * into font memory slot #1. Once the font has been loaded, 969# * it can be used as an alternative character set. 970# * 971# * The call to ioctl with the argument WIOCLFONT is the key 972# * to this routine. For more information, see window(7) in 973# * the PC 7300 documentation. 974# ***************************************************************/ 975# #include <string.h> /* needed for strcpy call */ 976# #include <sys/window.h> /* needed for ioctl call */ 977# #define FNSIZE 60 /* font name size */ 978# #define ALTFONT "/usr/lib/wfont/special.8.ft" /* font file */ 979# /* 980# * The file /usr/lib/wfont/special.8.ft comes with the 981# * standard PC software. It defines a graphics character set 982# * similar to that of the Teletype 5425 terminal. To view 983# * this or other fonts in /usr/lib/wfont, use the command 984# * cfont <filename>. For further information on fonts see 985# * cfont(1) in the PC 7300 documentation. 986# */ 987# 988# struct altfdata /* structure for alt font data */ 989# { 990# short altf_slot; /* memory slot number */ 991# char altf_name[FNSIZE]; /* font name (file name) */ 992# }; 993# ldfont() 994# { 995# int wd; /* window in which altfont will be */ 996# struct altfdata altf; 997# altf.altf_slot=1; 998# strcpy(altf.altf_name,ALTFONT); 999# for (wd =1; wd < 12; wd++) { 1000# ioctl(wd, WIOCLFONT,&altf); 1001# } 1002# } 1003# 1004# (att7300: added <civis>/<cnorm>/<ich1>/<invis> from the BSDI entry, 1005# they're confirmed by the man page for the System V display---esr) 1006# 1007att7300|unixpc|pc7300|3b1|s4|AT&T UNIX PC Model 7300, 1008 am, xon, 1009 cols#80, it#8, lines#24, 1010 bel=^G, blink=\E[9m, bold=\E[1m, cbt=\E^I, civis=\E[=1C, 1011 clear=\E[2J\E[H, cnorm=\E[=0C, cr=^M, cub=\E[%p1%dD, 1012 cub1=^H, cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, 1013 cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, 1014 cuu1=\E[A, dch1=\E[P, dim=\E[2m, dl=\E[%p1%dM, dl1=\E[M, 1015 ed=\E[0J, el=\E[0K, home=\E[H, ich1=\E[@, il=\E[%p1%dL, 1016 il1=\E[L, ind=^J, invis=\E[9m, is1=\017\E[=1w, kBEG=\ENB, 1017 kCAN=\EOW, kCPY=\END, kCRT=\EON, kDC=\ENF, kDL=\ENE, 1018 kEND=\ENN, kEOL=\EOA, kFND=\EOX, kHLP=\EOM, kHOM=\ENM, 1019 kIC=\ENJ, kLFT=\ENK, kMOV=\ENC, kNXT=\ENH, kOPT=\EOR, 1020 kPRV=\ENG, kRDO=\EOT, kRIT=\ENL, kRPL=\EOY, kSAV=\EOO, 1021 kUND=\EOS, kbeg=\ENb, kbs=^H, kcan=\EOw, kcbt=\E[Z, 1022 kclo=\EOV, kclr=\E[J, kcmd=\EOu, kcpy=\ENd, kcrt=\EOn, 1023 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\ENf, 1024 ked=\E[J, kel=\EOa, kend=\E0, kext=\EOk, kf1=\EOc, kf2=\EOd, 1025 kf3=\EOe, kf4=\EOf, kf5=\EOg, kf6=\EOh, kf7=\EOi, kf8=\EOj, 1026 kfnd=\EOx, khlp=\EOm, khome=\E[H, kich1=\ENj, kind=\E[B, 1027 kmov=\ENc, kmrk=\ENi, knp=\E[U, knxt=\ENh, kopn=\EOv, 1028 kopt=\EOr, kpp=\E[V, kprt=\EOz, kprv=\ENg, krdo=\EOt, 1029 kref=\EOb, krfr=\ENa, kri=\E[A, krpl=\EOy, krst=\EOB, 1030 ksav=\EOo, kslt=\ENI, kund=\EOs, nel=\EE, rev=\E[7m, ri=\EM, 1031 rmso=\E[m, rmul=\E[m, sgr0=\E[0;10m, smso=\E[7m, 1032 smul=\E[4m, 1033 1034# Sent by Stefan Stapelberg <stefan@rent-a-guru.de>, 24 Feb 1997, this is 1035# from SGI's terminfo database. SGI's entry shows F9-F12 with the codes 1036# for the application keypad mode. We have added iris-ansi-ap rather than 1037# change the original to keypad mode. 1038# 1039# (iris-ansi: added rmam/smam based on init string -- esr) 1040# 1041# This entry, and those derived from it, is used in xwsh (also known as 1042# winterm). Some capabilities that do not fit into the terminfo model 1043# include the shift- and control-functionkeys: 1044# 1045# F1-F12 generate different codes when shift or control modifiers are used. 1046# For example: 1047# F1 \E[001q 1048# shift F1 \E[013q 1049# control-F1 \E[025q 1050# 1051# In application keypad mode, F9-F12 generate codes like vt100 PF1-PF4, i.e., 1052# \EOP to \EOS. The shifted and control modifiers still do the same thing. 1053# 1054# The cursor keys also have different codes: 1055# control-up \E[162q 1056# control-down \E[165q 1057# control-left \E[159q 1058# control-right \E[168q 1059# 1060# shift-up \E[161q 1061# shift-down \E[164q 1062# shift-left \E[158q 1063# shift-right \E[167q 1064# 1065# control-tab \[072q 1066# 1067iris-ansi|iris-ansi-net|IRIS emulating 40 line ANSI terminal (almost VT100), 1068 am, 1069 cols#80, it#8, lines#40, 1070 bel=^G, bold=\E[1m, clear=\E[H\E[2J, 1071 cnorm=\E[9/y\E[12/y\E[=6l, cr=^M, cub=\E[%p1%dD, 1072 cub1=\E[D, cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, 1073 cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, 1074 cuu1=\E[A, cvvis=\E[10/y\E[=1h\E[=2l\E[=6h, 1075 dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, el1=\E[1K, 1076 home=\E[H, ht=^I, hts=\EH, il=\E[%p1%dL, il1=\E[L, ind=\ED, 1077 is2=\E[?1l\E>\E[?7h\E[100g\E[0m\E7\E[r\E8, kDC=\E[P, 1078 kEND=\E[147q, kHOM=\E[143q, kLFT=\E[158q, kPRT=\E[210q, 1079 kRIT=\E[167q, kSPD=\E[218q, kbs=^H, kcbt=\E[Z, kcub1=\E[D, 1080 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\177, 1081 kend=\E[146q, kent=^M, kf1=\E[001q, kf10=\E[010q, 1082 kf11=\E[011q, kf12=\E[012q, kf2=\E[002q, kf3=\E[003q, 1083 kf4=\E[004q, kf5=\E[005q, kf6=\E[006q, kf7=\E[007q, 1084 kf8=\E[008q, kf9=\E[009q, khome=\E[H, kich1=\E[139q, 1085 knp=\E[154q, kpp=\E[150q, kprt=\E[209q, krmir=\E[146q, 1086 kspd=\E[217q, nel=\EE, pfkey=\EP101;%p1%d.y%p2%s\E\\, 1087 rc=\E8, rev=\E[7m, ri=\EM, rmam=\E[?7l, rmso=\E[m, rmul=\E[m, 1088 sc=\E7, sgr0=\E[m, smam=\E[?7h, smso=\E[1;7m, smul=\E[4m, 1089 tbc=\E[3g, 1090iris-ansi-ap|IRIS ANSI in application-keypad mode, 1091 is2=\E[?1l\E=\E[?7h, kent=\EOM, kf10=\E[010q, 1092 kf11=\E[011q, kf12=\E[012q, kf9=\E[009q, use=iris-ansi, 1093 1094# From the man-page, this is a quasi-vt100 emulator that runs on SGI's IRIX 1095# (T.Dickey 98/1/24) 1096iris-color|xwsh|IRIX ANSI with color, 1097 ncv#33, 1098 csr=\E[%i%p1%d;%p2%dr, dch=\E[%p1%dP, dim=\E[2m, 1099 ech=\E[%p1%dX, ich=\E[%p1%d@, rc=\E8, ritm=\E[23m, 1100 rmul=\E[24m, rs1=\Ec, 1101 rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sc=\E7, 1102 sitm=\E[3m, u6=\E[%i%d;%dR, u7=\E[6n, u8=\E[?1;2c, u9=\E[c, 1103 use=klone+color, use=iris-ansi-ap, 1104 1105# The following is a version of the ibm-pc entry distributed with PC/IX, 1106# (Interactive Systems' System 3 for the Big Blue), modified by Richard 1107# McIntosh at UCB/CSM. The :pt: and :uc: have been removed from the original, 1108# (the former is untrue, and the latter failed under UCB/man); standout and 1109# underline modes have been added. Note: this entry describes the "native" 1110# capabilities of the PC monochrome display, without ANY emulation; most 1111# communications packages (but NOT PC/IX connect) do some kind of emulation. 1112pcix|PC/IX console, 1113 am, bw, eo, 1114 cols#80, lines#24, 1115 clear=\Ec, cub1=^H, cud1=\E[B, cuf1=\E[C, 1116 cup=\E[%i%p1%2d;%p2%2dH, cuu1=\E[A, ed=\E[J, el=\E[K, 1117 home=\E[H, rmso=\E[m, rmul=\E[m, sgr0=\E[m, smso=\E[7m, 1118 smul=\E[4m, 1119 1120# (ibmpcx: this entry used to be known as ibmx. 1121# It formerly included the following extension capabilities: 1122# :GC=b:GL=v:GR=t:RT=^J:\ 1123# :GH=\E[196g:GV=\E[179g:\ 1124# :GU=\E[193g:GD=\E[194g:\ 1125# :G1=\E[191g:G2=\E[218g:G3=\E[192g:G4=\E[217g:\ 1126# :CW=\E[E:NU=\E[F:RF=\E[G:RC=\E[H:\ 1127# :WL=\E[K:WR=\E[L:CL=\E[M:CR=\E[N:\ 1128# I renamed GS/GE/WL/WR/CL/CR/PU/PD/HM/EN; also, removed a duplicate 1129# ":kh=\E[Y:". Added IBM-PC forms characters and highlights, they match 1130# what was there before. -- esr) 1131ibmpcx|xenix|ibmx|IBM PC xenix console display, 1132 OTbs, am, msgr, 1133 cols#80, lines#25, 1134 clear=^L, cub1=^H, cud1=\E[B, cuf1=\E[C, 1135 cup=\E[%p1%d;%p2%dH, cuu1=\E[A, dch1=\E[P, dl1=\E[M, 1136 ed=\E[J, el=\E[K, home=\E[H, ich1=\E[@, il1=\E[L, kbs=^H, 1137 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kend=\E[d, 1138 kf1=\E[K, kf2=\E[L, kf3=\E[M, kf4=\E[N, khome=\E[Y, knp=\E[e, 1139 kpp=\E[Z, use=klone+acs, use=klone+sgr, 1140 1141#### QNX 1142# 1143 1144# QNX 4.0 Console 1145# Michael's original version of this entry had <am@>, <smcup=\Ei>, 1146# <rmcup=\Eh\ER>; this was so terminfo applications could write the lower 1147# right corner without triggering a scroll. The ncurses terminfo library can 1148# handle this case with the <ich1> capability, and prefers <am> for better 1149# optimization. Bug: The <op> capability resets attributes. 1150# From: Michael Hunter <mphunter@qnx.com> 30 Jul 1996 1151# (removed: <sgr=%?%p1%t\E<%;%p2%t\E[%;%p3%t\E(%;%p4%t\E{%;%p6%t\E<%;,>) 1152qnx|qnx4|qnx console, 1153 daisy, km, mir, msgr, xhpa, xt, 1154 colors#8, cols#80, it#4, lines#25, ncv#3, pairs#8, 1155 acsc=O\333a\261j\331k\277l\332m\300n\305o\337q\304s\334t\303u\264v\301w\302x\263, 1156 bel=^G, blink=\E{, bold=\E<, civis=\Ey0, clear=\EH\EJ, 1157 cnorm=\Ey1, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 1158 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, cvvis=\Ey2, 1159 dch1=\Ef, dl1=\EF, ed=\EJ, el=\EK, home=\EH, ht=^I, ich1=\Ee, 1160 il1=\EE, ind=^J, kBEG=\377\356, kCAN=\377\263, 1161 kCMD=\377\267, kCPY=\377\363, kCRT=\377\364, 1162 kDL=\377\366, kEND=\377\301, kEOL=\377\311, 1163 kEXT=\377\367, kFND=\377\370, kHLP=\377\371, 1164 kHOM=\377\260, kIC=\377\340, kLFT=\377\264, 1165 kMOV=\377\306, kMSG=\377\304, kNXT=\377\272, 1166 kOPT=\377\372, kPRT=\377\275, kPRV=\377\262, 1167 kRDO=\377\315, kRES=\377\374, kRIT=\377\266, 1168 kRPL=\377\373, kSAV=\377\307, kSPD=\377\303, 1169 kUND=\377\337, kbeg=\377\300, kcan=\377\243, kcbt=\377\0, 1170 kclo=\377\343, kclr=\377\341, kcmd=\377\245, 1171 kcpy=\377\265, kcrt=\377\305, kctab=\377\237, 1172 kcub1=\377\244, kcud1=\377\251, kcuf1=\377\246, 1173 kcuu1=\377\241, kdch1=\377\254, kdl1=\377\274, 1174 ked=\377\314, kel=\377\310, kend=\377\250, kent=\377\320, 1175 kext=\377\270, kf1=\377\201, kf10=\377\212, 1176 kf11=\377\256, kf12=\377\257, kf13=\377\213, 1177 kf14=\377\214, kf15=\377\215, kf16=\377\216, 1178 kf17=\377\217, kf18=\377\220, kf19=\377\221, 1179 kf2=\377\202, kf20=\377\222, kf21=\377\223, 1180 kf22=\377\224, kf23=\377\333, kf24=\377\334, 1181 kf25=\377\225, kf26=\377\226, kf27=\377\227, 1182 kf28=\377\230, kf29=\377\231, kf3=\377\203, 1183 kf30=\377\232, kf31=\377\233, kf32=\377\234, 1184 kf33=\377\235, kf34=\377\236, kf35=\377\276, 1185 kf36=\377\277, kf37=\377\321, kf38=\377\322, 1186 kf39=\377\323, kf4=\377\204, kf40=\377\324, 1187 kf41=\377\325, kf42=\377\326, kf43=\377\327, 1188 kf44=\377\330, kf45=\377\331, kf46=\377\332, 1189 kf47=\377\316, kf48=\377\317, kf5=\377\205, kf6=\377\206, 1190 kf7=\377\207, kf8=\377\210, kf9=\377\211, kfnd=\377\346, 1191 khlp=\377\350, khome=\377\240, khts=\377\342, 1192 kich1=\377\253, kil1=\377\273, kind=\377\261, 1193 kmov=\377\351, kmrk=\377\355, kmsg=\377\345, 1194 knp=\377\252, knxt=\377\312, kopn=\377\357, 1195 kopt=\377\353, kpp=\377\242, kprt=\377\255, 1196 kprv=\377\302, krdo=\377\336, kref=\377\354, 1197 kres=\377\360, krfr=\377\347, kri=\377\271, 1198 krmir=\377\313, krpl=\377\362, krst=\377\352, 1199 ksav=\377\361, kslt=\377\247, kspd=\377\335, 1200 ktbc=\377\344, kund=\377\365, mvpa=\E!%p1%02d, op=\ER, 1201 rep=\Eg%p2%{32}%+%c%p1%c, rev=\E(, ri=\EI, rmcup=\Eh\ER, 1202 rmso=\E), rmul=\E], rs1=\ER, setb=\E@%p1%Pb%gb%gf%d%d, 1203 setf=\E@%p1%Pf%gb%gf%d%d, sgr0=\E}\E]\E>\E), smcup=\Ei, 1204 smso=\E(, smul=\E[, 1205# 1206# 1207qnxt|qnxt4|QNX4 terminal, 1208 crxm, use=qnx4, 1209# 1210qnxm|QNX4 with mouse events, 1211 maddr#1, 1212 chr=\E/, cvr=\E", is1=\E/0t, mcub=\E/>1h, mcub1=\E/>7h, 1213 mcud=\E/>1h, mcud1=\E/>1l\E/>9h, mcuf=\E/>1h\E/>9l, 1214 mcuf1=\E/>7l, mcuu=\E/>6h, mcuu1=\E/>6l, rmicm=\E/>2l, 1215 smicm=\E/>2h, use=qnx4, 1216# 1217qnxw|QNX4 windows, 1218 xvpa, use=qnxm, 1219# 1220# Monochrome QNX4 terminal or console. Setting this terminal type will 1221# allow an application running on a color console to behave as if it 1222# were a monochrome terminal. Output will be through stdout instead of 1223# console writes because the term routines will recognize that the 1224# terminal name starts with 'qnxt'. 1225# 1226qnxtmono|Monochrome QNX4 terminal or console, 1227 colors@, pairs@, 1228 scp@, use=qnx4, 1229 1230# From: Federico Bianchi <bianchi@pc-arte2.arte.unipi.it>, 1 Jul 1998 1231# (esr: commented out <scp> and <rmcup> to avoid warnings.) 1232# (TD: derive from original qnx4 entry) 1233qnxt2|qnx 2.15 serial terminal, 1234 am, 1235 civis@, cnorm@, cvvis@, dch1@, ich1@, kRES@, kRPL@, kUND@, kspd@, 1236 rep@, rmcup@, rmso=\E>, setb@, setf@, smcup@, smso=\E<, use=qnx4, 1237 1238# QNX ANSI terminal definition 1239qansi-g|QNX ANSI, 1240 am, eslok, hs, xon, 1241 colors#8, cols#80, it#8, lines#25, ncv#19, pairs#64, wsl#80, 1242 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~Oa, 1243 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, civis=\E[?25l, 1244 clear=\E[2J\E[H, cnorm=\E[?25h\E[?12l, cr=^M, 1245 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=\E[D, 1246 cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, 1247 cup=\E[%i%p1%d;%p2%dH$<5>, cuu=\E[%p1%dA, cuu1=\E[A, 1248 cvvis=\E[?12;25h, dch=\E[%p1%dP, dch1=\E[P, dim=\E[2m, 1249 dl=\E[%p1%dM, dl1=\E[1M, dsl=\E[r, ech=\E[%p1%dX, ed=\E[J, 1250 el=\E[K, el1=\E[1K\E[X, flash=\E[?5h$<200>\E[?5l, 1251 fsl=\E[?6h\E8, home=\E[H, hpa=\E[%i%p1%dG, ht=^I, hts=\EH, 1252 ich=\E[%p1%d@, ich1=\E[1@, il=\E[%p1%dL, il1=\E[1L, 1253 ind=\E[S, indn=\E[%p1%dS, invis=\E[9m, 1254 is2=\E>\E[?1l\E[?7h\E[0;10;39;49m, is3=\E(B\E)0, 1255 kBEG=\ENn, kCAN=\E[s, kCMD=\E[t, kCPY=\ENs, kCRT=\ENt, 1256 kDL=\ENv, kEXT=\ENw, kFND=\ENx, kHLP=\ENy, kHOM=\E[h, 1257 kLFT=\E[d, kNXT=\E[u, kOPT=\ENz, kPRV=\E[v, kRIT=\E[c, 1258 kbs=^H, kcan=\E[S, kcbt=\E[Z, kclo=\ENc, kclr=\ENa, 1259 kcmd=\E[G, kcpy=\E[g, kctab=\E[z, kcub1=\E[D, kcud1=\E[B, 1260 kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[P, kdl1=\E[p, kend=\E[Y, 1261 kext=\E[y, kf1=\EOP, kf10=\EOY, kf11=\EOZ, kf12=\EOA, 1262 kf13=\EOp, kf14=\EOq, kf15=\EOr, kf16=\EOs, kf17=\EOt, 1263 kf18=\EOu, kf19=\EOv, kf2=\EOQ, kf20=\EOw, kf21=\EOx, 1264 kf22=\EOy, kf23=\EOz, kf24=\EOa, kf25=\E[1~, kf26=\E[2~, 1265 kf27=\E[3~, kf28=\E[4~, kf29=\E[5~, kf3=\EOR, kf30=\E[6~, 1266 kf31=\E[7~, kf32=\E[8~, kf33=\E[9~, kf34=\E[10~, 1267 kf35=\E[11~, kf36=\E[12~, kf37=\E[17~, kf38=\E[18~, 1268 kf39=\E[19~, kf4=\EOS, kf40=\E[20~, kf41=\E[21~, 1269 kf42=\E[22~, kf43=\E[23~, kf44=\E[24~, kf45=\E[25~, 1270 kf46=\E[26~, kf47=\E[27~, kf48=\E[28~, kf5=\EOT, kf6=\EOU, 1271 kf7=\EOV, kf8=\EOW, kf9=\EOX, kfnd=\ENf, khlp=\ENh, 1272 khome=\E[H, khts=\ENb, kich1=\E[@, kil1=\E[`, kind=\E[a, 1273 kmov=\ENi, kmrk=\ENm, kmsg=\ENe, knp=\E[U, kopn=\ENo, 1274 kopt=\ENk, kpp=\E[V, kref=\ENl, kres=\ENp, krfr=\ENg, 1275 kri=\E[b, krpl=\ENr, krst=\ENj, ksav=\ENq, kslt=\E[T, 1276 ktbc=\ENd, kund=\ENu, ll=\E[99H, nel=\EE, op=\E[39;49m, 1277 rep=%p1%c\E[%p2%{1}%-%db, rev=\E[7m, ri=\E[T, 1278 rin=\E[%p1%dT, rmacs=^O, rmam=\E[?7l, rmso=\E[27m, 1279 rmul=\E[24m, rs1=\017\E[?7h\E[0;39;49m$<2>\E>\E[?1l, 1280 rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, 1281 setb=\E[4%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m, 1282 setf=\E[3%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m, 1283 sgr=\E[0%?%p6%t;1%;%?%p5%t;2%;%?%p2%t;4%;%?%p4%t;5%;%?%p3%p1%|%t;7%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 1284 sgr0=\E[m\017, smacs=^N, smam=\E[?7h, smso=\E[7m, 1285 smul=\E[4m, tbc=\E[2g, 1286 tsl=\E7\E1;24r\E[?6l\E[25;%i%p1%dH, 1287# 1288qansi|QNX ansi with console writes, 1289 daisy, xhpa, use=qansi-g, 1290# 1291qansi-t|QNX ansi without console writes, 1292 crxm, use=qansi, 1293# 1294qansi-m|QNX ansi with mouse, 1295 maddr#1, 1296 chr=\E[, cvr=\E], is1=\E[0t, mcub=\E[>1h, mcub1=\E[>7h, 1297 mcud=\E[>1h, mcud1=\E[>1l\E[>9h, mcuf=\E[>1h\E[>9l, 1298 mcuf1=\E[>7l, mcuu=\E[>6h, mcuu1=\E[>6l, rmicm=\E[>2l, 1299 smicm=\E[>2h, use=qansi, 1300# 1301qansi-w|QNX ansi for windows, 1302 xvpa, use=qansi-m, 1303 1304#### NetBSD consoles 1305# 1306# pcvt termcap database entries (corresponding to release 3.31) 1307# Author's last edit-date: [Fri Sep 15 20:29:10 1995] 1308# 1309# (For the terminfo master file, I translated these into terminfo syntax. 1310# Then I dropped all the pseudo-HP entries. we don't want and can't use 1311# the :Xs: flag. Then I split :is: into a size-independent <is1> and a 1312# size-dependent <is2>. Finally, I added <rmam>/<smam> -- esr) 1313 1314# NOTE: <ich1> has been taken out of this entry. for reference, it should 1315# be <ich1=\E[@>. For discussion, see ICH/ICH1 VERSUS RMIR/SMIR below. 1316# (esr: added <civis> and <cnorm> to resolve NetBSD Problem Report #4583) 1317pcvtXX|pcvt vt200 emulator (DEC VT220), 1318 am, km, mir, msgr, xenl, 1319 it#8, vt#3, 1320 acsc=++\,\,--..00``aaffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz~~, 1321 bel=^G, blink=\E[5m, bold=\E[1m, civis=\E[?25l, 1322 clear=\E[H\E[J, cnorm=\E[?25h, cr=^M, 1323 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 1324 cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, 1325 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 1326 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, 1327 el=\E[K, el1=\E[1K, home=\E[H, ht=^I, hts=\EH, ich=\E[%p1%d@, 1328 il=\E[%p1%dL, il1=\E[L, ind=\ED, indn=\E[%p1%dS, 1329 is1=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, kbs=\177, 1330 kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kdch1=\E[3~, 1331 kf1=\EOP, kf10=\E[29~, kf2=\EOQ, kf3=\EOR, kf4=\EOS, 1332 kf5=\E[17~, kf6=\E[18~, kf7=\E[19~, kf8=\E[20~, kf9=\E[21~, 1333 khome=\E[1~, kich1=\E[2~, kll=\E[4~, knp=\E[6~, kpp=\E[5~, 1334 nel=\EE, rc=\E8, rev=\E[7m, rf=/usr/share/tabset/vt100, 1335 ri=\EM, rin=\E[%p1%dT, rmacs=\E(B, rmam=\E[?7l, rmir=\E[4l, 1336 rmkx=\E[?1l\E>, rmso=\E[27m, rmul=\E[24m, 1337 rs1=\Ec\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sc=\E7, 1338 sgr0=\E[m, smacs=\E(0, smam=\E[?7h, smir=\E[4h, 1339 smkx=\E[?1h\E=, smso=\E[7m, smul=\E[4m, tbc=\E[3g, 1340 1341# NetBSD/FreeBSD vt220 terminal emulator console (pc keyboard & monitor) 1342# termcap entries for pure VT220-Emulation and 25, 28, 35, 40, 43 and 1343# 50 lines entries; 80 columns 1344pcvt25|dec vt220 emulation with 25 lines, 1345 cols#80, lines#25, 1346 is2=\E[1;25r\E[25;1H, use=pcvtXX, use=ecma+color, 1347pcvt28|dec vt220 emulation with 28 lines, 1348 cols#80, lines#28, 1349 is2=\E[1;28r\E[28;1H, use=pcvtXX, 1350pcvt35|dec vt220 emulation with 35 lines, 1351 cols#80, lines#35, 1352 is2=\E[1;35r\E[35;1H, use=pcvtXX, 1353pcvt40|dec vt220 emulation with 40 lines, 1354 cols#80, lines#40, 1355 is2=\E[1;40r\E[40;1H, use=pcvtXX, 1356pcvt43|dec vt220 emulation with 43 lines, 1357 cols#80, lines#43, 1358 is2=\E[1;43r\E[43;1H, use=pcvtXX, 1359pcvt50|dec vt220 emulation with 50 lines, 1360 cols#80, lines#50, 1361 is2=\E[1;50r\E[50;1H, use=pcvtXX, 1362 1363# NetBSD/FreeBSD vt220 terminal emulator console (pc keyboard & monitor) 1364# termcap entries for pure VT220-Emulation and 25, 28, 35, 40, 43 and 1365# 50 lines entries; 132 columns 1366pcvt25w|dec vt220 emulation with 25 lines and 132 cols, 1367 cols#132, lines#25, 1368 is2=\E[1;25r\E[25;1H, use=pcvtXX, 1369pcvt28w|dec vt220 emulation with 28 lines and 132 cols, 1370 cols#132, lines#28, 1371 is2=\E[1;28r\E[28;1H, use=pcvtXX, 1372pcvt35w|dec vt220 emulation with 35 lines and 132 cols, 1373 cols#132, lines#35, 1374 is2=\E[1;35r\E[35;1H, use=pcvtXX, 1375pcvt40w|dec vt220 emulation with 40 lines and 132 cols, 1376 cols#132, lines#40, 1377 is2=\E[1;40r\E[40;1H, use=pcvtXX, 1378pcvt43w|dec vt220 emulation with 43 lines and 132 cols, 1379 cols#132, lines#43, 1380 is2=\E[1;43r\E[43;1H, use=pcvtXX, 1381pcvt50w|dec vt220 emulation with 50 lines and 132 cols, 1382 cols#132, lines#50, 1383 is2=\E[1;50r\E[50;1H, use=pcvtXX, 1384 1385# Terminfo entries to enable the use of the ncurses library in colour on a 1386# NetBSD-arm32 console (only tested on a RiscPC). 1387# Created by Dave Millen <dmill@globalnet.co.uk> 22.07.98 1388# modified codes for setf/setb to setaf/setab, then to klone+color, corrected 1389# typo in invis - TD 1390arm100|arm100-am|Arm(RiscPC) ncurses compatible (for 640x480), 1391 am, bce, msgr, xenl, xon, 1392 cols#80, it#8, lines#30, 1393 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 1394 bel=^G, blink=\E[5m$<2>, bold=\E[1m$<2>, 1395 clear=\E[H\E[J$<50>, cr=^M, csr=\E[%i%p1%d;%p2%dr, 1396 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=^J, 1397 cuf=\E[%p1%dC, cuf1=\E[C$<2>, 1398 cup=\E[%i%p1%d;%p2%dH$<5>, cuu=\E[%p1%dA, 1399 cuu1=\E[A$<2>, ed=\E[J$<50>, el=\E[K$<3>, el1=\E[1K$<3>, 1400 enacs=\E(B\E)0, home=\E[H, ht=^I, hts=\EH, ind=^J, 1401 invis=\E[8m$<2>, ka1=\E[q, ka3=\E[s, kb2=\E[r, kbs=^H, 1402 kc1=\E[p, kc3=\E[n, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, 1403 kcuu1=\E[A, kent=\E[M, kf0=\E[y, kf1=\E[P, kf10=\E[x, 1404 kf2=\E[Q, kf3=\E[R, kf4=\E[S, kf5=\E[t, kf6=\E[u, kf7=\E[v, 1405 kf8=\E[l, kf9=\E[w, rc=\E8, rev=\E[6m$<2>, ri=\EM$<5>, 1406 rmacs=^O, rmam=\E[?7l, rmkx=\E[?1l\E>, rmso=\E[m$<2>, 1407 rmul=\E[m$<2>, rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, 1408 sc=\E7, 1409 sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;, 1410 sgr0=\E[m\017$<2>, smacs=^N, smam=\E[?7h, smkx=\E[?1h\E=, 1411 smso=\E[7m$<2>, smul=\E[4m$<2>, tbc=\E[3g, use=ecma+sgr, 1412 use=klone+color, 1413 1414arm100-w|arm100-wam|Arm(RiscPC) ncurses compatible (for 1024x768), 1415 cols#132, lines#50, use=arm100, 1416 1417# NetBSD/x68k console vt200 emulator. This port runs on a 68K machine 1418# manufactured by Sharp for the Japenese market. 1419# From Minoura Makoto <minoura@netlaputa.or.jp>, 12 May 1996 1420x68k|x68k-ite|NetBSD/x68k ITE, 1421 cols#96, lines#32, 1422 kclr=\E[9~, khlp=\E[28~, use=vt220, 1423 1424# <tv@pobox.com>: 1425# Entry for the DNARD OpenFirmware console, close to ANSI but not quite. 1426# 1427# (still unfinished, but good enough so far.) 1428ofcons, 1429 bw, 1430 cols#80, lines#30, 1431 bel=^G, blink=\2337;2m, bold=\2331m, clear=^L, cr=^M, 1432 cub=\233%p1%dD, cub1=\233D, cud=\233%p1%dB, cud1=\233B, 1433 cuf=\233%p1%dC, cuf1=\233C, cup=\233%i%p1%d;%p2%dH, 1434 cuu=\233%p1%dA, cuu1=\233A, dch=\233%p1%dP, dch1=\233P, 1435 dim=\2332m, dl=\233%p1%dM, dl1=\233M, ed=\233J, el=\233K, 1436 flash=^G, ht=^I, ich=\233%p1%d@, ich1=\233@, il=\233%p1%dL, 1437 il1=\233L, ind=^J, invis=\2338m, kbs=^H, kcub1=\233D, 1438 kcud1=\233B, kcuf1=\233C, kcuu1=\233A, kdch1=\233P, 1439 kf1=\2330P, kf10=\2330M, kf2=\2330Q, kf3=\2330W, 1440 kf4=\2330x, kf5=\2330t, kf6=\2330u, kf7=\2330q, kf8=\2330r, 1441 kf9=\2330p, knp=\233/, kpp=\233?, nel=^M^J, rev=\2337m, 1442 rmso=\2330m, rmul=\2330m, sgr0=\2330m, 1443 1444# NetBSD "wscons" emulator in vt220 mode 1445# These are micro-minimal and probably need to be redone for real 1446# after the manner of the pcvt entries. 1447wsvt25|NetBSD wscons in 25 line DEC VT220 mode, 1448 cols#80, lines#25, use=wsvtg, 1449 1450wsvt25m|NetBSD wscons in 25 line DEC VT220 mode with Meta, 1451 km, use=wsvt25, 1452 1453wsvtg|MirBSD wscons in generic DEC VT220 mode, 1454 bce, msgr, op=\E[m, 1455 kf1=\E[11~, kf2=\E[12~, kf3=\E[13~, kf4=\E[14~, 1456 kf5=\E[15~, kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, 1457 kf9=\E[20~, kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, 1458 use=klone+color, 1459 use=vt220, 1460 1461# `rasterconsole' provided by 4.4BSD, NetBSD and OpenBSD on SPARC, and 1462# DECstation/pmax. 1463rcons|BSD rasterconsole, 1464 use=sun-il, 1465# Color version of above. Color currenly only provided by NetBSD. 1466rcons-color|BSD rasterconsole with ANSI color, 1467 bce, 1468 colors#8, pairs#64, 1469 op=\E[m, setab=\E[4%p1%dm, setaf=\E[3%p1%dm, use=rcons, 1470 1471# mgterm -- MGL/MGL2, MobileGear Graphic Library 1472# for PocketBSD,PocketLinux,NetBSD/{hpcmips,mac68k} 1473# -- the setf/setb are probably incorrect, more likely setaf/setab -TD 1474# -- compare with cons25w 1475mgterm, 1476 OTbs, OTpt, am, bce, bw, eo, km, msgr, npc, 1477 colors#8, cols#80, it#8, lines#18, pairs#64, 1478 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, clear=\E[H\E[J, 1479 cr=^M, csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 1480 cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, 1481 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 1482 dch=\E[%p1%dP, dch1=\E[P, dim=\E[30;1m, dl=\E[%p1%dM, 1483 dl1=\E[M, ech=\E[%p1%dX, ed=\E[J, el=\E[K, el1=\E[1K, 1484 home=\E[H, hpa=\E[%i%p1%d`, ht=^I, ich=\E[%p1%d@, 1485 ich1=\E[@, il=\E[%p1%dL, il1=\E[L, ind=\E[S, 1486 indn=\E[%p1%dS, kb2=\E[E, kbs=^H, kcbt=\E[Z, kcub1=\E[D, 1487 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\177, kend=\E[F, 1488 kf1=\E[M, kf10=\E[V, kf11=\E[W, kf12=\E[X, kf2=\E[N, 1489 kf3=\E[O, kf4=\E[P, kf5=\E[Q, kf6=\E[R, kf7=\E[S, kf8=\E[T, 1490 kf9=\E[U, khome=\E[H, kich1=\E[L, knp=\E[G, kpp=\E[I, 1491 nel=\E[E, op=\E[x, rc=\E8, rev=\E[7m, ri=\E[T, rin=\E[%p1%dT, 1492 rmso=\E[m, rs2=\E[x\E[m\Ec, sc=\E7, setb=\E[4%p1%dm, 1493 setf=\E[3%p1%dm, sgr0=\E[m, smso=\E[7m, vpa=\E[%i%p1%dd, 1494 1495#### FreeBSD console entries 1496# 1497# From: Andrey Chernov <ache@astral.msk.su> 29 Mar 1996 1498# Andrey Chernov maintains the FreeBSD termcap distributions. 1499# 1500# Note: Users of FreeBSD 2.1.0 and older versions must either upgrade 1501# or comment out the :cb: capability in the console entry. 1502# 1503# Alexander Lukyanov reports: 1504# I have seen FreeBSD-2.1.5R... The old el1 bug changed, but it is still there. 1505# Now el1 clears not only to the line beginning, but also a large chunk 1506# of previous line. But there is another bug - ech does not work at all. 1507# 1508 1509# for syscons 1510# common entry without semigraphics 1511# Bug: The <op> capability resets attributes. 1512# Bug? The ech and el1 attributes appear to move the cursor in some cases; for 1513# instance el1 does if the cursor is moved to the right margin first. Removed 1514# by T.Dickey 97/5/3 (ech=\E[%p1%dX, el1=\E[1K) 1515# 1516# Setting colors turns off reverse; we cannot guarantee order, so use ncv. 1517# Note that this disables standout with color. 1518cons25w|ansiw|ansi80x25-raw|freebsd console (25-line raw mode), 1519 am, bce, bw, eo, msgr, npc, 1520 colors#8, cols#80, it#8, lines#25, ncv#21, pairs#64, 1521 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, clear=\E[H\E[J, 1522 cnorm=\E[=0C, cr=^M, cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, 1523 cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, 1524 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 1525 cvvis=\E[=1C, dch=\E[%p1%dP, dch1=\E[P, dim=\E[30;1m, 1526 dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, 1527 hpa=\E[%i%p1%d`, ht=^I, ich=\E[%p1%d@, ich1=\E[@, 1528 il=\E[%p1%dL, il1=\E[L, ind=\E[S, indn=\E[%p1%dS, kb2=\E[E, 1529 kbs=^H, kcbt=\E[Z, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, 1530 kcuu1=\E[A, kdch1=\177, kend=\E[F, kf1=\E[M, kf10=\E[V, 1531 kf11=\E[W, kf12=\E[X, kf2=\E[N, kf3=\E[O, kf4=\E[P, kf5=\E[Q, 1532 kf6=\E[R, kf7=\E[S, kf8=\E[T, kf9=\E[U, khome=\E[H, 1533 kich1=\E[L, knp=\E[G, kpp=\E[I, nel=\E[E, op=\E[x, rev=\E[7m, 1534 ri=\E[T, rin=\E[%p1%dT, rmso=\E[m, rs2=\E[x\E[m\Ec, 1535 setab=\E[4%p1%dm, setaf=\E[3%p1%dm, sgr0=\E[m, 1536 smso=\E[7m, vpa=\E[%i%p1%dd, 1537cons25|ansis|ansi80x25|freebsd console (25-line ansi mode), 1538 acsc=-\030.^Y0\333`\004a\260f\370g\361h\261i\025j\331k\277l\332m\300n\305q\304t\303u\264v\301w\302x\263y\363z\362~\371, 1539 use=cons25w, 1540cons25-m|ansis-mono|ansi80x25-mono|freebsd console (25-line mono ansi mode), 1541 colors@, pairs@, 1542 bold@, dim@, op@, rmul=\E[m, setab@, setaf@, smul=\E[4m, 1543 use=cons25, 1544cons30|ansi80x30|freebsd console (30-line ansi mode), 1545 lines#30, use=cons25, 1546cons30-m|ansi80x30-mono|freebsd console (30-line mono ansi mode), 1547 lines#30, use=cons25-m, 1548cons43|ansi80x43|freebsd console (43-line ansi mode), 1549 lines#43, use=cons25, 1550cons43-m|ansi80x43-mono|freebsd console (43-line mono ansi mode), 1551 lines#43, use=cons25-m, 1552cons50|ansil|ansi80x50|freebsd console (50-line ansi mode), 1553 lines#50, use=cons25, 1554cons50-m|ansil-mono|ansi80x50-mono|freebsd console (50-line mono ansi mode), 1555 lines#50, use=cons25-m, 1556cons60|ansi80x60|freebsd console (60-line ansi mode), 1557 lines#60, use=cons25, 1558cons60-m|ansi80x60-mono|freebsd console (60-line mono ansi mode), 1559 lines#60, use=cons25-m, 1560cons25r|pc3r|ibmpc3r|cons25-koi8-r|freebsd console w/koi8-r cyrillic, 1561 acsc=-\030.^Y0\215`\004a\220f\234h\221i\025j\205k\203l\202m\204n\212q\0t\206u\207v\211w\210x\201y\230z\231~\225, 1562 use=cons25w, 1563cons25r-m|pc3r-m|ibmpc3r-mono|cons25-koi8r-m|freebsd console w/koi8-r cyrillic (mono), 1564 colors@, pairs@, 1565 op@, rmul=\E[m, setab@, setaf@, smul=\E[4m, use=cons25r, 1566cons50r|cons50-koi8r|freebsd console w/koi8-r cyrillic (50 lines), 1567 lines#50, use=cons25r, 1568cons50r-m|cons50-koi8r-m|freebsd console w/koi8-r cyrillic (50-line mono), 1569 lines#50, use=cons25r-m, 1570cons60r|cons60-koi8r|freebsd console w/koi8-r cyrillic (60 lines), 1571 lines#60, use=cons25r, 1572cons60r-m|cons60-koi8r-m|freebsd console w/koi8-r cyrillic (60-line mono), 1573 lines#60, use=cons25r-m, 1574# ISO 8859-1 FreeBSD console 1575cons25l1|cons25-iso8859|freebsd console w/iso 8859-1 chars, 1576 acsc=+\253\,\273-\030.\031`\201a\202f\207g\210i\247j\213k\214l\215m\216n\217o\220p\221q\222r\223s\224t\225u\226v\227w\230x\231y\232z\233~\237, 1577 use=cons25w, 1578cons25l1-m|cons25-iso-m|freebsd console w/iso 8859-1 chars (mono), 1579 colors@, pairs@, 1580 bold@, dim@, op@, rmul=\E[m, setab@, setaf@, smul=\E[4m, 1581 use=cons25l1, 1582cons50l1|cons50-iso8859|freebsd console w/iso 8859-1 chars (50 lines), 1583 lines#50, use=cons25l1, 1584cons50l1-m|cons50-iso-m|freebsd console w/iso 8859-1 chars (50-line mono), 1585 lines#50, use=cons25l1-m, 1586cons60l1|cons60-iso|freebsd console w/iso 8859-1 chars (60 lines), 1587 lines#60, use=cons25l1, 1588cons60l1-m|cons60-iso-m|freebsd console w/iso 8859-1 chars (60-line mono), 1589 lines#60, use=cons25l1-m, 1590 1591#### 386BSD and BSD/OS Consoles 1592# 1593 1594# This was the original 386BSD console entry (I think). 1595# Some places it's named oldpc3|oldibmpc3. 1596# From: Alex R.N. Wetmore <aw2t@andrew.cmu.edu> 1597origpc3|origibmpc3|IBM PC 386BSD Console, 1598 OTbs, am, bw, eo, xon, 1599 cols#80, lines#25, 1600 acsc=j\331k\277l\332m\300n\305q\304t\303u\264v\301w\302x\263, 1601 bold=\E[7m, clear=\Ec, cub1=^H, cud1=\E[B, cuf1=\E[C, 1602 cup=\E[%i%p1%2d;%p2%2dH, cuu1=\E[A, ed=\E[J, el=\E[K, 1603 home=\E[H, ind=\E[S, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, 1604 kcuu1=\E[A, khome=\E[Y, ri=\E[T, rmso=\E[1;0x\E[2;7x, 1605 rmul=\E[1;0x\E[2;7x, sgr0=\E[m\E[1;0x\E[2;7x, 1606 smso=\E[1;7x\E[2;0x, smul=\E[1;7x\E[2;0x, 1607 1608# description of BSD/386 console emulator in version 1.0 (supplied by BSDI) 1609oldpc3|oldibmpc3|old IBM PC BSD/386 Console, 1610 OTbs, km, 1611 lines#25, 1612 bel=^G, bold=\E[=15F, cr=^M, cud1=^J, dim=\E[=8F, dl1=\E[M, 1613 ht=^I, il1=\E[L, ind=^J, kbs=^H, kcub1=\E[D, kcud1=\E[B, 1614 kcuf1=\E[C, kcuu1=\E[A, khome=\E[H, kich1=\E[L, kll=\E[F, 1615 knp=\E[G, kpp=\E[I, nel=^M^J, sgr0=\E[=R, 1616 1617# Description of BSD/OS console emulator in version 1.1, 2.0, 2.1 1618# Note, the emulator supports many of the additional console features 1619# listed in the iBCS2 (e.g. character-set selection) though not all 1620# are described here. This entry really ought to be upgraded. 1621# Also note, the console will also work with fewer lines after doing 1622# "stty rows NN", e.g. to use 24 lines. 1623# (Color support from Kevin Rosenberg <kevin@cyberport.com>, 2 May 1996) 1624# Bug: The <op> capability resets attributes. 1625bsdos-pc|IBM PC BSD/OS Console, 1626 sgr=\E[0;10%?%p1%t;7%;%?%p2%t;1%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;%?%p7%t;8%;%?%p9%t;11%;m, 1627 use=bsdos-pc-nobold, 1628 1629bsdos-pc-nobold|BSD/OS PC console w/o bold, 1630 use=klone+color, use=bsdos-pc-m, 1631 1632bsdos-pc-m|bsdos-pc-mono|BSD/OS PC console mono, 1633 OTbs, am, eo, km, xon, 1634 cols#80, it#8, lines#25, 1635 bel=^G, clear=\Ec, cr=^M, cub=\E[%p1%dD, cub1=^H, 1636 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 1637 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 1638 dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, ht=^I, 1639 il=\E[%p1%dL, il1=\E[L, ind=^J, kbs=^H, kcub1=\E[D, 1640 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, khome=\E[H, kich1=\E[L, 1641 kll=\E[F, knp=\E[G, kpp=\E[I, nel=^M^J, rc=\E8, sc=\E7, 1642 sgr=\E[0;10%?%p1%t;7%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;%?%p7%t;8%;%?%p9%t;11%;m%?%p5%t\E[=8F%;, 1643 use=klone+sgr, 1644 1645# Old names for BSD/OS PC console used in releases before 4.1. 1646pc3|BSD/OS on the PC Console, 1647 use=bsdos-pc-nobold, 1648ibmpc3|pc3-bold|BSD/OS on the PC Console with bold instead of underline, 1649 use=bsdos-pc, 1650 1651# BSD/OS on the SPARC 1652bsdos-sparc|Sun SPARC BSD/OS Console, 1653 use=sun, 1654 1655# BSD/OS on the PowerPC 1656bsdos-ppc|PowerPC BSD/OS Console, 1657 use=bsdos-pc, 1658 1659#### DEC VT52 1660# (<acsc>/<rmacs>/<smacs> capabilities aren't in DEC's official entry -- esr) 1661vt52|dec vt52, 1662 OTbs, 1663 cols#80, it#8, lines#24, 1664 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 1665 bel=^G, clear=\EH\EJ, cr=^M, cub1=\ED, cud1=\EB, cuf1=\EC, 1666 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, ed=\EJ, 1667 el=\EK, home=\EH, ht=^I, ind=^J, kbs=^H, kcub1=\ED, kcud1=\EB, 1668 kcuf1=\EC, kcuu1=\EA, nel=^M^J, ri=\EI, rmacs=\EG, smacs=\EF, 1669 1670#### DEC VT100 and compatibles 1671# 1672# DEC terminals from the vt100 forward are collected here. Older DEC terminals 1673# and micro consoles can be found in the `obsolete' section. More details on 1674# the relationship between the VT100 and ANSI X3.64/ISO 6429/ECMA-48 may be 1675# found near the end of this file. 1676# 1677# Except where noted, these entries are DEC's official terminfos. 1678# Contact Bill Hedberg <hedberg@hannah.enet.dec.com> of Terminal Support 1679# Engineering for more information. Updated terminfos and termcaps 1680# are kept available at ftp://gatekeeper.dec.com/pub/DEC/termcaps. 1681# 1682# In October 1995 DEC sold its terminals business, including the VT and Dorio 1683# line and trademark, to SunRiver Data Systems. SunRiver has since changed 1684# its name to Boundless Technologies; see http://www.boundless.com. 1685# 1686 1687# NOTE: Any VT100 emulation, whether in hardware or software, almost 1688# certainly includes what DEC called the `Level 1 editing extension' codes; 1689# only the very oldest VT100s lacked these and there probably aren't any of 1690# those left alive. To capture these, use one of the VT102 entries. 1691# 1692# Note that the <xenl> glitch in vt100 is not quite the same as on the Concept, 1693# since the cursor is left in a different position while in the 1694# weird state (concept at beginning of next line, vt100 at end 1695# of this line) so all versions of vi before 3.7 don't handle 1696# <xenl> right on vt100. The correct way to handle <xenl> is when 1697# you output the char in column 80, immediately output CR LF 1698# and then assume you are in column 1 of the next line. If <xenl> 1699# is on, am should be on too. 1700# 1701# I assume you have smooth scroll off or are at a slow enough baud 1702# rate that it doesn't matter (1200? or less). Also this assumes 1703# that you set auto-nl to "on", if you set it off use vt100-nam 1704# below. 1705# 1706# The padding requirements listed here are guesses. It is strongly 1707# recommended that xon/xoff be enabled, as this is assumed here. 1708# 1709# The vt100 uses <rs2> and <rf> rather than <is2>/<tbc>/<hts> because the 1710# tab settings are in non-volatile memory and don't need to be 1711# reset upon login. Also setting the number of columns glitches 1712# the screen annoyingly. You can type "reset" to get them set. 1713# 1714# The VT100 series terminals have cursor ("arrows") keys which can operate 1715# in two different modes: Cursor Mode and Application Mode. Cursor Mode 1716# is the reset state, and is assumed to be the normal state. Application 1717# Mode is the "set" state. In Cursor Mode, the cursor keys transmit 1718# "Esc [ {code}" sequences, conforming to ANSI standards. In Application 1719# Mode, the cursor keys transmit "Esc O <code>" sequences. Application Mode 1720# was provided primarily as an aid to the porting of VT52 applications. It is 1721# assumed that the cursor keys are normally in Cursor Mode, and expected that 1722# applications such as vi will always transmit the <smkx> string. Therefore, 1723# the definitions for the cursor keys are made to match what the terminal 1724# transmits after the <smkx> string is transmitted. If the <smkx> string 1725# is a null string or is not defined, then cursor keys are assumed to be in 1726# "Cursor Mode", and the cursor keys definitions should match that assumption, 1727# else the application may fail. It is also expected that applications will 1728# always transmit the <rmkx> string to the terminal before they exit. 1729# 1730# The VT100 series terminals have an auxiliary keypad, commonly referred to as 1731# the "Numeric Keypad", because it is a cluster of numeric and function keys. 1732# The Numeric Keypad which can operate in two different modes: Numeric Mode and 1733# Application Mode. Numeric Mode is the reset state, and is assumed to be 1734# the normal state. Application Mode is the "set" state. In Numeric Mode, 1735# the numeric and punctuation keys transmit ASCII 7-bit characters, and the 1736# Enter key transmits the same as the Return key (Note: the Return key 1737# can be configured to send either LF (\015) or CR LF). In Application Mode, 1738# all the keypad keys transmit "Esc O {code}" sequences. The PF1 - PF4 keys 1739# always send the same "Esc O {code}" sequences. It is assumed that the keypad 1740# is normally in Numeric Mode. If an application requires that the keypad be 1741# in Application Mode then it is expected that the user, or the application, 1742# will set the TERM environment variable to point to a terminfo entry which has 1743# defined the <smkx> string to include the codes that switch the keypad into 1744# Application Mode, and the terminfo entry will also define function key 1745# fields to match the Application Mode control codes. If the <smkx> string 1746# is a null string or is not defined, then the keypad is assumed to be in 1747# Numeric Mode. If the <smkx> string switches the keypad into Application 1748# Mode, it is expected that the <rmkx> string will contain the control codes 1749# necessary to reset the keypad to "Normal" mode, and it is also expected that 1750# applications which transmit the <smkx> string will also always transmit the 1751# <rmkx> string to the terminal before they exit. 1752# 1753# Here's a diagram of the VT100 keypad keys with their bindings. 1754# The top line is the name of the key (some DEC keyboards have the keys 1755# labelled somewhat differently, like GOLD instead of PF1, but this is 1756# the most "official" name). The second line is the escape sequence it 1757# generates in Application Keypad mode (where "$" means the ESC 1758# character). The third line contains two items, first the mapping of 1759# the key in terminfo, and then in termcap. 1760# _______________________________________ 1761# | PF1 | PF2 | PF3 | PF4 | 1762# | $OP | $OQ | $OR | $OS | 1763# |_kf1__k1_|_kf2__k2_|_kf3__k3_|_kf4__k4_| 1764# | 7 8 9 - | 1765# | $Ow | $Ox | $Oy | $Om | 1766# |_kf9__k9_|_kf10_k;_|_kf0__k0_|_________| 1767# | 4 | 5 | 6 | , | 1768# | $Ot | $Ou | $Ov | $Ol | 1769# |_kf5__k5_|_kf6__k6_|_kf7__k7_|_kf8__k8_| 1770# | 1 | 2 | 3 | | 1771# | $Oq | $Or | $Os | enter | 1772# |_ka1__K1_|_kb2__K2_|_ka3__K3_| $OM | 1773# | 0 | . | | 1774# | $Op | $On | | 1775# |___kc1_______K4____|_kc3__K5_|_kent_@8_| 1776# 1777# And here, for those of you with orphaned VT100s lacking documentation, is 1778# a description of the soft switches invoked when you do `Set Up'. 1779# 1780# Scroll 0-Jump Shifted 3 0-# 1781# | 1-Smooth | 1-British pound sign 1782# | Autorepeat 0-Off | Wrap Around 0-Off 1783# | | 1-On | | 1-On 1784# | | Screen 0-Dark Bkg | | New Line 0-Off 1785# | | | 1-Light Bkg | | | 1-On 1786# | | | Cursor 0-Underline | | | Interlace 0-Off 1787# | | | | 1-Block | | | | 1-On 1788# | | | | | | | | 1789# 1 1 0 1 1 1 1 1 0 1 0 0 0 0 1 0 <--Standard Settings 1790# | | | | | | | | 1791# | | | Auto XON/XOFF 0-Off | | | Power 0-60 Hz 1792# | | | 1-On | | | 1-50 Hz 1793# | | Ansi/VT52 0-VT52 | | Bits Per Char. 0-7 Bits 1794# | | 1-ANSI | | 1-8 Bits 1795# | Keyclick 0-Off | Parity 0-Off 1796# | 1-On | 1-On 1797# Margin Bell 0-Off Parity Sense 0-Odd 1798# 1-On 1-Even 1799# 1800# The following SET-UP modes are assumed for normal operation: 1801# ANSI_MODE AUTO_XON/XOFF_ON NEWLINE_OFF 80_COLUMNS 1802# WRAP_AROUND_ON JUMP_SCROLL_OFF 1803# Other SET-UP modes may be set for operator convenience or communication 1804# requirements; I recommend 1805# AUTOREPEAT_ON BLOCK_CURSOR MARGIN_BELL_OFF SHIFTED_3_# 1806# Unless you have a graphics add-on such as Digital Engineering's VT640 1807# (and even then, whenever it can be arranged!) you should set 1808# INTERLACE_OFF 1809# 1810# (vt100: I added <rmam>/<smam> based on the init string, also <OTbs>. -- esr) 1811vt100|vt100-am|dec vt100 (w/advanced video), 1812 OTbs, am, msgr, xenl, xon, 1813 cols#80, it#8, lines#24, vt#3, 1814 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 1815 bel=^G, blink=\E[5m$<2>, bold=\E[1m$<2>, 1816 clear=\E[H\E[J$<50>, cr=^M, csr=\E[%i%p1%d;%p2%dr, 1817 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=^J, 1818 cuf=\E[%p1%dC, cuf1=\E[C$<2>, 1819 cup=\E[%i%p1%d;%p2%dH$<5>, cuu=\E[%p1%dA, 1820 cuu1=\E[A$<2>, ed=\E[J$<50>, el=\E[K$<3>, el1=\E[1K$<3>, 1821 enacs=\E(B\E)0, home=\E[H, ht=^I, hts=\EH, ind=^J, ka1=\EOq, 1822 ka3=\EOs, kb2=\EOr, kbs=^H, kc1=\EOp, kc3=\EOn, kcub1=\EOD, 1823 kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kent=\EOM, kf0=\EOy, 1824 kf1=\EOP, kf10=\EOx, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf5=\EOt, 1825 kf6=\EOu, kf7=\EOv, kf8=\EOl, kf9=\EOw, rc=\E8, 1826 rev=\E[7m$<2>, ri=\EM$<5>, rmacs=^O, rmam=\E[?7l, 1827 rmkx=\E[?1l\E>, rmso=\E[m$<2>, rmul=\E[m$<2>, 1828 rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sc=\E7, 1829 sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;, 1830 sgr0=\E[m\017$<2>, smacs=^N, smam=\E[?7h, smkx=\E[?1h\E=, 1831 smso=\E[7m$<2>, smul=\E[4m$<2>, tbc=\E[3g, 1832vt100nam|vt100-nam|vt100 no automargins, 1833 am@, xenl@, use=vt100-am, 1834vt100-vb|dec vt100 (w/advanced video) & no beep, 1835 bel@, flash=\E[?5h\E[?5l, use=vt100, 1836 1837# Ordinary vt100 in 132 column ("wide") mode. 1838vt100-w|vt100-w-am|dec vt100 132 cols (w/advanced video), 1839 cols#132, lines#24, 1840 rs2=\E>\E[?3h\E[?4l\E[?5l\E[?8h, use=vt100-am, 1841vt100-w-nam|vt100-nam-w|dec vt100 132 cols (w/advanced video no automargin), 1842 cols#132, lines#14, vt@, 1843 rs2=\E>\E[?3h\E[?4l\E[?5l\E[?8h, use=vt100-nam, 1844 1845# vt100 with no advanced video. 1846vt100-nav|vt100 without advanced video option, 1847 xmc#1, 1848 blink@, bold@, rev@, rmso=\E[m, rmul@, sgr@, sgr0@, smso=\E[7m, 1849 smul@, use=vt100, 1850vt100-nav-w|vt100-w-nav|dec vt100 132 cols 14 lines (no advanced video option), 1851 cols#132, lines#14, use=vt100-nav, 1852 1853# vt100 with one of the 24 lines used as a status line. 1854# We put the status line on the top. 1855vt100-s|vt100-s-top|vt100-top-s|vt100 for use with top sysline, 1856 eslok, hs, 1857 lines#23, 1858 clear=\E[2;1H\E[J$<50>, csr=\E[%i%i%p1%d;%p2%dr, 1859 cup=\E[%i%p1%{1}%+%d;%p2%dH$<5>, dsl=\E7\E[1;24r\E8, 1860 fsl=\E8, home=\E[2;1H, is2=\E7\E[2;24r\E8, 1861 tsl=\E7\E[1;%p1%dH\E[1K, use=vt100-am, 1862 1863# Status line at bottom. 1864# Clearing the screen will clobber status line. 1865vt100-s-bot|vt100-bot-s|vt100 for use with bottom sysline, 1866 eslok, hs, 1867 lines#23, 1868 dsl=\E7\E[1;24r\E8, fsl=\E8, is2=\E[1;23r\E[23;1H, 1869 tsl=\E7\E[24;%p1%dH\E[1K, use=vt100-am, 1870 1871# Most of the `vt100' emulators out there actually emulate a vt102 1872# This entry (or vt102-nsgr) is probably the right thing to use for 1873# these. 1874vt102|dec vt102, 1875 mir, 1876 dch1=\E[P, dl1=\E[M, il1=\E[L, rmir=\E[4l, smir=\E[4h, 1877 use=vt100, 1878vt102-w|dec vt102 in wide mode, 1879 cols#132, 1880 rs3=\E[?3h, use=vt102, 1881 1882# Many brain-dead PC comm programs that pretend to be `vt100-compatible' 1883# fail to interpret the ^O and ^N escapes properly. Symptom: the <sgr0> 1884# string in the canonical vt100 entry above leaves the screen littered 1885# with little snowflake or star characters (IBM PC ROM character \017 = ^O) 1886# after highlight turnoffs. This entry should fix that, and even leave 1887# ACS support working, at the cost of making multiple-highlight changes 1888# slightly more expensive. 1889# From: Eric S. Raymond <esr@snark.thyrsus.com> July 22 1995 1890vt102-nsgr|vt102 no sgr (use if you see snowflakes after highlight changes), 1891 sgr@, sgr0=\E[m, use=vt102, 1892 1893# VT125 Graphics CRT. Clear screen also erases graphics 1894vt125|vt125 graphics terminal, 1895 clear=\E[H\E[2J\EPpS(E)\E\\$<50>, use=vt100, 1896 1897# This isn't a DEC entry, it came from University of Wisconsin. 1898# (vt131: I added <rmam>/<smam> based on the init string, also <OTbs> -- esr) 1899vt131|dec vt131, 1900 OTbs, am, xenl, 1901 cols#80, it#8, lines#24, vt#3, 1902 bel=^G, blink=\E[5m$<2/>, bold=\E[1m$<2/>, 1903 clear=\E[;H\E[2J$<50/>, cr=^M, csr=\E[%i%p1%d;%p2%dr, 1904 cub1=^H, cud1=^J, cuf1=\E[C$<2/>, 1905 cup=\E[%i%p1%d;%p2%dH$<5/>, cuu1=\E[A$<2/>, 1906 ed=\E[J$<50/>, el=\E[K$<3/>, home=\E[H, ht=^I, 1907 is2=\E[1;24r\E[24;1H, kbs=^H, kcub1=\EOD, kcud1=\EOB, 1908 kcuf1=\EOC, kcuu1=\EOA, kf1=\EOP, kf2=\EOQ, kf3=\EOR, 1909 kf4=\EOS, nel=^M^J, rc=\E8, rev=\E[7m$<2/>, ri=\EM$<5/>, 1910 rmam=\E[?7h, rmkx=\E[?1l\E>, rmso=\E[m$<2/>, 1911 rmul=\E[m$<2/>, 1912 rs1=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sc=\E7, 1913 sgr0=\E[m$<2/>, smam=\E[?7h, smkx=\E[?1h\E=, 1914 smso=\E[7m$<2/>, smul=\E[4m$<2/>, 1915 1916# vt132 - like vt100 but slower and has ins/del line and such. 1917# I'm told that <smir>/<rmir> are backwards in the terminal from the 1918# manual and from the ANSI standard, this describes the actual 1919# terminal. I've never actually used a vt132 myself, so this 1920# is untested. 1921# 1922vt132|DEC vt132, 1923 xenl, 1924 dch1=\E[P$<7>, dl1=\E[M$<99>, il1=\E[L$<99>, ind=\n$<30>, 1925 ip=$<7>, rmir=\E[4h, smir=\E[4l, use=vt100, 1926 1927# This vt220 description maps F5--F9 to the second block of function keys 1928# at the top of the keyboard. The "DO" key is used as F10 to avoid conflict 1929# with the key marked (ESC) on the vt220. See vt220d for an alternate mapping. 1930# PF1--PF4 are used as F1--F4. 1931# 1932vt220|vt200|DEC VT220 in vt100 emulation mode, 1933 OTbs, OTpt, am, mir, xenl, xon, 1934 cols#80, lines#24, vt#3, 1935 OTnl=^J, 1936 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 1937 bel=^G, blink=\E[5m$<2>, bold=\E[1m$<2>, civis=\E[?25l, 1938 clear=\E[H\E[2J$<50>, cnorm=\E[?25h, cr=^M, 1939 csr=\E[%i%p1%d;%p2%dr, cub1=^H, cud1=\E[B, cuf1=\E[C, 1940 cup=\E[%i%p1%d;%p2%dH$<10>, cuu1=\E[A, dch1=\E[P, 1941 dl1=\E[M, ed=\E[J$<50>, el=\E[K$<3>, home=\E[H, ht=^I, 1942 if=/usr/share/tabset/vt100, il1=\E[L, ind=\ED$<20/>, 1943 is2=\E[1;24r\E[24;1H, kbs=\177, kcub1=\E[D, kcud1=\E[B, 1944 kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[3~, kend=\E[4~, kf1=\EOP, 1945 kf10=\E[29~, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf5=\E[17~, 1946 kf6=\E[18~, kf7=\E[19~, kf8=\E[20~, kf9=\E[21~, 1947 khome=\E[1~, kich1=\E[2~, knp=\E[6~, kpp=\E[5~, rc=\E8, 1948 rev=\E[7m$<2>, rf=/usr/share/tabset/vt100, 1949 ri=\EM$<14/>, rmacs=\E(B$<4>, rmam=\E[?7l, rmir=\E[4l, 1950 rmso=\E[27m, rmul=\E[24m, 1951 rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sc=\E7, 1952 sgr=\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p4%t;5%;%?%p1%p3%|%t;7%;m%?%p9%t\E(0%e\E(B%;, 1953 sgr0=\E[m$<2>, smacs=\E(0$<2>, smam=\E[?7h, smir=\E[4h, 1954 smso=\E[7m, smul=\E[4m, 1955 1956# A much better description of the VT200/220; used to be vt220-8 1957vt220-new|vt200-new|dec vt220, 1958 OTbs, am, mc5i, mir, msgr, xenl, xon, 1959 cols#80, it#8, lines#24, vt#3, 1960 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 1961 bel=^G, blink=\E[5m, bold=\E[1m, clear=\E[H\E[J, cr=^M, 1962 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 1963 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 1964 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 1965 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, 1966 ech=\E[%p1%dX, ed=\E[J, el=\E[K, el1=\E[1K, enacs=\E)0, 1967 flash=\E[?5h$<200/>\E[?5l, home=\E[H, ht=^I, hts=\EH, 1968 ich=\E[%p1%d@, if=/usr/share/tabset/vt100, 1969 il=\E[%p1%dL, il1=\E[L, ind=\ED, 1970 is2=\E[?7h\E[>\E[?1h\E F\E[?4l, kbs=\177, kcub1=\E[D, 1971 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kf1=\EOP, kf10=\E[21~, 1972 kf11=\E[23~, kf12=\E[24~, kf13=\E[25~, kf14=\E[26~, 1973 kf17=\E[31~, kf18=\E[32~, kf19=\E[33~, kf2=\EOQ, 1974 kf20=\E[34~, kf3=\EOR, kf4=\EOS, kf6=\E[17~, kf7=\E[18~, 1975 kf8=\E[19~, kf9=\E[20~, kfnd=\E[1~, khlp=\E[28~, 1976 khome=\E[H, kich1=\E[2~, knp=\E[6~, kpp=\E[5~, krdo=\E[29~, 1977 kslt=\E[4~, lf1=pf1, lf2=pf2, lf3=pf3, lf4=pf4, mc0=\E[i, 1978 mc4=\E[4i, mc5=\E[5i, nel=\EE, rc=\E8, rev=\E[7m, ri=\EM, 1979 rmacs=\E(B$<4>, rmam=\E[?7l, rmir=\E[4l, rmso=\E[27m, 1980 rmul=\E[24m, rs1=\E[?3l, sc=\E7, sgr0=\E[m, smacs=\E(0$<2>, 1981 smam=\E[?7h, smir=\E[4h, smso=\E[7m, smul=\E[4m, tbc=\E[3g, 1982vt220-w|vt200-w|DEC vt220 in wide mode, 1983 cols#132, 1984 rs3=\E[?3h, use=vt220, 1985vt220-8bit|vt220-8|vt200-8bit|vt200-8|dec vt220/200 in 8-bit mode, 1986 OTbs, am, mc5i, mir, msgr, xenl, xon, 1987 cols#80, it#8, lines#24, vt#3, 1988 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 1989 bel=^G, blink=\2335m, bold=\2331m, clear=\233H\233J, cr=^M, 1990 csr=\233%i%p1%d;%p2%dr, cub=\233%p1%dD, cub1=^H, 1991 cud=\233%p1%dB, cud1=^J, cuf=\233%p1%dC, cuf1=\233C, 1992 cup=\233%i%p1%d;%p2%dH, cuu=\233%p1%dA, cuu1=\233A, 1993 dch=\233%p1%dP, dch1=\233P, dl=\233%p1%dM, dl1=\233M, 1994 ech=\233%p1%dX, ed=\233J, el=\233K, el1=\2331K, enacs=\E)0, 1995 flash=\233?5h$<200/>\233?5l, home=\233H, ht=^I, hts=\EH, 1996 ich=\233%p1%d@, if=/usr/share/tabset/vt100, 1997 il=\233%p1%dL, il1=\233L, ind=\ED, 1998 is2=\233?7h\233>\233?1h\E F\233?4l, kbs=\177, 1999 kcub1=\233D, kcud1=\233B, kcuf1=\233C, kcuu1=\233A, 2000 kf1=\EOP, kf10=\23321~, kf11=\23323~, kf12=\23324~, 2001 kf13=\23325~, kf14=\23326~, kf17=\23331~, kf18=\23332~, 2002 kf19=\23333~, kf2=\EOQ, kf20=\23334~, kf3=\EOR, kf4=\EOS, 2003 kf6=\23317~, kf7=\23318~, kf8=\23319~, kf9=\23320~, 2004 kfnd=\2331~, khlp=\23328~, khome=\233H, kich1=\2332~, 2005 knp=\2336~, kpp=\2335~, krdo=\23329~, kslt=\2334~, lf1=pf1, 2006 lf2=pf2, lf3=pf3, lf4=pf4, mc0=\233i, mc4=\2334i, mc5=\2335i, 2007 nel=\EE, rc=\E8, rev=\2337m, ri=\EM, rmacs=^O, rmam=\233?7l, 2008 rmir=\2334l, rmso=\23327m, rmul=\23324m, rs1=\233?3l, 2009 sc=\E7, sgr0=\233m, smacs=^N, smam=\233?7h, smir=\2334h, 2010 smso=\2337m, smul=\2334m, tbc=\2333g, 2011 2012# 2013# vt220d: 2014# This vt220 description regards F6--F10 as the second block of function keys 2015# at the top of the keyboard. This mapping follows the description given 2016# in the VT220 Programmer Reference Manual and agrees with the labeling 2017# on some terminals that emulate the vt220. There is no support for an F5. 2018# See vt220 for an alternate mapping. 2019# 2020vt220d|DEC VT220 in vt100 mode with DEC function key labeling, 2021 kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, kf13=\E[25~, 2022 kf14=\E[26~, kf15=\E[28~, kf16=\E[29~, kf17=\E[31~, 2023 kf18=\E[32~, kf19=\E[33~, kf20=\E[34~, kf5@, kf6=\E[17~, 2024 kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, use=vt220, 2025 2026vt220-nam|v200-nam|VT220 in vt100 mode with no auto margins, 2027 am@, 2028 rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7l\E[?8h, use=vt220, 2029 2030# vt220 termcap written Tue Oct 25 20:41:10 1988 by Alex Latzko 2031# (not an official DEC entry!) 2032# The problem with real vt220 terminals is they don't send escapes when in 2033# in vt220 mode. This can be gotten around two ways. 1> don't send 2034# escapes or 2> put the vt220 into vt100 mode and use all the nifty 2035# features of vt100 advanced video which it then has. 2036# 2037# This entry takes the view of putting a vt220 into vt100 mode so 2038# you can use the escape key in emacs and everything else which needs it. 2039# 2040# You probably don't want to use this on a VMS machine since VMS will think 2041# it has a vt220 and will get fouled up coming out of emacs 2042# 2043# From: Alexander Latzko <latzko@marsenius.rutgers.edu>, 30 Dec 1996 2044# (Added vt100 <rc>,<sc> to quiet a tic warning -- esr) 2045vt200-js|vt220-js|dec vt200 series with jump scroll, 2046 am, 2047 cols#80, 2048 bel=^G, clear=\E[H\E[J, cr=^M, csr=\E[%i%p1%d;%p2%dr, 2049 cub1=^H, cud1=^J, cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, 2050 dch1=\E[P, dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, ht=^I, 2051 il1=\E[L, ind=\ED, 2052 is2=\E[61"p\E[H\E[?3l\E[?4l\E[?1l\E[?5l\E[?6l\E[?7h\E[?8h\E[?25h\E>\E[m, 2053 kbs=\177, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, 2054 kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, nel=^M\ED, rc=\E8, 2055 rf=/usr/lib/tabset/vt100, ri=\EM, rmdc=, rmir=\E[4l, 2056 rmkx=\E[?1l\E>, rmso=\E[27m$<5/>, rmul=\E[24m, 2057 rs1=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sc=\E7, smdc=, 2058 smir=\E[4h, smkx=\E[?1h\E=, smso=\E[7m$<5/>, smul=\E[4m, 2059 2060# This was DEC's vt320. Use the purpose-built one below instead 2061#vt320|DEC VT320 in vt100 emulation mode, 2062# use=vt220, 2063 2064# 2065# Use v320n for SCO's LYRIX. Otherwise, use Adam Thompson's vt320-nam. 2066# 2067vt320nam|v320n|DEC VT320 in vt100 emul. mode with NO AUTO WRAP mode, 2068 am@, 2069 rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7l\E[?8h, use=vt220, 2070 2071# These entries are not DEC's official ones, they were purpose-built for the 2072# VT320. Here are the designer's notes: 2073# <kel> is end on a PC kbd. Actually 'select' on a VT. Mapped to 2074# 'Erase to End of Field'... since nothing seems to use 'end' anyways... 2075# khome is Home on a PC kbd. Actually 'FIND' on a VT. 2076# Things that use <knxt> usually use tab anyways... and things that don't use 2077# tab usually use <knxt> instead... 2078# kprv is same as tab - Backtab is useless... 2079# I left out <sgr> because of its RIDICULOUS complexity, 2080# and the resulting fact that it causes the termcap translation of the entry 2081# to SMASH the 1k-barrier... 2082# From: Adam Thompson <athompso@pangea.ca> Sept 10 1995 2083# (vt320: uncommented <fsl> --esr) 2084vt320|vt300|dec vt320 7 bit terminal, 2085 am, eslok, hs, mir, msgr, xenl, 2086 cols#80, lines#24, wsl#80, 2087 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 2088 bel=^G, blink=\E[5m, bold=\E[1m, civis=\E[?25l, 2089 clear=\E[H\E[2J, cnorm=\E[?25h, cr=^M, 2090 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 2091 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 2092 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 2093 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, 2094 ech=\E[%p1%dX, ed=\E[J, el=\E[K, el1=\E[1K, fsl=\E[0$}, 2095 home=\E[H, ht=^I, hts=\EH, ich=\E[%p1%d@, il=\E[%p1%dL, 2096 il1=\E[L, ind=\ED, 2097 is2=\E>\E[?3l\E[?4l\E[5?l\E[?7h\E[?8h\E[1;24r\E[24;1H, 2098 ka1=\EOw, ka3=\EOy, kb2=\EOu, kbs=\177, kc1=\EOq, kc3=\EOs, 2099 kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, 2100 kdch1=\E[3~, kel=\E[4~, kent=\EOM, kf1=\EOP, kf10=\E[21~, 2101 kf11=\E[23~, kf12=\E[24~, kf13=\E[25~, kf14=\E[26~, 2102 kf15=\E[28~, kf16=\E[29~, kf17=\E[31~, kf18=\E[32~, 2103 kf19=\E[33~, kf2=\EOQ, kf20=\E[34~, kf3=\EOR, kf4=\EOS, 2104 kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, 2105 khome=\E[1~, kich1=\E[2~, knp=\E[6~, knxt=^I, kpp=\E[5~, 2106 kprv=\E[Z, kslt=\E[4~, mc0=\E[i, mc4=\E[?4i, mc5=\E[?5i, 2107 nel=\EE, rc=\E8, rev=\E[7m, rf=/usr/share/tabset/vt300, 2108 ri=\EM, rmacs=\E(B, rmam=\E[?7l, rmir=\E[4l, 2109 rmkx=\E[?1l\E>, rmso=\E[m, rmul=\E[m, 2110 rs2=\E>\E[?3l\E[?4l\E[5?l\E[?7h\E[?8h\E[1;24r\E[24;1H, 2111 sc=\E7, sgr0=\E[m, smacs=\E(0, smam=\E[?7h, smir=\E[4h, 2112 smkx=\E[?1h\E=, smso=\E[7m, smul=\E[4m, tbc=\E[3g, 2113 tsl=\E[1$}\E[H\E[K, 2114vt320-nam|vt300-nam|dec vt320 7 bit terminal with no am to make SAS happy, 2115 am@, 2116 is2=\E>\E[?3l\E[?4l\E[5?l\E[?7l\E[?8h\E[1;24r\E[24;1H, 2117 rs2=\E>\E[?3l\E[?4l\E[5?l\E[?7l\E[?8h\E[1;24r\E[24;1H, 2118 use=vt320, 2119# We have to init 132-col mode, not 80-col mode. 2120vt320-w|vt300-w|dec vt320 wide 7 bit terminal, 2121 cols#132, wsl#132, 2122 is2=\E>\E[?3h\E[?4l\E[5?l\E[?7h\E[?8h\E[1;24r\E[24;1H, 2123 rs2=\E>\E[?3h\E[?4l\E[5?l\E[?7h\E[?8h\E[1;24r\E[24;1H, 2124 use=vt320, 2125vt320-w-nam|vt300-w-nam|dec vt320 wide 7 bit terminal with no am, 2126 am@, 2127 is2=\E>\E[?3h\E[?4l\E[5?l\E[?7l\E[?8h\E[1;24r\E[24;1H, 2128 rs2=\E>\E[?3h\E[?4l\E[5?l\E[?7l\E[?8h\E[1;24r\E[24;1H, 2129 use=vt320-w, 2130 2131# VT330 and VT340 -- These are ReGIS and SIXEL graphics terminals 2132# which are pretty much a superset of the VT320. They have the 2133# host writable status line, yet another different DRCS matrix size, 2134# and such, but they add the DEC Technical character set, Multiple text 2135# pages, selectable length pages, and the like. The difference between 2136# the vt330 and vt340 is that the latter has only 2 planes and a monochrome 2137# monitor, the former has 4 planes and a color monitor. These terminals 2138# support VT131 and ANSI block mode, but as with much of these things, 2139# termcap/terminfo doesn't deal with these features. 2140# 2141# Note that this entry is are set up in what was the standard way for GNU 2142# Emacs v18 terminal modes to deal with the cursor keys in that the arrow 2143# keys were switched into application mode at the same time the numeric pad 2144# is switched into application mode. This changes the definitions of the 2145# arrow keys. Emacs v19 is smarter and mines its keys directly out of 2146# your termcap or terminfo entry, 2147# 2148# From: Daniel Glasser <dag@persoft.persoft.com>, 13 Oct 1993 2149# (vt340: string capability "sb=\E[M" corrected to "sr"; 2150# also, added <rmam>/<smam> based on the init string -- esr) 2151vt340|dec-vt340|vt330|dec-vt330|dec vt340 graphics terminal with 24 line page, 2152 am, eslok, hs, mir, msgr, xenl, xon, 2153 cols#80, it#8, lines#24, vt#3, 2154 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 2155 blink=\E[5m, bold=\E[1m, civis=\E[?25l, clear=\E[H\E[J, 2156 cnorm=\E[?25h, cr=^M, csr=\E[%i%p1%d;%p2%dr, 2157 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=^J, 2158 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 2159 cuu=\E[%p1%dA, cuu1=\E[A, cvvis=\E[?25h, dch=\E[%p1%dP, 2160 dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, 2161 dsl=\E[2$~\r\E[1$}\E[K\E[$}, ed=\E[J, el=\E[K, 2162 flash=\E[?5h\E[?5l$<200/>, fsl=\E[$}, home=\E[H, ht=^I, 2163 hts=\EH, ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L, ind=\ED, 2164 is2=\E<\E F\E>\E[?1h\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h\E[1;24r\E[24;1H, 2165 kbs=\177, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, 2166 kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf6=\E[17~, 2167 kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, lf1=pf1, lf2=pf2, 2168 lf3=pf3, lf4=pf4, nel=^M\ED, rc=\E8, rev=\E[7m, 2169 rf=/usr/share/tabset/vt300, ri=\EM, rmacs=^O, 2170 rmam=\E[?7l, rmir=\E[4l, rmkx=\E[?1l\E>, rmso=\E[27m, 2171 rmul=\E[24m, rs1=\E[?3l, sc=\E7, sgr0=\E[m, smacs=^N, 2172 smam=\E[?7h, smir=\E[4h, smkx=\E[?1h\E=, smso=\E[7m, 2173 smul=\E[4m, tbc=\E[3g, tsl=\E[2$~\E[1$}\E[1;%dH, 2174 2175# DEC doesn't supply a vt400 description, so we add Daniel Glasser's 2176# (originally written with vt420 as its primary name, and usable for it). 2177# 2178# VT400/420 -- This terminal is a superset of the vt320. It adds the multiple 2179# text pages and long text pages with selectable length of the vt340, along 2180# with left and right margins, rectangular area text copy, fill, and erase 2181# operations, selected region character attribute change operations, 2182# page memory and rectangle checksums, insert/delete column, reception 2183# macros, and other features too numerous to remember right now. TERMCAP 2184# can only take advantage of a few of these added features. 2185# 2186# Note that this entry is are set up in what was the standard way for GNU 2187# Emacs v18 terminal modes to deal with the cursor keys in that the arrow 2188# keys were switched into application mode at the same time the numeric pad 2189# is switched into application mode. This changes the definitions of the 2190# arrow keys. Emacs v19 is smarter and mines its keys directly out of 2191# your termcap entry, 2192# 2193# From: Daniel Glasser <dag@persoft.persoft.com>, 13 Oct 1993 2194# (vt400: string capability ":sb=\E[M:" corrected to ":sr=\E[M:"; 2195# also, added <rmam>/<smam> based on the init string -- esr) 2196vt400|vt400-24|dec-vt400|dec vt400 24x80 column autowrap, 2197 am, eslok, hs, mir, msgr, xenl, xon, 2198 cols#80, it#8, lines#24, vt#3, 2199 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 2200 blink=\E[5m, bold=\E[1m, civis=\E[?25l, 2201 clear=\E[H\E[J$<10/>, cnorm=\E[?25h, cr=^M, 2202 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 2203 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 2204 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 2205 cvvis=\E[?25h, dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, 2206 dl1=\E[M, dsl=\E[2$~\r\E[1$}\E[K\E[$}, ed=\E[J$<10/>, 2207 el=\E[K$<4/>, flash=\E[?5h\E[?5l$<200/>, fsl=\E[$}, 2208 home=\E[H, ht=^I, hts=\EH, ich=\E[%p1%d@, ich1=\E[@, 2209 il=\E[%p1%dL, il1=\E[L, ind=\ED, 2210 is2=\E<\E F\E>\E[?1h\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h\E[1;24r\E[24;1H, 2211 kbs=\177, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, 2212 kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf6=\E[17~, 2213 kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, lf1=pf1, lf2=pf2, 2214 lf3=pf3, lf4=pf4, nel=^M\ED, rc=\E8, rev=\E[7m, 2215 rf=/usr/share/tabset/vt300, ri=\EM, rmacs=^O, 2216 rmam=\E[?7l, rmir=\E[4l, rmkx=\E[?1l\E>, rmso=\E[27m, 2217 rmul=\E[24m, rs1=\E<\E[?3l\E[!p\E[?7h, sc=\E7, sgr0=\E[m, 2218 smacs=^N, smam=\E[?7h, smir=\E[4h, smkx=\E[?1h\E=, 2219 smso=\E[7m, smul=\E[4m, tbc=\E[3g, 2220 tsl=\E[2$~\E[1$}\E[1;%dH, 2221 2222# (vt420: I removed <kf0>, it collided with <kf10>. I also restored 2223# a missing <sc> -- esr) 2224vt420|DEC VT420, 2225 am, mir, xenl, xon, 2226 cols#80, lines#24, vt#3, 2227 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 2228 bel=^G, blink=\E[5m$<2>, bold=\E[1m$<2>, 2229 clear=\E[H\E[2J$<50>, cr=^M, csr=\E[%i%p1%d;%p2%dr, 2230 cub1=^H, cud1=\E[B, cuf1=\E[C, 2231 cup=\E[%i%p1%d;%p2%dH$<10>, cuu1=\E[A, dch1=\E[P, 2232 dl1=\E[M, ed=\E[J$<50>, el=\E[K$<3>, home=\E[H, ht=^I, 2233 if=/usr/share/tabset/vt300, il1=\E[L, ind=\ED, 2234 is2=\E[1;24r\E[24;1H, is3=\E[?67h\E[64;1"p, kbs=\177, 2235 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 2236 kdch1=\E[3~, kf1=\EOP, kf10=\E[29~, kf2=\EOQ, kf3=\EOR, 2237 kf4=\EOS, kf5=\E[17~, kf6=\E[18~, kf7=\E[19~, kf8=\E[20~, 2238 kf9=\E[21~, kfnd=\E[1~, kich1=\E[2~, knp=\E[6~, kpp=\E[5~, 2239 kslt=\E[4~, rc=\E8, rev=\E[7m$<2>, 2240 rf=/usr/share/tabset/vt300, ri=\EM, rmacs=\E(B$<4>, 2241 rmam=\E[?7l, rmir=\E[4l, rmkx=\E>, 2242 rmsc=\E[?0;0r\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, 2243 rmso=\E[m, rmul=\E[m, rs3=\E[?67h\E[64;1"p, sc=\E7, 2244 sgr=\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p4%t;5%;%?%p1%p3%|%t;7%;m%?%p9%t\E(0%e\E(B%;, 2245 sgr0=\E[m$<2>, smacs=\E(0$<2>, smam=\E[?7h, smir=\E[4h, 2246 smkx=\E=, smso=\E[7m, smul=\E[4m, 2247 2248# 2249# DEC VT220 and up support DECUDK (user-defined keys). DECUDK (i.e., pfx) 2250# takes two parameters, the key and the string. Translating the key is 2251# straightforward (keys 1-5 are not defined on real terminals, though some 2252# emulators define these): 2253# 2254# if (key < 16) then value = key; 2255# else if (key < 21) then value = key + 1; 2256# else if (key < 25) then value = key + 2; 2257# else if (key < 27) then value = key + 3; 2258# else if (key < 30) then value = key + 4; 2259# else value = key + 5; 2260# 2261# The string must be the hexadecimal equivalent, e.g., "5052494E" for "PRINT". 2262# There's no provision in terminfo for emitting a string in this format, so the 2263# application has to know it. 2264# 2265vt420pc|DEC VT420 w/PC keyboard, 2266 kdch1=\177, kend=\E[4~, kf1=\E[11~, kf10=\E[21~, 2267 kf11=\E[23~, kf12=\E[24~, kf13=\E[11;2~, kf14=\E[12;2~, 2268 kf15=\E[13;2~, kf16=\E[14;2~, kf17=\E[15;2~, 2269 kf18=\E[17;2~, kf19=\E[18;2~, kf2=\E[12~, kf20=\E[19;2~, 2270 kf21=\E[20;2~, kf22=\E[21;2~, kf23=\E[23;2~, 2271 kf24=\E[24;2~, kf25=\E[23~, kf26=\E[24~, kf27=\E[25~, 2272 kf28=\E[26~, kf29=\E[28~, kf3=\E[13~, kf30=\E[29~, 2273 kf31=\E[31~, kf32=\E[32~, kf33=\E[33~, kf34=\E[34~, 2274 kf35=\E[35~, kf36=\E[36~, kf37=\E[23;2~, kf38=\E[24;2~, 2275 kf39=\E[25;2~, kf4=\E[14~, kf40=\E[26;2~, kf41=\E[28;2~, 2276 kf42=\E[29;2~, kf43=\E[31;2~, kf44=\E[32;2~, 2277 kf45=\E[33;2~, kf46=\E[34;2~, kf47=\E[35;2~, 2278 kf48=\E[36;2~, kf5=\E[15~, kf6=\E[17~, kf7=\E[18~, 2279 kf8=\E[19~, kf9=\E[20~, khome=\E[H, 2280 pctrm=USR_TERM\:vt420pcdos\:, 2281 pfx=\EP1;1|%?%{16}%p1%>%t%{0}%e%{21}%p1%>%t%{1}%e%{25}%p1%>%t%{2}%e%{27}%p1%>%t%{3}%e%{30}%p1%>%t%{4}%e%{5}%;%p1%+%d/%p2%s\E\\, 2282 use=vt420, 2283 2284vt420pcdos|DEC VT420 w/PC for DOS Merge, 2285 lines#25, 2286 dispc=%?%p1%{19}%=%t\E\023\021%e%p1%{32}%<%t\E%p1%c%e%p1%{127}%=%t\E\177%e%p1%c%;, 2287 pctrm@, 2288 rmsc=\E[?0;0r\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sgr@, 2289 sgr0=\E[m, smsc=\E[?1;2r\E[34h, use=vt420pc, 2290 2291vt420f|DEC VT420 with VT kbd; VT400 mode; F1-F5 used as Fkeys, 2292 kdch1=\177, kf1=\E[11~, kf10=\E[21~, kf11=\E[23~, 2293 kf12=\E[24~, kf13=\E[25~, kf14=\E[26~, kf15=\E[28~, 2294 kf16=\E[29~, kf17=\E[31~, kf18=\E[32~, kf19=\E[33~, 2295 kf2=\E[12~, kf20=\E[34~, kf3=\E[13~, kf4=\E[14~, 2296 kf5=\E[15~, kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, 2297 khome=\E[H, lf1=\EOP, lf2=\EOQ, lf3=\EOR, lf4=\EOS, 2298 use=vt420, 2299 2300vt510|DEC VT510, 2301 use=vt420, 2302vt510pc|DEC VT510 w/PC keyboard, 2303 use=vt420pc, 2304vt510pcdos|DEC VT510 w/PC for DOS Merge, 2305 use=vt420pcdos, 2306 2307# VT520/VT525 2308# 2309# The VT520 is a monochrome text terminal capable of managing up to 2310# four independent sessions in the terminal. It has multiple ANSI 2311# emulations (VT520, VT420, VT320, VT220, VT100, VT PCTerm, SCO Console) 2312# and ASCII emulations (WY160/60, PCTerm, 50/50+, 150/120, TVI 950, 2313# 925 910+, ADDS A2). This terminfo data is for the ANSI emulations only. 2314# 2315# Terminal Set-Up is entered by pressing [F3], [Caps Lock]/[F3] or 2316# [Alt]/[Print Screen] depending upon which keyboard and which 2317# terminal mode is being used. If Set-Up has been disabled or 2318# assigned to an unknown key, Set-Up may be entered by pressing 2319# [F3] as the first key after power up, regardless of keyboard type. 2320# (vt520: I added <rmam>/<smam> based on the init string, also <sc> -- esr) 2321vt520|DEC VT520, 2322 am, mir, xenl, xon, 2323 cols#80, lines#24, vt#3, 2324 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 2325 bel=^G, blink=\E[5m$<2>, bold=\E[1m$<2>, 2326 clear=\E[H\E[2J$<50>, cr=^M, csr=\E[%i%p1%d;%p2%dr, 2327 cub1=^H, cud1=\E[B, cuf1=\E[C, 2328 cup=\E[%i%p1%d;%p2%dH$<10>, cuu1=\E[A, dch1=\E[P, 2329 dl1=\E[M, ed=\E[J$<50>, el=\E[K$<3>, home=\E[H, ht=^I, 2330 if=/usr/share/tabset/vt300, il1=\E[L, ind=\ED, 2331 is2=\E[1;24r\E[24;1H, is3=\E[?67h\E[64;1"p, kbs=\177, 2332 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 2333 kdch1=\E[3~, kf1=\EOP, kf10=\E[29~, kf2=\EOQ, kf3=\EOR, 2334 kf4=\EOS, kf5=\E[17~, kf6=\E[18~, kf7=\E[19~, kf8=\E[20~, 2335 kf9=\E[21~, kfnd=\E[1~, kich1=\E[2~, knp=\E[6~, kpp=\E[5~, 2336 kslt=\E[4~, 2337 pfx=\EP1;1|%?%{16}%p1%>%t%{0}%e%{21}%p1%>%t%{1}%e%{25}%p1%>%t%{2}%e%{27}%p1%>%t%{3}%e%{30}%p1%>%t%{4}%e%{5}%;%p1%+%d/%p2%s\E\\, 2338 rc=\E8, rev=\E[7m$<2>, rf=/usr/share/tabset/vt300, 2339 ri=\EM, rmacs=\E(B$<4>, rmam=\E[?7l, rmir=\E[4l, 2340 rmsc=\E[?0;0r\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, 2341 rmso=\E[m, rmul=\E[m, rs3=\E[?67h\E[64;1"p, sc=\E7, 2342 sgr=\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p4%t;5%;%?%p1%p3%|%t;7%;m%?%p9%t\E(0%e\E(B%;, 2343 sgr0=\E[m$<2>, smacs=\E(0$<2>, smam=\E[?7h, smir=\E[4h, 2344 smso=\E[7m, smul=\E[4m, 2345 2346# (vt525: I added <rmam>/<smam> based on the init string; 2347# removed <rmso>=\E[m, <rmul>=\E[m, added <sc> -- esr) 2348vt525|DEC VT525, 2349 am, mir, xenl, xon, 2350 cols#80, lines#24, vt#3, 2351 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 2352 bel=^G, blink=\E[5m$<2>, bold=\E[1m$<2>, 2353 clear=\E[H\E[2J$<50>, cr=^M, csr=\E[%i%p1%d;%p2%dr, 2354 cub1=^H, cud1=\E[B, cuf1=\E[C, 2355 cup=\E[%i%p1%d;%p2%dH$<10>, cuu1=\E[A, dch1=\E[P, 2356 dl1=\E[M, ed=\E[J$<50>, el=\E[K$<3>, home=\E[H, ht=^I, 2357 if=/usr/share/tabset/vt300, il1=\E[L, ind=\ED, 2358 is2=\E[1;24r\E[24;1H, is3=\E[?67h\E[64;1"p, kbs=\177, 2359 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 2360 kdch1=\E[3~, kf1=\EOP, kf10=\E[29~, kf2=\EOQ, kf3=\EOR, 2361 kf4=\EOS, kf5=\E[17~, kf6=\E[18~, kf7=\E[19~, kf8=\E[20~, 2362 kf9=\E[21~, kfnd=\E[1~, kich1=\E[2~, knp=\E[6~, kpp=\E[5~, 2363 kslt=\E[4~, 2364 pfx=\EP1;1|%?%{16}%p1%>%t%{0}%e%{21}%p1%>%t%{1}%e%{25}%p1%>%t%{2}%e%{27}%p1%>%t%{3}%e%{30}%p1%>%t%{4}%e%{5}%;%p1%+%d/%p2%s\E\\, 2365 rc=\E8, rev=\E[7m$<2>, rf=/usr/share/tabset/vt300, 2366 ri=\EM, rmacs=\E(B$<4>, rmam=\E[?7l, rmir=\E[4l, 2367 rmsc=\E[?0;0r\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, 2368 rmso=\E[m, rmul=\E[m, rs3=\E[?67h\E[64;1"p, sc=\E7, 2369 sgr=\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p4%t;5%;%?%p1%p3%|%t;7%;m%?%p9%t\E(0%e\E(B%;, 2370 sgr0=\E[m$<2>, smacs=\E(0$<2>, smam=\E[?7h, smir=\E[4h, 2371 smso=\E[7m, smul=\E[4m, 2372 2373#### VT100 emulations 2374# 2375 2376# John Hawkinson <jhawk@MIT.EDU> tells us that the EWAN telnet for Windows 2377# (the best Windows telnet as of September 1995) presents the name `dec-vt100' 2378# to telnetd. Michael Deutschmann <ldeutsch@mail.netshop.net> informs us 2379# that this works best with a stock vt100 entry. 2380dec-vt100|EWAN telnet's vt100 emulation, 2381 use=vt100, 2382 2383# From: Adrian Garside <94ajg2@eng.cam.ac.uk>, 19 Nov 1996 2384dec-vt220|DOS tnvt200 terminal emulator, 2385 am@, use=vt220, 2386 2387# Zstem340 is an (IMHO) excellent VT emulator for PC's. I recommend it to 2388# anyone who needs PC VT340 emulation. (or anything below that level, for 2389# that matter -- DEC's ALL-in-1 seems happy with it, as does INFOPLUS's 2390# RDBM systems, it includes ReGIS and SiXel support! I'm impressed... 2391# I can send the address if requested. 2392# (z340: changed garbled \E[5?l to \E[?5l, DEC smooth scroll off -- esr) 2393# From: Adam Thompson <athompso@pangea.ca> Sept 10 1995 2394z340|zstem vt340 terminal emulator 132col 42line, 2395 lines#42, 2396 is2=\E>\E[?3h\E[?4l\E[?5l\E[?7h\E[?8h\E[1;42r\E[42;1H, 2397 rs2=\E>\E[?3h\E[?4l\E[?5l\E[?7h\E[?8h\E[1;42r\E[42;1H, 2398 use=vt320-w, 2399z340-nam|zstem vt340 terminal emulator 132col 42line (no automatic margins), 2400 am@, 2401 is2=\E>\E[?3h\E[?4l\E[?5l\E[?7l\E[?8h\E[1;42r\E[42;1H, 2402 rs2=\E>\E[?3h\E[?4l\E[?5l\E[?7l\E[?8h\E[1;42r\E[42;1H, 2403 use=z340, 2404 2405# CRT is shareware. It implements some xterm features, including mouse. 2406crt|crt-vt220|CRT 2.3 emulating VT220, 2407 bce, msgr, 2408 ncv@, 2409 hts=\EH, u6=\E[%i%d;%dR, u7=\E[6n, u8=\E[?1;2c, u9=\E[c, 2410 use=vt220, use=ecma+color, 2411 2412# PuTTY 0.51 (released 14 December 2000) 2413# http://www.chiark.greenend.org.uk/~sgtatham/putty/ 2414# 2415# This emulates vt100 + vt52 (plus a few vt220 features: ech, SRM, DECTCEM, as 2416# well as SCO and Atari, color palettes from Linux console). Reading the code, 2417# it is intended to be VT102 plus selected features By default, it sets $TERM 2418# to xterm, which is incorrect, since several features are misimplemented: 2419# 2420# Alt+key always sends ESC+key, so 'km' capability is removed. 2421# 2422# Control responses, wrapping and tabs are buggy, failing a couple of 2423# screens in vttest. 2424# 2425# xterm mouse support is not implemented (unrelease version may). 2426# 2427# Several features such as backspace/delete are optional; this entry documents 2428# the default behavior -TD 2429putty|xterm clone (win32), 2430 am, bw, ccc, km, mir, msgr, xenl, 2431 colors#8, cols#80, it#8, lines#24, pairs#64, 2432 acsc=``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 2433 bel=^G, blink=\E[5m, bold=\E[1m, civis=\E[?25l, 2434 clear=\E[H\E[2J, cnorm=\E[?25h, cr=^M, 2435 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 2436 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 2437 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 2438 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, 2439 ech=\E[%p1%dX, ed=\E[J, el=\E[K, enacs=\E)0, home=\E[H, 2440 hpa=\E[%i%p1%dG, ht=^I, hts=\EH, il=\E[%p1%dL, il1=\E[L, 2441 ind=^J, 2442 initc=\E]P%?%p1%{9}%>%t%p1%{10}%-%'a'%+%c%e%p1%d%;%p2%{255}%&%Pr%gr%{16}%/%Px%?%gx%{9}%>%t%gx%{10}%-%'A'%+%c%e%gx%d%;%gr%{15}%&%Px%?%gx%{9}%>%t%gx%{10}%-%'A'%+%c%e%gx%d%;%p3%{255}%&%Pr%gr%{16}%/%Px%?%gx%{9}%>%t%gx%{10}%-%'A'%+%c%e%gx%d%;%gr%{15}%&%Px%?%gx%{9}%>%t%gx%{10}%-%'A'%+%c%e%gx%d%;%p4%{255}%&%Pr%gr%{16}%/%Px%?%gx%{9}%>%t%gx%{10}%-%'A'%+%c%e%gx%d%;%gr%{15}%&%Px%?%gx%{9}%>%t%gx%{10}%-%'A'%+%c%e%gx%d%;, 2443 is2=\E7\E[r\E[m\E[?7h\E[?1;3;4;6l\E[4l\E8\E>, 2444 kbs=\177, kcbt=\E[Z, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, 2445 kcuu1=\EOA, kdch1=\E[3~, kf1=\E[11~, kf10=\E[21~, 2446 kf11=\E[23~, kf12=\E[24~, kf13=\E[25~, kf14=\E[26~, 2447 kf15=\E[28~, kf16=\E[29~, kf17=\E[31~, kf18=\E[32~, 2448 kf19=\E[33~, kf2=\E[12~, kf20=\E[34~, kf3=\E[13~, 2449 kf4=\E[14~, kf5=\E[15~, kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, 2450 kf9=\E[20~, kfnd=\E[1~, kich1=\E[2~, kmous=\E[M, knp=\E[6~, 2451 kpp=\E[5~, kslt=\E[4~, oc=\E]R, op=\E[39;49m, rc=\E8, 2452 rev=\E[7m, ri=\EM, rmacs=^O, rmam=\E[?7l, 2453 rmcup=\E[2J\E[?47l\E8, rmir=\E[4l, rmkx=\E[?1l\E>, 2454 rmso=\E[27m, rmul=\E[24m, 2455 rs2=\E7\E[r\E8\E[m\E[?7h\E[?1;3;4;6l\E[4l\E>, sc=\E7, 2456 setab=\E[4%p1%dm, setaf=\E[3%p1%dm, 2457 sgr=\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;, 2458 sgr0=\E[m, smacs=^N, smam=\E[?7h, smcup=\E7\E[?47h, 2459 smir=\E[4h, smkx=\E[?1h\E=, smso=\E[7m, smul=\E[4m, 2460 tbc=\E[3g, u6=\E[%i%d;%dR, u7=\E[6n, u8=\E[?1;2c, u9=\E[c, 2461 vpa=\E[%i%p1%dd, 2462 2463# This entry is for Tera Term Pro version 2.3, for MS-Windows 95/NT written by 2464# T. Teranishi dated Mar 10, 1998. It is a free software terminal emulator 2465# (communication program) which supports: 2466# 2467# - Serial port connections. 2468# - TCP/IP (telnet) connections. 2469# - VT100 emulation, and selected VT200/300 emulation. 2470# - TEK4010 emulation. 2471# - File transfer protocols (Kermit, XMODEM, ZMODEM, B-PLUS and 2472# Quick-VAN). 2473# - Scripts using the "Tera Term Language". 2474# - Japanese and Russian character sets. 2475# 2476# The program does not come with terminfo or termcap entries. However, the 2477# emulation (testing with vttest and ncurses) is reasonably close to vt100 (no 2478# vt52 or doublesize character support; blinking is done with color). Besides 2479# the HPA, VPA extensions it also implements CPL and CNL. 2480# 2481# All of the function keys can be remapped. This description shows the default 2482# mapping, as installed. Both vt100 PF1-PF4 keys and quasi-vt220 F1-F4 keys 2483# are supported. F13-F20 are obtained by shifting F3-F10. The editing keypad 2484# is laid out like vt220, rather than the face codes on the PC keyboard, i.e, 2485# kfnd Insert 2486# kslt Delete 2487# kich1 Home 2488# kdch1 PageUp 2489# kpp End 2490# knp PageDown 2491# 2492# ANSI colors are implemented, but cannot be combined with video attributes 2493# except for reverse. 2494# 2495# No fonts are supplied with the program, so the acsc string is chosen to 2496# correspond with the default Microsoft terminal font. 2497# 2498# Tera Term recognizes some xterm sequences, including those for setting and 2499# retrieving the window title, and for setting the window size (i.e., using 2500# "resize -s"), though it does not pass SIGWINCH to the application if the 2501# user resizes the window with the mouse. 2502teraterm|Tera Term Pro, 2503 km, xon@, 2504 ncv#43, vt@, 2505 acsc=+\020\,\021-\030.^Y0\333`\004a\261f\370g\361h\260i\316j\331k\277l\332m\300n\305o~p\304q\304r\304s_t\303u\264v\301w\302x\263y\363z\362{\343|\330}\234~\376, 2506 blink=\E[5m, bold=\E[1m, civis=\E[?25l, clear=\E[H\E[J, 2507 cnorm=\E[?25h, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 2508 cuu1=\E[A, dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, 2509 dl1=\E[M, ech=\E[%p1%dX, ed=\E[J, el=\E[K, el1=\E[1K, 2510 flash=\E[?5h\E[?5l$<200/>, hpa=\E[%i%p1%dG, 2511 il=\E[%p1%dL, il1=\E[L, kdch1=\E[3~, kf1=\E[11~, 2512 kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, kf13=\E[25~, 2513 kf14=\E[26~, kf15=\E[28~, kf16=\E[29~, kf17=\E[31~, 2514 kf18=\E[32~, kf19=\E[33~, kf2=\E[12~, kf20=\E[34~, 2515 kf3=\E[13~, kf4=\E[14~, kf5=\E[15~, kf6=\E[17~, kf7=\E[18~, 2516 kf8=\E[19~, kf9=\E[20~, kfnd=\E[1~, kich1=\E[2~, knp=\E[6~, 2517 kpp=\E[5~, kslt=\E[4~, op=\E[100m, rev=\E[7m, ri=\EM, 2518 rmso=\E[27m, rmul=\E[24m, sgr0=\E[m, smso=\E[7m, 2519 smul=\E[4m, u6=\E[%i%d;%dR, u7=\E[6n, u8=\E[?1;2c, u9=\E[c, 2520 vpa=\E[%i%p1%dd, use=klone+color, use=vt100, 2521 2522# Tested with WinNT 4.0, the telnet application assumes the screensize is 2523# 25x80. This entry uses the 'Terminal' font, to get line-drawing characters. 2524ms-vt100|MS telnet imitating dec vt100, 2525 lines#25, 2526 acsc=+\020\,\021-\030.^Y0\333`\004a\261f\370g\361h\260i\316j\331k\277l\332m\300n\305o~p\304q\304r\304s_t\303u\264v\301w\302x\263y\363z\362{\343|\330}\234~\376, 2527 tbc@, u6=\E[%i%d;%dR, u7=\E[6n, u8=\E[?6c, u9=\E[c, 2528 use=vt100, 2529 2530#### X terminal emulators 2531# 2532# You can add the following line to your .Xdefaults to change the terminal type 2533# set by the xterms you start up to my-xterm: 2534# 2535# *termName: my-xterm 2536# 2537# System administrators can change the default entry for xterm instances 2538# by adding a similar line to /usr/X11/lib/X11/app-defaults/XTerm. In either 2539# case, xterm will detect and reject an invalid terminal type, falling back 2540# to the default of xterm. 2541# 2542 2543# X10/6.6 11/7/86, minus alternate screen, plus (csr) 2544# (xterm: ":MT:" changed to ":km:"; added <smam>/<rmam> based on init string; 2545# removed (hs, eslok, tsl=\E[?E\E[?%i%dT, fsl=\E[?F, dsl=\E[?E) 2546# as these seem not to work -- esr) 2547x10term|vs100-x10|xterm terminal emulator (X10 window system), 2548 OTbs, am, km, mir, msgr, xenl, xon, 2549 cols#80, it#8, lines#65, 2550 bold=\E[1m, clear=\E[H\E[2J, csr=\E[%i%p1%d;%p2%dr, 2551 cub1=^H, cud1=^J, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 2552 cuu1=\E[A, dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, 2553 dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, ht=^I, il=\E[%p1%dL, 2554 il1=\E[L, ind=^J, is2=\E\E[m\E[?7h\E[?1;4l, kbs=^H, 2555 kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kf1=\EOP, 2556 kf2=\EOQ, kf3=\EOR, kf4=\EOS, rev=\E[7m, ri=\EM, rmam=\E[?7l, 2557 rmir=\E[4l, rmkx=\E[?1l\E>, rmso=\E[m, rmul=\E[m, 2558 sgr0=\E[m, smam=\E[?7h, smir=\E[4h, smkx=\E[?1h\E=, 2559 smso=\E[7m, smul=\E[4m, 2560# Compatible with the R5 xterm 2561# (from the XFree86 3.2 distribution, <blink=@> removed) 2562# added khome/kend, rmir/smir, rmul/smul, hts based on the R5 xterm code - TD 2563# corrected typos in rs2 string - TD 2564# added u6-u9 -TD 2565xterm-r5|xterm R5 version, 2566 OTbs, am, km, msgr, xenl, 2567 cols#80, it#8, lines#24, 2568 bel=^G, bold=\E[1m, clear=\E[H\E[2J, cr=^M, 2569 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 2570 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 2571 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 2572 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, 2573 el=\E[K, home=\E[H, ht=^I, hts=\EH, ich=\E[%p1%d@, ich1=\E[@, 2574 il=\E[%p1%dL, il1=\E[L, ind=^J, kbs=\177, kcub1=\EOD, 2575 kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kdch1=\E[3~, 2576 kdl1=\E[31~, kel=\E[8~, kend=\E[4~, kf0=\EOq, kf1=\E[11~, 2577 kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, kf2=\E[12~, 2578 kf3=\E[13~, kf4=\E[14~, kf5=\E[15~, kf6=\E[17~, kf7=\E[18~, 2579 kf8=\E[19~, kf9=\E[20~, khome=\E[1~, kich1=\E[2~, 2580 kil1=\E[30~, kmous=\E[M, knp=\E[6~, kpp=\E[5~, rc=\E8, 2581 rev=\E[7m, ri=\EM, rmir=\E[4l, rmkx=\E[?1l\E>, rmso=\E[m, 2582 rmul=\E[m, 2583 rs2=\E>\E[?1;3;4;5;6l\E[4l\E[?7h\E[m\E[r\E[2J\E[H, 2584 sc=\E7, 2585 sgr=\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;m, 2586 sgr0=\E[m, smir=\E[4h, smkx=\E[?1h\E=, smso=\E[7m, 2587 smul=\E[4m, tbc=\E[3g, u6=\E[%i%d;%dR, u7=\E[6n, 2588 u8=\E[?1;2c, u9=\E[c, 2589# Compatible with the R6 xterm 2590# (from XFree86 3.2 distribution, <acsc> and <it> added, <blink@> removed) 2591# added khome/kend, hts based on the R6 xterm code - TD 2592# (khome/kend do not actually work in X11R5 or X11R6, but many people use this 2593# for compatibility with other emulators). 2594xterm-r6|xterm-old|xterm X11R6 version, 2595 OTbs, am, km, mir, msgr, xenl, 2596 cols#80, it#8, lines#24, 2597 acsc=``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 2598 bel=^G, bold=\E[1m, clear=\E[H\E[2J, cr=^M, 2599 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 2600 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 2601 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 2602 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, 2603 el=\E[K, enacs=\E)0, home=\E[H, ht=^I, hts=\EH, il=\E[%p1%dL, 2604 il1=\E[L, ind=^J, 2605 is2=\E7\E[r\E[m\E[?7h\E[?1;3;4;6l\E[4l\E8\E>, kbs=\177, 2606 kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, 2607 kdch1=\E[3~, kend=\EOF, kf1=\E[11~, kf10=\E[21~, kf11=\E[23~, 2608 kf12=\E[24~, kf13=\E[25~, kf14=\E[26~, kf15=\E[28~, 2609 kf16=\E[29~, kf17=\E[31~, kf18=\E[32~, kf19=\E[33~, 2610 kf2=\E[12~, kf20=\E[34~, kf3=\E[13~, kf4=\E[14~, 2611 kf5=\E[15~, kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, 2612 kfnd=\E[1~, khome=\EOH, kich1=\E[2~, kmous=\E[M, knp=\E[6~, kpp=\E[5~, 2613 kslt=\E[4~, meml=\El, memu=\Em, rc=\E8, rev=\E[7m, ri=\EM, 2614 rmacs=^O, rmcup=\E[2J\E[?47l\E8, rmir=\E[4l, 2615 rmkx=\E[?1l\E>, rmso=\E[m, rmul=\E[m, 2616 rs2=\E7\E[r\E8\E[m\E[?7h\E[?1;3;4;6l\E[4l\E>, sc=\E7, 2617 sgr0=\E[m, smacs=^N, smcup=\E7\E[?47h, smir=\E[4h, 2618 smkx=\E[?1h\E=, smso=\E[7m, smul=\E[4m, tbc=\E[3g, 2619 u6=\E[%i%d;%dR, u7=\E[6n, u8=\E[?1;2c, u9=\E[c, 2620# This is the base xterm entry for the xterm supplied with XFree86 3.2 & up. 2621# The name has been changed and some aliases have been removed. 2622xterm-xf86-v32|xterm terminal emulator (XFree86 3.2 Window System), 2623 OTbs, am, bce, km, mir, msgr, xenl, 2624 cols#80, it#8, lines#24, ncv@, 2625 acsc=``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 2626 bel=^G, bold=\E[1m, cbt=\E[Z, civis=\E[?25l, 2627 clear=\E[H\E[2J, cnorm=\E[?25h, cr=^M, 2628 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 2629 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 2630 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 2631 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, 2632 ech=\E[%p1%dX, ed=\E[J, el=\E[K, el1=\E[1K, enacs=\E(B\E)0, 2633 flash=\E[?5h$<100/>\E[?5l, home=\E[H, hpa=\E[%i%p1%dG, 2634 ht=^I, hts=\EH, ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, 2635 il1=\E[L, ind=^J, 2636 is2=\E7\E[r\E[m\E[?7h\E[?1;3;4;6l\E[4l\E8\E>, 2637 ka1=\EOw, ka3=\EOu, kb2=\EOy, kbeg=\EOE, kbs=\177, kc1=\EOq, 2638 kc3=\EOs, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, 2639 kdch1=\177, kend=\EOF, kent=\EOM, kf1=\E[11~, kf10=\E[21~, 2640 kf11=\E[23~, kf12=\E[24~, kf13=\E[25~, kf14=\E[26~, 2641 kf15=\E[28~, kf16=\E[29~, kf17=\E[31~, kf18=\E[32~, 2642 kf19=\E[33~, kf2=\E[12~, kf20=\E[34~, kf3=\E[13~, 2643 kf4=\E[14~, kf5=\E[15~, kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, 2644 kf9=\E[20~, kfnd=\E[1~, khome=\EOH, kich1=\E[2~, 2645 kmous=\E[M, knp=\E[6~, kpp=\E[5~, kslt=\E[4~, meml=\El, 2646 memu=\Em, rc=\E8, rev=\E[7m, ri=\EM, rmacs=^O, rmam=\E[?7l, 2647 rmcup=\E[2J\E[?47l\E8, rmir=\E[4l, rmkx=\E[?1l\E>, 2648 rmso=\E[27m, rmul=\E[24m, rs1=^O, 2649 rs2=\E7\E[r\E8\E[m\E[?7h\E[?1;3;4;6l\E[4l\E>, sc=\E7, 2650 setb=\E[4%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m, 2651 setf=\E[3%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m, 2652 sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;, 2653 sgr0=\E[m\017, smacs=^N, smam=\E[?7h, smcup=\E7\E[?47h, 2654 smir=\E[4h, smkx=\E[?1h\E=, smso=\E[7m, smul=\E[4m, 2655 tbc=\E[3g, u6=\E[%i%d;%dR, u7=\E[6n, u8=\E[?1;2c, u9=\E[c, 2656 vpa=\E[%i%p1%dd, use=ecma+color, 2657 2658# This is the stock xterm entry supplied with XFree86 3.3, which uses VT100 2659# codes for F1-F4 except while in VT220 mode. 2660xterm-xf86-v33|xterm terminal emulator (XFree86 3.3 Window System), 2661 kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, use=xterm-xf86-v32, 2662 2663# This version was released in XFree86 3.3.3 (November 1998). 2664# Besides providing printer support, it exploits a new feature that allows 2665# xterm to use terminfo-based descriptions with the titeInhibit resource. 2666# -- the distribution contained incorrect khome/kend values -TD 2667xterm-xf86-v333|xterm terminal emulator (XFree86 3.3.3 Window System), 2668 mc5i, 2669 blink=\E[5m, ich1@, invis=\E[8m, 2670 is2=\E[!p\E[?3;4l\E[4l\E>, kdch1=\E[3~, kfnd@, kslt@, 2671 mc0=\E[i, mc4=\E[4i, mc5=\E[5i, rmcup=\E[?1047l\E[?1048l, 2672 rs1=\Ec, rs2=\E[!p\E[?3;4l\E[4l\E>, 2673 sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 2674 smcup=\E[?1048h\E[?1047h, use=xterm-xf86-v33, 2675 2676# This version was released in XFree86 4.0. 2677xterm-xf86-v40|xterm terminal emulator (XFree86 4.0 Window System), 2678 npc, 2679 kDC=\E[3;5~, kEND=\EO5F, kHOM=\EO5H, kIC=\E[2;5~, 2680 kLFT=\EO5D, kNXT=\E[6;5~, kPRV=\E[5;5~, kRIT=\EO5C, ka1@, 2681 ka3@, kb2=\EOE, kc1@, kc3@, kcbt=\E[Z, kdch1=\E[3~, kend=\EOF, 2682 kf13=\EO2P, kf14=\EO2Q, kf15=\EO2R, kf16=\EO2S, 2683 kf17=\E[15;2~, kf18=\E[17;2~, kf19=\E[18;2~, 2684 kf20=\E[19;2~, kf21=\E[20;2~, kf22=\E[21;2~, 2685 kf23=\E[23;2~, kf24=\E[24;2~, kf25=\EO5P, kf26=\EO5Q, 2686 kf27=\EO5R, kf28=\EO5S, kf29=\E[15;5~, kf30=\E[17;5~, 2687 kf31=\E[18;5~, kf32=\E[19;5~, kf33=\E[20;5~, 2688 kf34=\E[21;5~, kf35=\E[23;5~, kf36=\E[24;5~, kf37=\EO6P, 2689 kf38=\EO6Q, kf39=\EO6R, kf40=\EO6S, kf41=\E[15;6~, 2690 kf42=\E[17;6~, kf43=\E[18;6~, kf44=\E[19;6~, 2691 kf45=\E[20;6~, kf46=\E[21;6~, kf47=\E[23;6~, 2692 kf48=\E[24;6~, khome=\EOH, rmcup=\E[?1049l, 2693 sgr=\E[0%?%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;, 2694 smcup=\E[?1049h, use=xterm-xf86-v333, 2695 2696xterm-xfree86|xterm-new|xterm terminal emulator (XFree86 4.0 Window System), 2697 npc, 2698 acsc=``aaffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 2699 kDC=\E[3;5~, kEND=\EO5F, kHOM=\EO5H, kIC=\E[2;5~, 2700 kLFT=\EO5D, kNXT=\E[6;5~, kPRV=\E[5;5~, kRIT=\EO5C, 2701 kb2=\EOE, kcbt=\E[Z, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, 2702 kcuu1=\EOA, kend=\EOF, kent=\EOM, kf1=\EOP, kf10=\E[21~, 2703 kf11=\E[23~, kf12=\E[24~, kf13=\EO2P, kf14=\EO2Q, 2704 kf15=\EO2R, kf16=\EO2S, kf17=\E[15;2~, kf18=\E[17;2~, 2705 kf19=\E[18;2~, kf2=\EOQ, kf20=\E[19;2~, kf21=\E[20;2~, 2706 kf22=\E[21;2~, kf23=\E[23;2~, kf24=\E[24;2~, kf25=\EO5P, 2707 kf26=\EO5Q, kf27=\EO5R, kf28=\EO5S, kf29=\E[15;5~, 2708 kf3=\EOR, kf30=\E[17;5~, kf31=\E[18;5~, kf32=\E[19;5~, 2709 kf33=\E[20;5~, kf34=\E[21;5~, kf35=\E[23;5~, 2710 kf36=\E[24;5~, kf37=\EO6P, kf38=\EO6Q, kf39=\EO6R, 2711 kf4=\EOS, kf40=\EO6S, kf41=\E[15;6~, kf42=\E[17;6~, 2712 kf43=\E[18;6~, kf44=\E[19;6~, kf45=\E[20;6~, 2713 kf46=\E[21;6~, kf47=\E[23;6~, kf48=\E[24;6~, kf5=\E[15~, 2714 kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, khome=\EOH, 2715 kich1=\E[2~, kmous=\E[M, knp=\E[6~, kpp=\E[5~, 2716 use=xterm-basic, 2717# 2718# This chunk is used for building the VT220/Sun/PC keyboard variants. 2719xterm-basic|xterm terminal emulator - common (XFree86), 2720 am, bce, km, mc5i, mir, msgr, xenl, 2721 colors#8, cols#80, it#8, lines#24, pairs#64, 2722 acsc=``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 2723 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, civis=\E[?25l, 2724 clear=\E[H\E[2J, cnorm=\E[?25h, cr=^M, 2725 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 2726 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 2727 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 2728 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, 2729 ech=\E[%p1%dX, ed=\E[J, el=\E[K, el1=\E[1K, enacs=\E(B\E)0, 2730 flash=\E[?5h$<100/>\E[?5l, home=\E[H, hpa=\E[%i%p1%dG, 2731 ht=^I, hts=\EH, ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L, 2732 ind=^J, invis=\E[8m, is2=\E[!p\E[?3;4l\E[4l\E>, kbs=\177, 2733 kdch1=\E[3~, mc0=\E[i, mc4=\E[4i, mc5=\E[5i, meml=\El, 2734 memu=\Em, op=\E[39;49m, rc=\E8, rev=\E[7m, ri=\EM, rmacs=^O, 2735 rmam=\E[?7l, rmcup=\E[?1049l, rmir=\E[4l, rmkx=\E[?1l\E>, 2736 rmso=\E[27m, rmul=\E[24m, rs1=\Ec, 2737 rs2=\E[!p\E[?3;4l\E[4l\E>, sc=\E7, setab=\E[4%p1%dm, 2738 setaf=\E[3%p1%dm, 2739 setb=\E[4%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m, 2740 setf=\E[3%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m, 2741 sgr=\E[0%?%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 2742 sgr0=\E[m\017, smacs=^N, smam=\E[?7h, smcup=\E[?1049h, 2743 smir=\E[4h, smkx=\E[?1h\E=, smso=\E[7m, smul=\E[4m, 2744 tbc=\E[3g, u6=\E[%i%d;%dR, u7=\E[6n, u8=\E[?1;2c, u9=\E[c, 2745 vpa=\E[%i%p1%dd, 2746 2747# From: David J. MacKenzie <djm@va.pubnix.com>, 14 Nov 1997 2748xterm-xi|xterm on XI Graphics Accelerated X under BSD/OS 3.1, 2749 rmso=\E[m, rmul=\E[m, use=xterm-xf86-v33, 2750 2751# This is one of the variants of XFree86 3.3 xterm, updated for 4.0 (T.Dickey) 2752xterm-16color|xterm with 16 colors like aixterm, 2753 colors#16, ncv#32, pairs#256, 2754 setab=\E[%?%p1%{8}%<%t%p1%{40}%+%e%p1%{92}%+%;%dm, 2755 setaf=\E[%?%p1%{8}%<%t%p1%{30}%+%e%p1%{82}%+%;%dm, 2756 setb=%p1%{8}%/%{6}%*%{4}%+\E[%d%p1%{8}%m%Pa%?%ga%{1}%=%t4%e%ga%{3}%=%t6%e%ga%{4}%=%t1%e%ga%{6}%=%t3%e%ga%d%;m, 2757 setf=%p1%{8}%/%{6}%*%{3}%+\E[%d%p1%{8}%m%Pa%?%ga%{1}%=%t4%e%ga%{3}%=%t6%e%ga%{4}%=%t1%e%ga%{6}%=%t3%e%ga%d%;m, 2758 use=xterm-xfree86, 2759 2760# These variants of XFree86 3.9.16 xterm are built as a configure option. 2761xterm-256color|xterm with 256 colors, 2762 ccc, 2763 colors#256, ncv#32, pairs#256, 2764 initc=\E]4;%p1%d;rgb\:%p2%{255}%*%{1000}%/%2.2X/%p3%{255}%*%{1000}%/%2.2X/%p4%{255}%*%{1000}%/%2.2X\E\\, 2765 setab=\E[48;5;%p1%dm, setaf=\E[38;5;%p1%dm, 2766 setb=\E[48;5;%p1%dm, setf=\E[38;5;%p1%dm, 2767 use=xterm-xfree86, 2768xterm-88color|xterm with 88 colors, 2769 colors#88, pairs#88, use=xterm-256color, 2770 2771# This is another variant, for XFree86 4.0 xterm (T.Dickey) 2772# This is an 8-bit version of xterm, which emulates DEC vt220 with ANSI color. 2773# To use it, your decTerminalID resource must be set to 200 or above. 2774# 2775# HTS \E H \210 2776# RI \E M \215 2777# SS3 \E O \217 2778# CSI \E [ \233 2779# 2780xterm-8bit|xterm terminal emulator 8-bit controls (X Window System), 2781 OTbs, am, bce, km, mc5i, mir, msgr, npc, xenl, 2782 colors#8, cols#80, it#8, lines#24, pairs#64, 2783 acsc=``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 2784 bel=^G, blink=\2335m, bold=\2331m, cbt=\233Z, 2785 civis=\233?25l, clear=\233H\2332J, cnorm=\233?25h, cr=^M, 2786 csr=\233%i%p1%d;%p2%dr, cub=\233%p1%dD, cub1=^H, 2787 cud=\233%p1%dB, cud1=^J, cuf=\233%p1%dC, cuf1=\233C, 2788 cup=\233%i%p1%d;%p2%dH, cuu=\233%p1%dA, cuu1=\233A, 2789 dch=\233%p1%dP, dch1=\233P, dl=\233%p1%dM, dl1=\233M, 2790 ech=\233%p1%dX, ed=\233J, el=\233K, el1=\2331K, 2791 enacs=\E(B\E)0, flash=\233?5h$<100/>\233?5l, 2792 home=\233H, hpa=\233%i%p1%dG, ht=^I, hts=\210, 2793 ich=\233%p1%d@, il=\233%p1%dL, il1=\233L, ind=^J, 2794 invis=\2338m, 2795 is2=\E7\E G\233r\233m\233?7h\233?1;3;4;6l\2334l\E8\E>, 2796 ka1=\217w, ka3=\217u, kb2=\217y, kbeg=\217E, kbs=\177, 2797 kc1=\217q, kc3=\217s, kcbt=\233Z, kcub1=\217D, kcud1=\217B, 2798 kcuf1=\217C, kcuu1=\217A, kdch1=\2333~, kend=\2334~, 2799 kent=\217M, kf1=\23311~, kf10=\23321~, kf11=\23323~, 2800 kf12=\23324~, kf13=\23325~, kf14=\23326~, kf15=\23328~, 2801 kf16=\23329~, kf17=\23331~, kf18=\23332~, kf19=\23333~, 2802 kf2=\23312~, kf20=\23334~, kf3=\23313~, kf4=\23314~, 2803 kf5=\23315~, kf6=\23317~, kf7=\23318~, kf8=\23319~, 2804 kf9=\23320~, khome=\2331~, kich1=\2332~, kmous=\233M, 2805 knp=\2336~, kpp=\2335~, mc0=\233i, mc4=\2334i, mc5=\2335i, 2806 meml=\El, memu=\Em, op=\23339;49m, rc=\E8, rev=\2337m, 2807 ri=\215, rmacs=^O, rmam=\233?7l, rmcup=\233?1049l, 2808 rmir=\2334l, rmkx=\233?1l\E>, rmso=\23327m, rmul=\23324m, 2809 rs1=\Ec, 2810 rs2=\E[62"p\E G\E7\233r\E8\233m\233?7h\233?1;3;4;6l\2334l\E>, 2811 sc=\E7, setab=\2334%p1%dm, setaf=\2333%p1%dm, 2812 setb=\2334%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m, 2813 setf=\2333%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m, 2814 sgr=\2330%?%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 2815 sgr0=\233m^O, smacs=^N, smam=\233?7h, smcup=\233?1049h, 2816 smir=\2334h, smkx=\233?1h\E=, smso=\2337m, smul=\2334m, 2817 tbc=\2333g, u6=\233[%i%d;%dR, u7=\E[6n, u8=\233[?1;2c, 2818 u9=\E[c, vpa=\233%i%p1%dd, 2819 2820xterm-hp|XFree86 xterm with hpterm function keys, 2821 kclr=\EJ, kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, 2822 kdch1=\EP, kend=\EF, kf1=\Ep, kf2=\Eq, kf3=\Er, kf4=\Es, 2823 kf5=\Et, kf6=\Eu, kf7=\Ev, kf8=\Ew, khome=\Eh, kich1=\EQ, 2824 knp=\ES, kpp=\ET, use=xterm-basic, 2825 2826xterm-sco|XFree86 xterm with SCO function keys, 2827 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kend=\E[F, 2828 kf1=\E[M, kf10=\E[V, kf11=\E[W, kf12=\E[X, kf13=\E[Y, 2829 kf15=\E[a, kf16=\E[b, kf17=\E[c, kf18=\E[d, kf19=\E[e, 2830 kf2=\E[N, kf20=\E[f, kf21=\E[g, kf22=\E[h, kf23=\E[i, 2831 kf24=\E[j, kf25=\E[k, kf26=\E[l, kf27=\E[m, kf28=\E[n, 2832 kf29=\E[o, kf3=\E[O, kf30=\E[p, kf31=\E[q, kf32=\E[r, 2833 kf33=\E[s, kf34=\E[t, kf35=\E[u, kf4=\E[P, kf5=\E[Q, 2834 kf6=\E[R, kf7=\E[S, kf8=\E[T, kf9=\E[U, khome=\E[H, 2835 kich1=\E[L, knp=\E[G, kpp=\E[I, use=xterm-basic, 2836 2837# The xterm-xfree86 description has all of the features, but is not completely 2838# compatible with vt220. If you are using a Sun or PC keyboard, set the 2839# sunKeyboard resource to true: 2840# + maps the editing keypad 2841# + interprets control-function-key as a second array of keys, so a 2842# 12-fkey keyboard can support vt220's 20-fkeys. 2843# + maps numeric keypad "+" to ",". 2844# + uses DEC-style control sequences for the application keypad. 2845# 2846xterm-vt220|XFree86 xterm emulating vt220, 2847 ka1=\EOw, ka3=\EOy, kbeg=\EOu, kc1=\EOq, kc3=\EOs, kcbt=\E[Z, 2848 kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kend=\E[4~, 2849 kent=\EOM, kf1=\EOP, kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, 2850 kf13=\E[25~, kf14=\E[26~, kf15=\E[28~, kf16=\E[29~, 2851 kf17=\E[31~, kf18=\E[32~, kf19=\E[33~, kf2=\EOQ, 2852 kf20=\E[34~, kf3=\EOR, kf4=\EOS, kf5=\E[15~, kf6=\E[17~, 2853 kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, khome=\E[1~, 2854 kich1=\E[2~, kmous=\E[M, knp=\E[6~, kpp=\E[5~, 2855 use=xterm-basic, 2856 2857xterm-vt52|XFree86 xterm emulating dec vt52, 2858 cols#80, it#8, lines#24, 2859 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 2860 bel=^G, clear=\EH\EJ, cr=^M, cub1=\ED, cud1=\EB, cuf1=\EC, 2861 cup=\EY%p1%' '%+%c%p2%' '%+%c, cuu1=\EA, ed=\EJ, el=\EK, 2862 home=\EH, ht=^I, ind=^J, kbs=\177, kcub1=\ED, kcud1=\EB, 2863 kcuf1=\EC, kcuu1=\EA, nel=^M^J, ri=\EI, rmacs=\EG, smacs=\EF, 2864 2865xterm-noapp|xterm with cursor keys in normal mode, 2866 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, rmcup@, 2867 rmkx=\E>, smcup@, smkx=\E=, use=xterm, 2868 2869xterm-24|vs100|xterms|xterm terminal emulator (X Window System), 2870 lines#24, use=xterm-r6, 2871 2872# This is xterm for ncurses. 2873xterm|xterm terminal emulator (X Window System), 2874 use=xterm-r6, 2875# use=xterm-xfree86, 2876 2877# These entries allow access to the X titlebar and icon name as a status line. 2878# Note that twm (and possibly window managers descended from it such as tvtwm, 2879# ctwm, and vtwm) track windows by icon-name; thus, you don't want to mess 2880# with it. 2881xterm+sl|access X title line and icon name, 2882 hs, 2883 wsl#40, 2884 dsl=\E]0;\007, fsl=^G, tsl=\E]0;, use=xterm, 2885xterm+sl-twm|access X title line (pacify twm-descended window managers), 2886 hs, 2887 wsl#40, 2888 dsl=\E]2;\007, fsl=^G, tsl=\E]2;, use=xterm, 2889 2890# 2891# The following xterm variants don't depend on your base version 2892# 2893# xterm with bold instead of underline 2894xterm-bold|xterm terminal emulator (X11R6 Window System) standout w/bold, 2895 smso=\E[7m, smul=\E[1m, use=xterm, 2896# (kterm: this had extension capabilities ":KJ:TY=ascii:" -- esr) 2897# (kterm should not invoke DEC Graphics as the alternate character set 2898# -- Kenji Rikitake) 2899# (proper setting of enacs, smacs, rmacs makes kterm to use DEC Graphics 2900# -- MATSUMOTO Shoji) 2901kterm|kterm kanji terminal emulator (X window system), 2902 eslok, hs, 2903 acsc=++\,\,--..00II``aaffgghhjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 2904 csr=\E[%i%p1%d;%p2%dr, dsl=\E[?H, enacs=, fsl=\E[?F, 2905 kmous=\E[M, rc=\E8, rmacs=\E(B, sc=\E7, smacs=\E(0, 2906 tsl=\E[?E\E[?%i%dT, use=xterm-r6, use=ecma+color, 2907kterm-color|kterm-co|kterm with ANSI colors, 2908 ncv@, use=kterm, use=ecma+color, 2909# See the note on ICH/ICH1 VERSUS RMIR/SMIR near the end of file 2910xterm-nic|xterm with ich/ich1 suppressed for non-curses programs, 2911 ich@, ich1@, use=xterm, 2912# From: Mark Sheppard <kimble@mistral.co.uk>, 4 May 1996 2913xterm1|xterm terminal emulator ignoring the alternate screen buffer, 2914 rmcup@, smcup@, use=xterm, 2915 2916# This describes the capabilities of color_xterm, an xterm variant from 2917# before ECMA-64 color support was folded into the main-line xterm release. 2918# This entry is straight from color_xterm's maintainer. 2919# From: Jacob Mandelson <jlm@ugcs.caltech.edu>, 09 Nov 1996 2920# The README's with the distribution also say that it supports SGR 21, 24, 25 2921# and 27, but they are not present in the terminfo or termcap. 2922color_xterm|cx|cx100|color_xterm color terminal emulator for X, 2923 OTbs, am, km, mir, msgr, xenl, 2924 cols#80, it#8, lines#65, ncv@, 2925 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 2926 bel=^G, bold=\E[1m, clear=\E[H\E[2J, cr=^M, 2927 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 2928 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 2929 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 2930 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, 2931 el=\E[K, el1=\E[1K, enacs=\E(B\E)0, home=\E[H, ht=^I, 2932 ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L, ind=^J, 2933 is1=\E[r\E[m\E[?7h\E[?4;6l\E[4l, ka1=\EOw, ka3=\EOy, 2934 kb2=\EOu, kbs=\177, kc1=\EOq, kc3=\EOs, kcub1=\EOD, kcud1=\EOB, 2935 kcuf1=\EOC, kcuu1=\EOA, kend=\E[8~, kent=\EOM, kf1=\E[11~, 2936 kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, kf2=\E[12~, 2937 kf3=\E[13~, kf4=\E[14~, kf5=\E[15~, kf6=\E[17~, kf7=\E[18~, 2938 kf8=\E[19~, kf9=\E[20~, khome=\E[7~, kich1=\E[2~, 2939 kmous=\E[M, knp=\E[6~, kpp=\E[5~, rc=\E8, rev=\E[7m, ri=\EM, 2940 rmacs=^O, rmam=\E[?7l, rmcup=\E>\E[?41;1r, rmir=\E[4l, 2941 rmso=\E[27m, rmul=\E[24m, 2942 rs1=\E(B\017\E[r\E[m\E[2J\E[H\E[?7h\E[?1;3;4;6l\E[4l\E<, 2943 sc=\E7, 2944 sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;, 2945 sgr0=\E[m, smacs=^N, smam=\E[?7h, 2946 smcup=\E[?1;41s\E[?1;41h\E=, smir=\E[4h, smso=\E[7m, 2947 smul=\E[4m, use=ecma+color, 2948 2949# The 'nxterm' distributed with Redhat Linux 5.2 is a slight rehack of 2950# xterm-sb_right-ansi-3d, which implements ANSI colors, but does not support 2951# SGR 39 or 49. SGR 0 does reset colors (along with everything else). This 2952# description is "compatible" with color_xterm, rxvt and XFree86 xterm, except 2953# that each of those implements the home, end, delete keys differently. 2954# 2955# Redhat Linux 6.x distributes XFree86 xterm as "nxterm", which uses bce 2956# colors; note that this is not compatible with the 5.2 version. 2957nxterm|xterm-color|generic color xterm, 2958 ncv@, 2959 op=\E[m, use=xterm-r6, use=klone+color, 2960 2961# this describes the alpha-version of Gnome terminal shipped with Redhat 6.0 2962gnome|Gnome terminal, 2963 bce, 2964 kdch1=\177, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, 2965 use=xterm-color, 2966 2967# This is kvt 0-18.7, shipped with Redhat 6.0 (though whether it supports bce 2968# or not is debatable). 2969kvt|KDE terminal, 2970 bce, km@, 2971 kdch1=\177, kend=\E[F, khome=\E[H, use=xterm-color, 2972 2973# From: Thomas Dickey <dickey@clark.net> 04 Oct 1997 2974# Updated: Oezguer Kesim <kesim@math.fu-berlin.de> 02 Nov 1997 2975# Notes: 2976# rxvt 2.21b uses 2977# smacs=\E(B\E)U^N, rmacs=\E(B\E)0^O, 2978# but some applications don't work with that. 2979# It also has an AIX extension 2980# box2=lqkxjmwuvtn, 2981# and 2982# ech=\E[%p1%dX, 2983# but the latter does not work correctly. 2984# 2985# The distributed terminfo says it implements hpa and vpa, but they are not 2986# implemented correctly, using relative rather than absolute positioning. 2987# 2988# rxvt is normally configured to look for "xterm" or "xterm-color" as $TERM. 2989# Since rxvt is not really compatible with xterm, it should be configured as 2990# "rxvt" (monochrome) and "rxvt-color". 2991rxvt-basic|rxvt terminal base (X Window System), 2992 OTbs, am, bce, eo, km, mir, msgr, xenl, xon, 2993 cols#80, it#8, lines#24, 2994 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 2995 bel=^G, blink=\E[5m, bold=\E[1m, civis=\E[?25l, 2996 clear=\E[H\E[2J, cnorm=\E[?25h, cr=^M, 2997 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 2998 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 2999 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 3000 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, 3001 el=\E[K, el1=\E[1K, enacs=\E(B\E)0, flash=\E[?5h\E[?5l, 3002 home=\E[H, ht=^I, hts=\EH, ich=\E[%p1%d@, ich1=\E[@, 3003 il=\E[%p1%dL, il1=\E[L, ind=^J, is1=\E[?47l\E=\E[?1l, 3004 is2=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;3;4;6l\E[4l, 3005 kDC=\E[3$, kEND=\E[8$, kHOM=\E[7$, kLFT=\E[d, kNXT=\E[6$, 3006 kPRV=\E[5$, kRIT=\E[c, ka1=\EOw, ka3=\EOy, kb2=\EOu, kbs=^H, 3007 kc1=\EOq, kc3=\EOs, kcbt=\E[Z, kcub1=\E[D, kcud1=\E[B, 3008 kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[3~, kel=\E[8\^, 3009 kend=\E[8~, kent=\EOM, kf1=\E[11~, kf10=\E[21~, 3010 kf11=\E[23~, kf12=\E[24~, kf13=\E[25~, kf14=\E[26~, 3011 kf15=\E[28~, kf16=\E[29~, kf17=\E[31~, kf18=\E[32~, 3012 kf19=\E[33~, kf2=\E[12~, kf20=\E[34~, kf3=\E[13~, 3013 kf4=\E[14~, kf5=\E[15~, kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, 3014 kf9=\E[20~, kfnd=\E[1~, khome=\E[7~, kich1=\E[2~, 3015 kmous=\E[M, knp=\E[6~, kpp=\E[5~, kslt=\E[4~, rc=\E8, 3016 rev=\E[7m, ri=\EM, rmacs=^O, rmcup=\E[2J\E[?47l\E8, 3017 rmir=\E[4l, rmkx=\E>, rmso=\E[27m, rmul=\E[24m, 3018 rs1=\E>\E[1;3;4;5;6l\E[?7h\E[m\E[r\E[2J\E[H, 3019 rs2=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;3;4;6l\E[4l\E>, 3020 s0ds=\E(B, s1ds=\E(0, sc=\E7, sgr0=\E[0m\017, smacs=^N, 3021 smcup=\E7\E[?47h, smir=\E[4h, smkx=\E=, smso=\E[7m, 3022 smul=\E[4m, tbc=\E[3g, 3023rxvt|rxvt terminal emulator (X Window System), 3024 ncv@, 3025 sgr0=\E[m\017, use=rxvt-basic, use=ecma+color, 3026 3027# XXX MirBSD: this is from rxvt-unicode.terminfo,v 1.15 3028# From: Thomas Dickey <dickey@clark.net> 04 Oct 1997 3029# Updated: Özgür Kesim <kesim@math.fu-berlin.de> 02 Nov 1997 3030# Updated: Marc Lehmann <pcg@goof.com>, 17 Feb 2005 3031# Notes: 3032# It has an AIX extension 3033# box2=lqkxjmwuvtn, 3034# but the latter does not work correctly. 3035# 3036rxvt-unicode|rxvt-unicode terminal (X Window System), 3037 am, bce, eo, km, msgr, xenl, hs, 3038 cols#80, it#8, lines#24, 3039 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~-A.B+C\,D0EhFiG, 3040 bel=^G, blink=\E[5m, bold=\E[1m, blink=\E[5m, civis=\E[?25l, 3041 clear=\E[H\E[2J, cnorm=\E[?25h, cr=^M, 3042 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 3043 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 3044 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 3045 cvvis=\E[?25h, dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, 3046 dl1=\E[M, ed=\E[J, el=\E[K, el1=\E[1K, 3047 flash=\E[?5h$<20/>\E[?5l, home=\E[H, hpa=\E[%i%p1%dG, ht=^I, 3048 hts=\EH, ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, il1=\E[L, 3049 ind=^J, is1=\E[?47l\E=\E[?1l, 3050 is2=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;3;4;6l\E[4l, 3051 kDC=\E[3$, kIC=\E2$, kEND=\E[8$, kHOM=\E[7$, kLFT=\E[d, kNXT=\E[6$, 3052 kPRV=\E[5$, kRIT=\E[c, 3053 kbs=\177, 3054 ka1=\EOw, ka3=\EOy, 3055 kb2=\EOu, 3056 kc1=\EOq, kc3=\EOs, 3057 kcbt=\E[Z, kcub1=\EOD, kcud1=\EOB, 3058 kcuf1=\EOC, kcuu1=\EOA, kdch1=\E[3~, kel=\E[8\^, 3059 kend=\E[8~, kent=\EOM, kf1=\E[11~, kf10=\E[21~, 3060 kf11=\E[23~, kf12=\E[24~, kf13=\E[25~, kf14=\E[26~, 3061 kf15=\E[28~, kf16=\E[29~, kf17=\E[31~, kf18=\E[32~, 3062 kf19=\E[33~, kf2=\E[12~, kf20=\E[34~, kf3=\E[13~, 3063 kf4=\E[14~, kf5=\E[15~, kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, 3064 kf9=\E[20~, kfnd=\E[1~, khome=\E[7~, kich1=\E[2~, 3065 kmous=\E[M, knp=\E[6~, kpp=\E[5~, kslt=\E[4~, rc=\E8, 3066 rev=\E[7m, ri=\EM, 3067 rmso=\E[27m, rmul=\E[24m, 3068 rs1=\Ec, 3069 rs2=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;3;4;6l\E[4l\E>, 3070 sgr0=\E[m\017, 3071 enacs=, smacs=\E(0, rmacs=\E(B, 3072 smso=\E[7m, smul=\E[4m, tbc=\E[3g, 3073 vpa=\E[%i%p1%dd, 3074 colors#88, pairs#256, btns#5, lm#0, 3075 ccc, eo, npc, mc5i, ncv#0, mir, xon, bw, 3076 ech=\E[%p1%dX, 3077 mc0=\E[i, mc4=\E[4i, mc5=\E[5i, 3078 sitm=\E[3m, ritm=\E[23m, 3079 smam=\E[?7h, rmam=\E[?7l, 3080 smir=\E[4h, rmir=\E[4l, 3081 smcup=\E[?1049h, rmcup=\E[r\E[?1049l, 3082 smkx=\E[?1h\E=, rmkx=\E[?1l\E>, 3083 indn=\E[%p1%dS, rin=\E[%p1%dT, 3084 sgr=\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;%?%p7%t;8%;m%?%p9%t\E(0%e\E(B%;, 3085 op=\E[39;49m, 3086 setaf=\E[38;5;%p1%dm, setab=\E[48;5;%p1%dm, 3087 setf=%?%p1%{7}%>%t\E[38;5;%p1%dm%e\E[3%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m%;, 3088 setb=%?%p1%{7}%>%t\E[48;5;%p1%dm%e\E[4%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m%;, 3089 initc=\E]4;%p1%d;rgb\:%p2%{65535}%*%{1000}%/%4.4X/%p3%{65535}%*%{1000}%/%4.4X/%p4%{65535}%*%{1000}%/%4.4X\E\\, 3090 sc=\E7, 3091 s0ds=\E(B, s1ds=\E(0, s2ds=\E*B, s3ds=\E+B, 3092 u6=\E[%i%d;%dR, u7=\E[6n, u8=\E[?1;2c, u9=\E[c, 3093 tsl=\E]2;, fsl=\007, dsl=\E]2;\007, 3094 3095# XXX MirBSD: this is from st.info git 210dda9570095443bac887c2bfcd75f2bcc23780 3096st| simpleterm, 3097 acsc=``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 3098 am, 3099 bce, 3100 bel=^G, 3101 blink=\E[5m, 3102 bold=\E[1m, 3103 cbt=\E[Z, 3104 cvvis=\E[?25h, 3105 civis=\E[?25l, 3106 clear=\E[H\E[2J, 3107 cnorm=\E[?12l\E[?25h, 3108 colors#8, 3109 cols#80, 3110 cr=^M, 3111 csr=\E[%i%p1%d;%p2%dr, 3112 cub=\E[%p1%dD, 3113 cub1=^H, 3114 cud1=^J, 3115 cud=\E[%p1%dB, 3116 cuf1=\E[C, 3117 cuf=\E[%p1%dC, 3118 cup=\E[%i%p1%d;%p2%dH, 3119 cuu1=\E[A, 3120 cuu=\E[%p1%dA, 3121 dch=\E[%p1%dP, 3122 dch1=\E[P, 3123 dl=\E[%p1%dM, 3124 dl1=\E[M, 3125 ech=\E[%p1%dX, 3126 ed=\E[J, 3127 el=\E[K, 3128 el1=\E[1K, 3129 enacs=\E)0, 3130 flash=\E[?5h\E[?5l, 3131 fsl=^G, 3132 home=\E[H, 3133 hpa=\E[%i%p1%dG, 3134 hs, 3135 ht=^I, 3136 hts=\EH, 3137 ich=\E[%p1%d@, 3138 il1=\E[L, 3139 il=\E[%p1%dL, 3140 ind=^J, 3141 indn=\E[%p1%dS, 3142 invis=\E[8m, 3143 is2=\E[4l\E>\E[?1034l, 3144 it#8, 3145 kel=\E[1;2F, 3146 ked=\E[1;5F, 3147 ka1=\E[1~, 3148 ka3=\E[5~, 3149 kc1=\E[4~, 3150 kc3=\E[6~, 3151 kbs=\177, 3152 kcbt=\E[Z, 3153 kb2=\EOu, 3154 kcub1=\EOD, 3155 kcud1=\EOB, 3156 kcuf1=\EOC, 3157 kcuu1=\EOA, 3158 kDC=\E[3;2~, 3159 kent=\EOM, 3160 kEND=\E[1;2F, 3161 kIC=\E[2;2~, 3162 kNXT=\E[6;2~, 3163 kPRV=\E[5;2~, 3164 kHOM=\E[1;2H, 3165 kLFT=\E[1;2D, 3166 kRIT=\E[1;2C, 3167 kind=\E[1;2B, 3168 kri=\E[1;2A, 3169 kclr=\E[3;5~, 3170 kdl1=\E[3;2~, 3171 kdch1=\E[3~, 3172 kich1=\E[2~, 3173 kend=\E[4~, 3174 kf1=\EOP, 3175 kf2=\EOQ, 3176 kf3=\EOR, 3177 kf4=\EOS, 3178 kf5=\E[15~, 3179 kf6=\E[17~, 3180 kf7=\E[18~, 3181 kf8=\E[19~, 3182 kf9=\E[20~, 3183 kf10=\E[21~, 3184 kf11=\E[23~, 3185 kf12=\E[24~, 3186 kf13=\E[1;2P, 3187 kf14=\E[1;2Q, 3188 kf15=\E[1;2R, 3189 kf16=\E[1;2S, 3190 kf17=\E[15;2~, 3191 kf18=\E[17;2~, 3192 kf19=\E[18;2~, 3193 kf20=\E[19;2~, 3194 kf21=\E[20;2~, 3195 kf22=\E[21;2~, 3196 kf23=\E[23;2~, 3197 kf24=\E[24;2~, 3198 kf25=\E[1;5P, 3199 kf26=\E[1;5Q, 3200 kf27=\E[1;5R, 3201 kf28=\E[1;5S, 3202 kf29=\E[15;5~, 3203 kf30=\E[17;5~, 3204 kf31=\E[18;5~, 3205 kf32=\E[19;5~, 3206 kf33=\E[20;5~, 3207 kf34=\E[21;5~, 3208 kf35=\E[23;5~, 3209 kf36=\E[24;5~, 3210 kf37=\E[1;6P, 3211 kf38=\E[1;6Q, 3212 kf39=\E[1;6R, 3213 kf40=\E[1;6S, 3214 kf41=\E[15;6~, 3215 kf42=\E[17;6~, 3216 kf43=\E[18;6~, 3217 kf44=\E[19;6~, 3218 kf45=\E[20;6~, 3219 kf46=\E[21;6~, 3220 kf47=\E[23;6~, 3221 kf48=\E[24;6~, 3222 kf49=\E[1;3P, 3223 kf50=\E[1;3Q, 3224 kf51=\E[1;3R, 3225 kf52=\E[1;3S, 3226 kf53=\E[15;3~, 3227 kf54=\E[17;3~, 3228 kf55=\E[18;3~, 3229 kf56=\E[19;3~, 3230 kf57=\E[20;3~, 3231 kf58=\E[21;3~, 3232 kf59=\E[23;3~, 3233 kf60=\E[24;3~, 3234 kf61=\E[1;4P, 3235 kf62=\E[1;4Q, 3236 kf63=\E[1;4R, 3237 khome=\E[1~, 3238 kil1=\E[2;5~, 3239 krmir=\E[2;2~, 3240 kich1=\E[2~, 3241 knp=\E[6~, 3242 kmous=\E[M, 3243 kpp=\E[5~, 3244 lines#24, 3245 mir, 3246 msgr, 3247 ncv#3, 3248 op=\E[39;49m, 3249 pairs#64, 3250 rc=\E8, 3251 rev=\E[7m, 3252 ri=\EM, 3253 ritm=\E[23m, 3254 rmacs=\E(B, 3255 rmcup=\E[?1049l, 3256 rmir=\E[4l, 3257 rmkx=\E[?1l\E>, 3258 rmso=\E[27m, 3259 rmul=\E[m, 3260 rs1=\Ec, 3261 rs2=\E[4l\E>\E[?1034l, 3262 sc=\E7, 3263 setab=\E[4%p1%dm, 3264 setaf=\E[3%p1%dm, 3265 setb=\E[4%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m, 3266 setf=\E[3%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m, 3267 sgr0=\E[0m, 3268 sgr=%?%p9%t\E(0%e\E(B%;\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;%?%p7%t;8%;m, 3269 sitm=\E[3m, 3270 smacs=\E(0, 3271 smcup=\E[?1049h, 3272 smir=\E[4h, 3273 smkx=\E[?1h\E=, 3274 smso=\E[7m, 3275 smul=\E[4m, 3276 tbc=\E[3g, 3277 tsl=\E]0;, 3278 ul, 3279 xenl, 3280 vpa=\E[%i%p1%dd, 3281 3282 3283st-256color| simpleterm with 256 colors, 3284 use=st, 3285 colors#256, 3286 pairs#32767, 3287# Nicked from xterm-256color 3288 setab=\E[%?%p1%{8}%<%t4%p1%d%e%p1%{16}%<%t10%p1%{8}%-%d%e48;5;%p1%d%;m, 3289 setaf=\E[%?%p1%{8}%<%t3%p1%d%e%p1%{16}%<%t9%p1%{8}%-%d%e38;5;%p1%d%;m, 3290 3291st-meta| simpleterm with meta key, 3292 use=st, 3293 km, 3294 rmm=\E[?1034l, 3295 smm=\E[?1034h, 3296 rs2=\E[4l\E>\E[?1034h, 3297 is2=\E[4l\E>\E[?1034h, 3298 3299st-meta-256color| simpleterm with meta key and 256 colors, 3300 use=st-256color, 3301 km, 3302 rmm=\E[?1034l, 3303 smm=\E[?1034h, 3304 rs2=\E[4l\E>\E[?1034h, 3305 is2=\E[4l\E>\E[?1034h, 3306 3307# From: Michael Jennings <mej@valinux.com> 3308# removed kf0 which conflicts with kf10 -TD 3309# remove cvvis which conflicts with cnorm -TD 3310# There's no u6 because Eterm appears to lack CPR (cursor position report). 3311Eterm|Eterm-color|Eterm with xterm-style color support (X Window System), 3312 am, bce, bw, eo, km, mc5i, mir, msgr, xenl, xon, 3313 btns#5, cols#80, it#8, lines#24, lm#0, ncv@, 3314 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 3315 bel=^G, blink=\E[5m, bold=\E[1m, civis=\E[?25l, 3316 clear=\E[H\E[2J, cnorm=\E[?25h, cr=^M, 3317 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 3318 cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, 3319 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 3320 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, 3321 ech=\E[%p1%dX, ed=\E[J, el=\E[K, el1=\E[1K, enacs=\E)0, 3322 flash=\E[?5h\E[?5l, home=\E[H, hpa=\E[%i%p1%dG, ht=^I, 3323 hts=\EH, ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, il1=\E[L, 3324 ind=^J, is1=\E[?47l\E>\E[?1l, 3325 is2=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;3;4;6l\E[4l, 3326 kDC=\E[3$, kEND=\E[8$, kHOM=\E[7$, kLFT=\E[d, kNXT=\E[6$, 3327 kPRV=\E[5$, kRIT=\E[c, ka1=\E[7~, ka3=\E[5~, kb2=\EOu, 3328 kbeg=\EOu, kbs=^H, kc1=\E[8~, kc3=\E[6~, kcbt=\E[Z, 3329 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 3330 kdch1=\E[3~, kel=\E[8\^, kend=\E[8~, kent=\EOM, kf1=\E[11~, 3331 kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, kf13=\E[25~, 3332 kf14=\E[26~, kf15=\E[28~, kf16=\E[29~, kf17=\E[31~, 3333 kf18=\E[32~, kf19=\E[33~, kf2=\E[12~, kf20=\E[34~, 3334 kf3=\E[13~, kf4=\E[14~, kf5=\E[15~, kf6=\E[17~, kf7=\E[18~, 3335 kf8=\E[19~, kf9=\E[20~, kfnd=\E[1~, khlp=\E[28~, 3336 khome=\E[7~, kich1=\E[2~, kmous=\E[M, knp=\E[6~, kpp=\E[5~, 3337 kslt=\E[4~, mc4=\E[4i, mc5=\E[5i, rc=\E8, rev=\E[7m, ri=\EM, 3338 rmacs=^O, rmam=\E[?7l, rmcup=\E[2J\E[?47l\E8, rmir=\E[4l, 3339 rmkx=, rmso=\E[27m, rmul=\E[24m, 3340 rs1=\E>\E[1;3;4;5;6l\E[?7h\E[m\E[r\E[2J\E[H, 3341 rs2=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;3;4;6l\E[4l\E>, 3342 sc=\E7, 3343 sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;, 3344 sgr0=\E[m\017, smacs=^N, smam=\E[?7h, smcup=\E7\E[?47h, 3345 smir=\E[4h, smkx=, smso=\E[7m, smul=\E[4m, tbc=\E[3g, 3346 u7=\E[6n, u8=\E[?1;2c, u9=\E[c, vpa=\E[%i%p1%dd, 3347 use=ecma+color, 3348 3349# These (xtermc and xtermm) are distributed with Solaris. They refer to a 3350# variant of xterm which is apparently no longer supported, but are interesting 3351# because they illustrate SVr4 curses mouse controls - T.Dickey 3352xtermm|xterm terminal emulator (monocrome), 3353 OTbs, am, km, mir, msgr, xenl, 3354 btns#3, cols#80, it#8, lines#24, 3355 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 3356 bel=^G, blink=@, bold=\E[1m, clear=\E[H\E[2J, cr=^M, 3357 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=\E[1D, 3358 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 3359 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 3360 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, 3361 el=\E[K, el1=\E[1K$<3>, enacs=\E(B\E)0, getm=\E[%p1%dY, 3362 home=\E[H, ht=^I, hts=\EH, ich=\E[%p1%d@, ich1=\E[@, 3363 il=\E[%p1%dL, il1=\E[L, ind=^J, ka1=\EOq, ka3=\EOs, kb2=\EOr, 3364 kbs=\177, kc1=\EOp, kc3=\EOn, kcub1=\EOD, kcud1=\EOB, 3365 kcuf1=\EOC, kcuu1=\EOA, kend=\E[Y, kent=\EOM, kf0=\EOy, 3366 kf1=\EOP, kf10=\EOY, kf11=\EOZ, kf12=\EOA, kf2=\EOQ, 3367 kf3=\EOR, kf4=\EOS, kf5=\EOT, kf6=\EOU, kf7=\EOV, kf8=\EOW, 3368 kf9=\EOX, khome=\E[H, kmous=\E[^_, knp=\E[U, kpp=\E[V, 3369 rc=\E8, reqmp=\E[492Z, rev=\E[7m, ri=\EM, rmacs=^O, 3370 rmcup=\E@0\E[?4r, rmso=\E[m, 3371 rs1=\E>\E[1;3;4;5;6l\E[?7h\E[m\E[r\E[2J\E[H, 3372 rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sc=\E7, 3373 sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;, 3374 sgr0=\E[m\017, smacs=^N, smcup=\E@0\E[?4s\E[?4h\E@1, 3375 smso=\E[7m, tbc=\E[3g, 3376 3377xtermc|xterm terminal emulator (color), 3378 colors#8, ncv#7, pairs#64, 3379 op=\E[100m, setab=\E[4%p1%dm, setaf=\E[3%p1%dm, 3380 setb=\E[4%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m, 3381 setf=\E[3%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m, 3382 use=xtermm, 3383 3384# From: David J. MacKenzie <djm@va.pubnix.com> 20 Apr 1995 3385# Here's a termcap entry I've been using for xterm_color, which comes 3386# with BSD/OS 2.0, and the X11R6 contrib tape too I think. Besides the 3387# color stuff, I also have a status line defined as the window manager 3388# title bar. [I have translated it to terminfo -- ESR] 3389xterm-pcolor|xterm with color used for highlights and status line, 3390 bold=\E[1m\E[43m, rev=\E[7m\E[34m, smso=\E[7m\E[31m, 3391 smul=\E[4m\E[42m, use=xterm+sl, use=xterm-r6, 3392 3393# HP ships this, except for the pb#9600 which was merged in from BSD termcap. 3394# (hpterm: added empty <acsc>, we have no idea what ACS chars look like --esr) 3395hpterm|X-hpterm|hp X11 terminal emulator, 3396 am, da, db, mir, xhp, 3397 cols#80, lh#2, lines#24, lm#0, lw#8, nlab#8, pb#9600, xmc#0, 3398 acsc=, bel=^G, bold=\E&dB, cbt=\Ei, clear=\E&a0y0C\EJ, cr=^M, 3399 cub1=^H, cud1=\EB, cuf1=\EC, cup=\E&a%p1%dy%p2%dC, 3400 cuu1=\EA, dch1=\EP, dim=\E&dH, dl1=\EM, ed=\EJ$<1>, el=\EK, 3401 hpa=\E&a%p1%dC, ht=^I, hts=\E1, il1=\EL, ind=^J, kbs=^H, 3402 kclr=\EJ, kctab=\E2, kcub1=\ED, kcud1=\EB, kcuf1=\EC, 3403 kcuu1=\EA, kdch1=\EP, kdl1=\EM, ked=\EJ, kel=\EK, kf1=\Ep, 3404 kf2=\Eq, kf3=\Er, kf4=\Es, kf5=\Et, kf6=\Eu, kf7=\Ev, kf8=\Ew, 3405 khome=\Eh, khts=\E1, kich1=\EQ, kil1=\EL, kind=\ES, kll=\EF, 3406 knp=\EU, kpp=\EV, kri=\ET, krmir=\ER, ktbc=\E3, meml=\El, 3407 memu=\Em, pfkey=\E&f%p1%dk%p2%l%dL%p2%s, 3408 pfloc=\E&f1a%p1%dk%p2%l%dL%p2%s, 3409 pfx=\E&f2a%p1%dk%p2%l%dL%p2%s, 3410 pln=\E&f%p1%dk%p2%l%dd0L%p2%s, rev=\E&dB, ri=\ET, 3411 rmacs=^O, rmir=\ER, rmkx=\E&s0A, rmln=\E&j@, rmso=\E&d@, 3412 rmul=\E&d@, 3413 sgr=\E&d%?%p7%t%{115}%c%;%p1%p3%|%p6%|%{2}%*%p2%{4}%*%+%p4%+%p5%{8}%*%+%{64}%+%c%?%p9%t%'\016'%c%e%'\017'%c%;, 3414 sgr0=\E&d@, smacs=^N, smir=\EQ, smkx=\E&s1A, smln=\E&jB, 3415 smso=\E&dJ, smul=\E&dD, tbc=\E3, vpa=\E&a%p1%dY, 3416 3417# This entry describes an xterm with Sun-style function keys enabled 3418# via the X resource setting "xterm*sunFunctionKeys:true" 3419# To understand <kf11>/<kf12> note that L1,L2 and F11,F12 are the same. 3420# The <kf13>...<kf20> keys are L3-L10. We don't set <kf16=\E[197z> 3421# because we want it to be seen as <kcpy>. 3422# The <kf31>...<kf45> keys are R1-R15. We treat some of these in accordance 3423# with their Sun keyboard labels instead. 3424# From: Simon J. Gerraty <sjg@zen.void.oz.au> 10 Jan 1996 3425xterm-sun|xterm with sunFunctionKeys true, 3426 kb2=\E[218z, kcpy=\E[197z, kend=\E[220z, kf1=\E[224z, 3427 kf10=\E[233z, kf11=\E[192z, kf12=\E[193z, kf13=\E[194z, 3428 kf14=\E[195z, kf15=\E[196z, kf17=\E[198z, kf18=\E[199z, 3429 kf19=\E[200z, kf2=\E[225z, kf20=\E[201z, kf3=\E[226z, 3430 kf31=\E[208z, kf32=\E[209z, kf33=\E[210z, kf34=\E[211z, 3431 kf35=\E[212z, kf36=\E[213z, kf38=\E[215z, kf4=\E[227z, 3432 kf40=\E[217z, kf42=\E[219z, kf44=\E[221z, kf5=\E[228z, 3433 kf6=\E[229z, kf7=\E[230z, kf8=\E[231z, kf9=\E[232z, 3434 kfnd=\E[200z, khlp=\E[196z, khome=\E[214z, kich1=\E[2z, 3435 knp=\E[222z, kpp=\E[216z, kund=\E[195z, use=xterm, 3436xterms-sun|small (80x24) xterm with sunFunctionKeys true, 3437 cols#80, lines#24, use=xterm-sun, 3438 3439# This is for the extensible terminal emulator on the X11R6 contrib tape. 3440emu|emu native mode, 3441 mir, msgr, xon, 3442 colors#15, cols#80, it#8, lines#24, pairs#64, vt#200, 3443 acsc=61a\202f\260g2j\213k\214l\215m\216n\217o\220q\222s\224t\225u\226v\227w\230x\231~\244, 3444 bel=^G, blink=\ES\EW, bold=\ES\EU, civis=\EZ, 3445 clear=\EP\EE0;0;, cnorm=\Ea, cr=^M, csr=\Ek%p1%d;%p2%d;, 3446 cub=\Eq-%p1%d;, cub1=^H, cud=\Ep%p1%d;, cud1=\EB, 3447 cuf=\Eq%p1%d;, cuf1=\ED, cup=\EE%p1%d;%p2%d;, 3448 cuu=\Ep-%p1%d;, cuu1=\EA, dch=\EI%p1%d;, dch1=\EI1;, 3449 dl=\ER%p1%d;, dl1=\ER1;, ech=\Ej%p1%d;, ed=\EN, el=\EK, 3450 el1=\EL, enacs=\0, home=\EE0;0;, ht=^I, hts=\Eh, 3451 il=\EQ%p1%d;, il1=\EQ1;, ind=\EG, is2=\ES\Er0;\Es0;, 3452 kbs=^H, kcub1=\EC, kcud1=\EB, kcuf1=\ED, kcuu1=\EA, 3453 kdch1=\177, kent=^M, kf0=\EF00, kf1=\EF01, kf10=\EF10, 3454 kf11=\EF11, kf12=\EF12, kf13=\EF13, kf14=\EF14, kf15=\EF15, 3455 kf16=\EF16, kf17=\EF17, kf18=\EF18, kf19=\EF19, kf2=\EF02, 3456 kf20=\EF20, kf3=\EF03, kf4=\EF04, kf5=\EF05, kf6=\EF06, 3457 kf7=\EF07, kf8=\EF08, kf9=\EF09, kfnd=\Efind, kich1=\Eins, 3458 knp=\Enext, kpp=\Eprior, kslt=\Esel, oc=\Es0;\Er0;, 3459 rev=\ES\ET, ri=\EF, rmacs=\0, rmir=\EX, rmso=\ES, rmul=\ES, 3460 rs2=\ES\Es0;\Er0;, setab=\Es%i%p1%d;, 3461 setaf=\Er%i%p1%d;, sgr0=\ES, smacs=\0, smir=\EY, 3462 smso=\ES\ET, smul=\ES\EV, tbc=\Ej, 3463 3464#### MGR 3465# 3466# MGR is a Bell Labs window system lighter-weight than X. 3467# These entries describe MGR's xterm-equivalent. 3468# They are courtesy of Vincent Broman <broman@nosc.mil> 14 Jan 1997 3469# 3470 3471mgr|Bellcore MGR (non X) window system terminal emulation, 3472 am, km, 3473 bel=^G, bold=\E2n, civis=\E9h, clear=^L, cnorm=\Eh, cr=^M, 3474 csr=\E%p1%d;%p2%dt, cub1=^H, cud1=\Ef, cuf1=\Er, 3475 cup=\E%p2%d;%p1%dM, cuu1=\Eu, cvvis=\E0h, 3476 dch=\E%p1%dE$<5>, dch1=\EE, dl=\E%p1%dd$<3*>, 3477 dl1=\Ed$<3>, ed=\EC, el=\Ec, hd=\E1;2f, ht=^I, hu=\E1;2u, 3478 ich=\E%p1%dA$<5>, ich1=\EA, il=\E%p1%da$<3*>, 3479 il1=\Ea$<3>, ind=^J, kbs=^H, kcub1=\E[D, kcud1=\E[B, 3480 kcuf1=\E[C, kcuu1=\E[A, nel=^M^J, rev=\E1n, rmam=\E5S, 3481 rmso=\E0n, rmul=\E0n, sgr0=\E0n, smam=\E5s, smso=\E1n, 3482 smul=\E4n, 3483mgr-sun|Mgr window with Sun keyboard, 3484 ka1=\E[214z, ka3=\E[216z, kb2=\E[218z, kc1=\E[220z, 3485 kc3=\E[222z, kcpy=\E[197z, kend=\E[220z, kent=\E[250z, 3486 kf1=\E[224z, kf10=\E[233z, kf11=\E[234z, kf12=\E[235z, 3487 kf2=\E[225z, kf3=\E[226z, kf4=\E[227z, kf5=\E[228z, 3488 kf6=\E[229z, kf7=\E[230z, kf8=\E[231z, kf9=\E[232z, 3489 kfnd=\E[200z, khlp=\E[207z, khome=\E[214z, knp=\E[222z, 3490 kopn=\E[198z, kpp=\E[216z, kund=\E[195z, use=mgr, 3491mgr-linux|Mgr window with Linux keyboard, 3492 ka1=\E[H, ka3=\E[5~, kb2=\E[G, kc1=\E[Y, kc3=\E[6~, 3493 kdch1=\E[3~, kend=\E[4~, kf0=\E[[J, kf1=\E[[A, kf10=\E[21~, 3494 kf11=\E[23~, kf12=\E[24~, kf2=\E[[B, kf3=\E[[C, kf4=\E[[D, 3495 kf5=\E[[E, kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, 3496 khome=\E[1~, knp=\E[6~, kpp=\E[5~, use=mgr, 3497 3498######## UNIX VIRTUAL TERMINALS, VIRTUAL CONSOLES, AND TELNET CLIENTS 3499# 3500 3501# Columbus UNIX virtual terminal. This terminal also appears in 3502# UNIX 4.0 and successors as line discipline 1 (?), but is 3503# undocumented and does not really work quite right. 3504cbunix|cb unix virtual terminal, 3505 OTbs, am, da, db, 3506 cols#80, lines#24, lm#0, 3507 bel=^G, clear=\EL, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 3508 cup=\EG%p2%c%p1%c, cuu1=\EA, dch1=\EM, dl1=\EN, ed=\EL, 3509 el=\EK, ich1=\EO, il1=\EP, ind=^J, kcub1=\ED, kcud1=\EB, 3510 kcuf1=\EC, kcuu1=\EA, khome=\EE, rmso=\Eb^D, rmul=\Eb^A, 3511 smso=\Ea^D, smul=\Ea^A, 3512# (vremote: removed obsolete ":nl@:" -- esr) 3513vremote|virtual remote terminal, 3514 am@, 3515 cols#79, use=cbunix, 3516 3517pty|4bsd pseudo teletype, 3518 cup=\EG%p1%{32}%+%c%p2%{32}%+%c, rmso=\Eb$, rmul=\Eb!, 3519 smso=\Ea$, smul=\Ea!, use=cbunix, 3520 3521# The codes supported by the term.el terminal emulation in GNU Emacs 19.30 3522eterm|gnu emacs term.el terminal emulation, 3523 am, mir, xenl, 3524 cols#80, lines#24, 3525 bel=^G, bold=\E[1m, clear=\E[H\E[J, cr=^M, 3526 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 3527 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 3528 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 3529 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, 3530 el=\E[K, el1=\E[1K, home=\E[H, ht=^I, ich=\E[%p1%d@, 3531 il=\E[%p1%dL, il1=\E[L, ind=^J, rev=\E[7m, 3532 rmcup=\E[2J\E[?47l\E8, rmir=\E[4l, rmso=\E[m, rmul=\E[m, 3533 sgr0=\E[m, smcup=\E7\E[?47h, smir=\E[4h, smso=\E[7m, 3534 smul=\E[4m, 3535 3536# Entries for use by the `screen' program by Juergen Weigert, 3537# Michael Schroeder, Oliver Laumann. The screenO and 3538# screenO-w entries came with version 3.7.1. The screen2 and screen3 entries 3539# come from University of Wisconsin and may be older. 3540# (screenO: added <cnorm> on ANSI model -- esr) 3541# The screen, screen-bce and screen-s entries came with GNU screen 3.09.15. 3542# 3543# 'screen' defines extensions to termcap. Some are used in its terminal 3544# description: 3545# G0 (bool) Terminal can deal with ISO 2022 font selection sequences. 3546# AX (bool) Does understand ANSI set default fg/bg color 3547# (\E[39m / \E[49m). 3548# S0 (str) Switch charset 'G0' to the specified charset. 3549# E0 (str) Switch charset 'G0' back to standard charset. 3550screen|VT 100/ANSI X3.64 virtual terminal, 3551 am, km, mir, msgr, xenl, 3552 cols#80, it#8, lines#24, colors#8, pairs#64, 3553 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, 3554 clear=\E[H\E[J, cr=\r, csr=\E[%i%p1%d;%p2%dr, 3555 cub=\E[%p1%dD, cub1=\b, cud=\E[%p1%dB, cud1=\n, 3556 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 3557 cuu=\E[%p1%dA, cuu1=\EM, dch=\E[%p1%dP, dch1=\E[P, 3558 dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, el1=\E[1K, 3559 enacs=\E(B\E)0, home=\E[H, 3560 ht=\t, hts=\EH, ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L, 3561 ind=\n, is2=\E)0, kbs=\b, kcub1=\EOD, kcud1=\EOB, 3562 kcuf1=\EOC, kcuu1=\EOA, kdch1=\E[3~, kf1=\EOP, 3563 kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, kf2=\EOQ, 3564 kf3=\EOR, kf4=\EOS, kf5=\E[15~, kf6=\E[17~, 3565 kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, khome=\E[1~, kend=\E[4~, 3566 kich1=\E[2~, knp=\E[6~, kpp=\E[5~, nel=\EE, 3567 rc=\E8, rev=\E[7m, ri=\EM, rmcup=\E[?1049l, rmir=\E[4l, 3568 rmkx=\E[?1l\E>, rmso=\E[23m, rmul=\E[24m, rs2=\Ec, sc=\E7, 3569 sgr0=\E[m, smcup=\E[?1049h, smir=\E[4h, smkx=\E[?1h\E=, 3570 smso=\E[3m, smul=\E[4m, tbc=\E[3g, smacs=^N, rmacs=^O, flash=\Eg, 3571 civis=\E[?25l, cnorm=\E[34h\E[?25h, cvvis=\E[34l, 3572 op=\E[39;49m, setab=\E[4%p1%dm, setaf=\E[3%p1%dm, 3573 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~..--++\054\054hhII00, 3574 3575screen-bce|VT 100/ANSI X3.64 virtual terminal with bce, 3576 am, bce, km, mir, msgr, xenl, 3577 cols#80, it#8, lines#24, colors#8, pairs#64, 3578 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, 3579 clear=\E[H\E[J, cr=\r, csr=\E[%i%p1%d;%p2%dr, 3580 cub=\E[%p1%dD, cub1=\b, cud=\E[%p1%dB, cud1=\n, 3581 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 3582 cuu=\E[%p1%dA, cuu1=\EM, dch=\E[%p1%dP, dch1=\E[P, 3583 dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, el1=\E[1K, 3584 enacs=\E(B\E)0, home=\E[H, 3585 ht=\t, hts=\EH, ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L, 3586 ind=\n, is2=\E)0, kbs=\b, kcub1=\EOD, kcud1=\EOB, 3587 kcuf1=\EOC, kcuu1=\EOA, kdch1=\E[3~, kf1=\EOP, 3588 kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, kf2=\EOQ, 3589 kf3=\EOR, kf4=\EOS, kf5=\E[15~, kf6=\E[17~, 3590 kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, khome=\E[1~, kend=\E[4~, 3591 kich1=\E[2~, knp=\E[6~, kpp=\E[5~, nel=\EE, 3592 rc=\E8, rev=\E[7m, ri=\EM, rmcup=\E[?1049l, rmir=\E[4l, 3593 rmkx=\E[?1l\E>, rmso=\E[23m, rmul=\E[24m, rs2=\Ec, sc=\E7, 3594 sgr0=\E[m, smcup=\E[?1049h, smir=\E[4h, smkx=\E[?1h\E=, 3595 smso=\E[3m, smul=\E[4m, tbc=\E[3g, smacs=^N, rmacs=^O, flash=\Eg, 3596 civis=\E[?25l, cnorm=\E[34h\E[?25h, cvvis=\E[34l, 3597 op=\E[39;49m, setab=\E[4%p1%dm, setaf=\E[3%p1%dm, 3598 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~..--++\054\054hhII00, 3599 3600screen-s|VT 100/ANSI X3.64 virtual terminal with hardstatus line, 3601 am, bce, km, mir, msgr, xenl, 3602 cols#80, it#8, lines#24, colors#8, pairs#64, 3603 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, 3604 clear=\E[H\E[J, cr=\r, csr=\E[%i%p1%d;%p2%dr, 3605 cub=\E[%p1%dD, cub1=\b, cud=\E[%p1%dB, cud1=\n, 3606 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 3607 cuu=\E[%p1%dA, cuu1=\EM, dch=\E[%p1%dP, dch1=\E[P, 3608 dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, el1=\E[1K, 3609 enacs=\E(B\E)0, home=\E[H, 3610 ht=\t, hts=\EH, ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L, 3611 ind=\n, is2=\E)0, kbs=\b, kcub1=\EOD, kcud1=\EOB, 3612 kcuf1=\EOC, kcuu1=\EOA, kdch1=\E[3~, kf1=\EOP, 3613 kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, kf2=\EOQ, 3614 kf3=\EOR, kf4=\EOS, kf5=\E[15~, kf6=\E[17~, 3615 kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, khome=\E[1~, kend=\E[4~, 3616 kich1=\E[2~, knp=\E[6~, kpp=\E[5~, nel=\EE, 3617 rc=\E8, rev=\E[7m, ri=\EM, rmcup=\E[?1049l, rmir=\E[4l, 3618 rmkx=\E[?1l\E>, rmso=\E[23m, rmul=\E[24m, rs2=\Ec, sc=\E7, 3619 sgr0=\E[m, smcup=\E[?1049h, smir=\E[4h, smkx=\E[?1h\E=, 3620 smso=\E[3m, smul=\E[4m, tbc=\E[3g, smacs=^N, rmacs=^O, flash=\Eg, 3621 tsl=\E_, fsl=\E\\, dsl=\E_\E\\, 3622 civis=\E[?25l, cnorm=\E[34h\E[?25h, cvvis=\E[34l, 3623 op=\E[39;49m, setab=\E[4%p1%dm, setaf=\E[3%p1%dm, 3624 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~..--++\054\054hhII00, 3625 3626screenO|VT 100/ANSI X3.64 virtual terminal, 3627 OTbs, OTpt, am, km, mir, msgr, xenl, G0, 3628 colors#8, cols#80, it#8, lines#24, pairs#64, 3629 acsc=++\,\,--..00``aaffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 3630 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, civis=\E[?25l, 3631 clear=\E[H\E[J, cnorm=\E[34h\E[?25h, cr=^M, 3632 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 3633 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 3634 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\EM, 3635 cvvis=\E[34l, dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, 3636 dl1=\E[M, ed=\E[J, el=\E[K, el1=\E[1K, enacs=\E(B\E)0, 3637 flash=\Eg, home=\E[H, ht=^I, hts=\EH, ich=\E[%p1%d@, 3638 il=\E[%p1%dL, il1=\E[L, ind=^J, is2=\E)0, kbs=^H, kcub1=\EOD, 3639 kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kdch1=\E[3~, kf1=\EOP, 3640 kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, kf2=\EOQ, kf3=\EOR, 3641 kf4=\EOS, kf5=\E[15~, kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, 3642 kf9=\E[20~, khome=\E[1~, kich1=\E[2~, kll=\E[4~, 3643 kmous=\E[M, knp=\E[6~, kpp=\E[5~, nel=\EE, rc=\E8, rev=\E[7m, 3644 ri=\EM, rmacs=^O, rmir=\E[4l, rmkx=\E[?1l\E>, rmso=\E[23m, 3645 rmul=\E[24m, rs2=\Ec, sc=\E7, sgr0=\E[m, smacs=^N, 3646 smir=\E[4h, smkx=\E[?1h\E=, smso=\E[3m, smul=\E[4m, 3647 tbc=\E[3g, E0=\E(B, S0=\E(%p1%c, use=ecma+color, 3648 3649screenO-w|VT 100/ANSI X3.64 virtual terminal with 132 cols, 3650 cols#132, use=screen, 3651 3652screen2|old VT 100/ANSI X3.64 virtual terminal, 3653 cols#80, it#8, lines#24, 3654 cbt=\E[Z, clear=\E[2J\E[H, cr=^M, cub=\E[%p1%dD, cub1=^H, 3655 cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, 3656 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 3657 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, 3658 el=\E[K, ht=^I, hts=\EH, ich=\E[%p1%d@, ich1=, il=\E[%p1%dL, 3659 il1=\E[L, ind=^J, kbs=^H, kcub1=\ED, kcud1=\EB, kcuf1=\EC, 3660 kcuu1=\EA, kf0=\E~, kf1=\ES, kf2=\ET, kf3=\EU, kf4=\EV, 3661 kf5=\EW, kf6=\EP, kf7=\EQ, kf8=\ER, kf9=\E0I, khome=\EH, 3662 nel=^M^J, rc=\E8, ri=\EM, rmir=\E[4l, rmso=\E[23m, 3663 rmul=\E[24m, rs1=\Ec, sc=\E7, sgr0=\E[m, smir=\E[4h, 3664 smso=\E[3m, smul=\E[4m, tbc=\E[3g, 3665# (screen3: removed unknown ":xv:LP:G0:" -- esr) 3666screen3|older VT 100/ANSI X3.64 virtual terminal, 3667 km, mir, msgr, 3668 cols#80, it#8, lines#24, 3669 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, clear=\E[H\E[J, 3670 cr=^M, csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 3671 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 3672 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\EM, 3673 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, 3674 el=\E[K, home=\E[H, ht=^I, hts=\EH, ich=\E[%p1%d@, 3675 il=\E[%p1%dL, il1=\E[L, ind=^J, is2=\E)0, kbs=^H, kcub1=\EOD, 3676 kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kf1=\EOP, kf2=\EOQ, 3677 kf3=\EOR, kf4=\EOS, nel=\EE, rc=\E8, rev=\E[7m, ri=\EM, 3678 rmir=\E[4l, rmkx=\E>, rmso=\E[23m, rmul=\E[24m, rs1=\Ec, 3679 sc=\E7, sgr0=\E[m, smir=\E[4h, smkx=\E=, smso=\E[3m, 3680 smul=\E[4m, tbc=\E[3g, 3681 3682# Francesco Potorti <F.Potorti@cnuce.cnr.it>: 3683# NCSA telnet is one of the most used telnet clients for the Macintosh. It has 3684# been maintained until recently by the National Center for Supercomputer 3685# Applications, and it is feature rich, stable and free. It can be downloaded 3686# from www.ncsa.edu. This terminfo description file is based on xterm-vt220, 3687# xterm+sl, and the docs at NCSA. It works well. 3688# 3689# NCSA Telnet 2.6 for Macintosh in vt220 8-bit emulation mode 3690# The terminal options should be set as follows: 3691# Xterm sequences ON 3692# use VT wrap mode ON 3693# use Emacs arrow keys OFF 3694# CTRL-COMND is Emacs meta ON 3695# 8 bit mode ON 3696# answerback string: "ncsa-vt220-8" 3697# setup keys: all disabled 3698# 3699# Application mode is not used. 3700# 3701# Other special mappings: 3702# Apple VT220 3703# HELP Find 3704# HOME Insert here 3705# PAGEUP Remove 3706# DEL Select 3707# END Prev Screen 3708# PAGEDOWN Next Screen 3709# 3710# Though it supports ANSI color, NCSA Telnet uses color to represent blinking 3711# text. 3712# 3713# The status-line manipulation is a mapping of the xterm-compatible control 3714# sequences for setting the window-title. So you must use tsl and fsl in 3715# pairs, since the latter ends the string that is loaded to the window-title. 3716ncsa-m|ncsa-vt220-8|NCSA Telnet 2.6 for Macintosh in vt220-8 mode, 3717 am, hs, km, mir, msgr, xenl, 3718 acsc=``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 3719 bel=^G, blink=\E[5m, bold=\E[1m, civis=\E[?25l, 3720 clear=\E[H\E[2J, cnorm=\E[?25h, cr=^M, 3721 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 3722 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 3723 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 3724 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, 3725 dsl=\E]0;\007, ed=\E[J, el=\E[K, el1=\E[1K, enacs=\E)0, 3726 flash=\E[?5h\E[?5l, fsl=^G, home=\E[H, ht=^I, hts=\EH, 3727 ich=\E[%p1%d@, if=/usr/share/tabset/vt100, 3728 il=\E[%p1%dL, il1=\E[L, ind=\n$<150*>, 3729 is2=\E7\E[r\E[m\E[?7h\E[?1;4;6l\E[4l\E8\E>, kbs=^H, 3730 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 3731 kdch1=\E[4~, kend=\E[5~, kf1=\E[17~, kf10=\E[28~, 3732 kf11=\E[29~, kf12=\E[31~, kf13=\E[32~, kf14=\E[33~, 3733 kf15=\E[34~, kf2=\E[18, kf3=\E[19~, kf4=\E[20~, kf5=\E[21~, 3734 kf6=\E[23~, kf7=\E[24~, kf8=\E[25~, kf9=\E[26~, khlp=\E[1~, 3735 khome=\E[2~, knp=\E[6~, kpp=\E[3~, mc4=\E[4i, mc5=\E[5i, 3736 rc=\E8, rev=\E[7m, rf=/usr/share/tabset/vt100, ri=\EM, 3737 rmacs=^O, rmam=\E[?7l, rmcup=\E[2J\E8, rmir=\E[4l, 3738 rmso=\E[27m, rmul=\E[24m, 3739 rs2=\E7\E[r\E8\E[m\E[?7h\E[?1;4;6l\E[4l\E>, sc=\E7, 3740 sgr=\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p4%t;5%;%?%p1%p3%|%t;7%;m%?%p9%t\E(0%e\E(B%;, 3741 sgr0=\E[m\017, smacs=^N, smam=\E[?7h, smcup=\E7, 3742 smir=\E[4h, smso=\E[7m, smul=\E[4m, tbc=\E[3g, tsl=\E]0;, 3743 u6=\E[%i%d;%dR, u7=\E[6n, u8=\E[?62;1;6c, u9=\E[c, 3744ncsa|NCSA Telnet 2.7 for Macintosh in vt220-8 mode, 3745 use=ncsa-m, use=klone+color, 3746ncsa-ns|NCSA Telnet 2.7 for Macintosh in vt220-8 mode, 3747 hs@, 3748 dsl@, fsl@, tsl@, use=ncsa, 3749ncsa-m-ns|NCSA Telnet 2.6 for Macintosh in vt220-8 mode, 3750 hs@, 3751 dsl@, fsl@, tsl@, use=ncsa-m, 3752# alternate -TD: 3753# The documented function-key mapping refers to the Apple Extended Keyboard 3754# (e.g., NCSA Telnet's F1 corresponds to a VT220 F6). We use the VT220-style 3755# codes, however, since the numeric keypad (VT100) PF1-PF4 are available on 3756# some keyboards and many applications require these as F1-F4. 3757# 3758ncsa-vt220|NCSA Telnet using vt220-compatible function keys, 3759 kf1=\EOP, kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, 3760 kf13=\E[25~, kf14=\E[26~, kf15=\E[28~, kf16=\E[29~, 3761 kf17=\E[31~, kf18=\E[32~, kf19=\E[33~, kf2=\EOQ, 3762 kf20=\E[34~, kf3=\EOR, kf4=\EOS, kf6=\E[17~, kf7=\E[18~, 3763 kf8=\E[19~, kf9=\E[20~, use=ncsa, 3764 3765#### Pilot Pro Palm-Top 3766# 3767# Termcap for Top Gun Telnet and SSH on the Palm Pilot. 3768# http://www.isaac.cs.berkeley.edu/pilot/tgtelnet.html 3769pilot|tgtelnet|Top Gun Telnet on the Palm Pilot Professional, 3770 OTbs, am, xenl, 3771 cols#39, lines#16, 3772 bel=^G, clear=\Ec, cr=^M, cub1=^H, cud1=^J, 3773 cup=\Em%p1%{32}%+%c%p2%{32}%+%c, home=\Em\s\s, ht=^I, 3774 ind=^J, kbs=^H, kcub1=^H, kcud1=^J, knp=^L, kpp=^K, nel=\Em~\s, 3775 rmso=\EB, smso=\Eb, 3776 3777######## COMMERCIAL WORKSTATION CONSOLES 3778# 3779 3780#### Alpha consoles 3781# 3782 3783# This is from the OSF/1 Release 1.0 termcap file 3784pccons|pcconsole|ANSI (mostly) Alpha PC console terminal emulation, 3785 am, xon, 3786 cols#80, lines#25, 3787 bel=^G, clear=\E[H\E[2J, cr=^M, cub1=^H, cud1=^J, cuf1=\E[C, 3788 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, dch1=\E[P, dl1=\E[M, 3789 el=\E[K, home=\E[H, ht=^I, ich1=\E[@, il1=\E[L, kbs=^H, 3790 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, khome=\E[H, 3791 nel=^M^J, rev=\E[7m, rmso=\E[m, sgr0=\E[m, smso=\E[7m, 3792 3793#### Sun consoles 3794# 3795 3796# :is1: resets scrolling region in case a previous user had used "tset vt100" 3797oldsun|Sun Microsystems Workstation console, 3798 OTbs, am, km, mir, msgr, 3799 cols#80, it#8, lines#34, 3800 bel=^G, clear=^L, cr=^M, cub1=^H, cud1=\E[B, cuf1=\E[C, 3801 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, dch=\E[%p1%dP, 3802 dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, ht=^I, 3803 ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, il1=\E[L, ind=^J, 3804 is1=\E[1r, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 3805 kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, khome=\E[H, 3806 rmso=\E[m, sgr0=\E[m, smso=\E[7m, 3807# From: Alexander Lukyanov <lav@video.yars.free.net>, 14 Nov 1995 3808# <lines> capability later corrected by J.T. Conklin <jtc@cygnus.com> 3809# SGR 1, 4 aren't supported - removed bold/underline (T.Dickey 17 Jan 1998) 3810sun-il|Sun Microsystems console with working insert-line, 3811 am, km, msgr, 3812 cols#80, lines#34, 3813 bel=^G, bold@, clear=^L, cr=^M, cub1=^H, cud1=^J, cuf1=\E[C, 3814 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, dch=\E[%p1%dP, 3815 dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, ht=^I, 3816 ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, il1=\E[L, ind=^J, 3817 kb2=\E[218z, kbs=^H, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, 3818 kcuu1=\E[A, kdch1=\177, kend=\E[220z, kf1=\E[224z, 3819 kf10=\E[233z, kf11=\E[234z, kf12=\E[235z, kf2=\E[225z, 3820 kf3=\E[226z, kf4=\E[227z, kf5=\E[228z, kf6=\E[229z, 3821 kf7=\E[230z, kf8=\E[231z, kf9=\E[232z, khome=\E[214z, 3822 knp=\E[222z, kopt=\E[194z, kpp=\E[216z, kres=\E[193z, 3823 kund=\E[195z, rev=\E[7m, rmso=\E[m, rmul@, rs2=\E[s, 3824 sgr=\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;m, 3825 sgr0=\E[m, smso=\E[7m, smul@, u8=\E[1t, u9=\E[11t, 3826# On some versions of CGSIX framebuffer firmware (SparcStation 5), <il1>/<il> 3827# flake out on the last line. Unfortunately, without them the terminal has no 3828# way to scroll. 3829sun-cgsix|sun-ss5|Sun SparcStation 5 console, 3830 il@, il1@, use=sun-il, 3831# If you are using an SS5, change the sun definition to use sun-ss5. 3832sun|sun1|sun2|Sun Microsystems Inc. workstation console, 3833 use=sun-il, 3834 3835# From: <john@ucbrenoir> Tue Sep 24 13:14:44 1985 3836sun-s|Sun Microsystems Workstation window with status line, 3837 hs, 3838 dsl=\E]l\E\\, fsl=\E\\, tsl=\E]l, use=sun, 3839sun-e-s|sun-s-e|Sun Microsystems Workstation with status hacked for emacs, 3840 hs, 3841 dsl=\E]l\E\\, fsl=\E\\, tsl=\E]l, use=sun-e, 3842sun-48|Sun 48-line window, 3843 cols#80, lines#48, use=sun, 3844sun-34|Sun 34-line window, 3845 cols#80, lines#34, use=sun, 3846sun-24|Sun 24-line window, 3847 cols#80, lines#24, use=sun, 3848sun-17|Sun 17-line window, 3849 cols#80, lines#17, use=sun, 3850sun-12|Sun 12-line window, 3851 cols#80, lines#12, use=sun, 3852sun-1|Sun 1-line window for sysline, 3853 eslok, hs, 3854 cols#80, lines#1, 3855 dsl=^L, fsl=\E[K, tsl=^M, use=sun, 3856sun-e|sun-nic|sune|Sun Microsystems Workstation without insert character, 3857 ich1@, rmir@, smir@, use=sun, 3858sun-c|sun-cmd|Sun Microsystems Workstation console with scrollable history, 3859 lines#35, 3860 rmcup=\E[>4h, smcup=\E[>4l, use=sun, 3861 3862#### Iris consoles 3863# 3864 3865# (wsiris: this had extension capabilities 3866# :HS=\E7F2:HE=\E7F7:\ 3867# :CT#2:CZ=*Bblack,red,green,yellow,blue,magenta,cyan,*Fwhite: 3868# See the note on Iris extensions near the end of this file. 3869# Finally, removed suboptimal <clear>=\EH\EJ and added <cud1> & 3870# <flash> from BRL -- esr) 3871wsiris|iris40|iris emulating a 40 line visual 50 (approximately), 3872 OTbs, OTnc, OTpt, am, 3873 OTkn#3, cols#80, it#8, lines#40, 3874 OTnl=\EB, bel=^G, clear=\Ev, cnorm=\E>, cub1=^H, cud1=\EB, 3875 cuf1=\EC, cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, 3876 cvvis=\E;, dim=\E7F2, dl1=\EM, ed=\EJ, el=\EK, 3877 flash=\E7F4\E7B1\013\E7F7\E7B0, home=\EH, ht=^I, il1=\EL, 3878 ind=^J, is2=\E7B0\E7F7\E7C2\E7R3, kcub1=\ED, kcud1=\EB, 3879 kcuf1=\EC, kcuu1=\EA, kf0=\E0, kf1=\E1, kf2=\E2, kf3=\E3, 3880 kf4=\E4, kf5=\E5, kf6=\E6, kf7=\E7, kf8=\E8, kf9=\E9, ri=\EI, 3881 rmso=\E0@, rmul=\E7R3\E0@, sgr0=\E7F7, smso=\E9P, 3882 smul=\E7R2\E9P, 3883 3884#### NeWS consoles 3885# 3886# Console terminal windows under the NeWS (Sun's Display Postscript windowing 3887# environment). Note: these have nothing to do with Sony's News workstation 3888# line. 3889# 3890 3891# Entry for NeWS's psterm from Eric Messick & Hugh Daniel 3892# (psterm: unknown ":sl=\EOl:el=\ENl:" removed -- esr) 3893psterm|psterm-basic|NeWS psterm-80x34, 3894 OTbs, am, hs, km, ul, 3895 cols#80, it#8, lines#34, 3896 blink=\EOb, bold=\EOd, clear=^L, csr=\EE%p1%d;%p2%d;, 3897 cub1=\ET, cud1=\EP, cuf1=\EV, cup=\E%p1%d;%p2%d;, cuu1=\EY, 3898 dch1=\EF, dl1=\EK, ed=\EB, el=\EC, flash=\EZ, fsl=\ENl, 3899 home=\ER, ht=^I, il1=\EA, ind=\EW, is1=\EN*, kcub1=\E[D, 3900 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, ll=\EU, rc=^\, rev=\EOr, 3901 ri=\EX, rmcup=\ENt, rmir=\ENi, rmso=\ENo, rmul=\ENu, sc=^], 3902 sgr0=\EN*, smcup=\EOt, smir=\EOi, smso=\EOo, smul=\EOu, 3903 tsl=\EOl, 3904psterm-96x48|NeWS psterm 96x48, 3905 cols#96, lines#48, use=psterm, 3906psterm-90x28|NeWS psterm 90x28, 3907 cols#90, lines#28, use=psterm, 3908psterm-80x24|NeWS psterm 80x24, 3909 cols#80, lines#24, use=psterm, 3910# This is a faster termcap for psterm. Warning: if you use this termcap, 3911# some control characters you type will do strange things to the screen. 3912# (psterm-fast: unknown ":sl=^Ol:el=^Nl:" -- esr) 3913psterm-fast|NeWS psterm fast version (flaky ctrl chars), 3914 OTbs, am, hs, km, ul, 3915 cols#80, it#8, lines#34, 3916 blink=^Ob, bold=^Od, clear=^L, csr=\005%p1%d;%p2%d;, 3917 cub1=^T, cud1=^P, cuf1=^V, cup=\004%p1%d;%p2%d;, cuu1=^Y, 3918 dch1=^F, dl1=^K, ed=^B, el=^C, flash=^Z, fsl=^Nl, home=^R, ht=^I, 3919 il1=^A, ind=^W, is1=^N*, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, 3920 kcuu1=\E[A, ll=^U, rc=^\, rev=^Or, ri=^X, rmcup=^Nt, rmir=^Ni, 3921 rmso=^No, rmul=^Nu, sc=^], sgr0=^N*, smcup=^Ot, smir=^Oi, 3922 smso=^Oo, smul=^Ou, tsl=^Ol, 3923 3924#### NeXT consoles 3925# 3926# Use `glasstty' for the Workspace application 3927# 3928 3929# From: Dave Wetzel <dave@turbocat.snafu.de> 22 Dec 1995 3930next|NeXT console, 3931 am, xt, 3932 cols#80, it#8, lines#24, 3933 bel=^G, clear=^L, cr=^M, cub1=^H, cud1=^J, cuf1=\E[C, 3934 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, el=\E[K, home=\E[H, 3935 ht=^I, ind=^J, kbs=^H, kcub1=^H, kcud1=^J, nel=^M^J, 3936 rmso=\E[4;1m, sgr0=\E[m, smso=\E[4;2m, 3937nextshell|NeXT Shell application, 3938 am, 3939 cols#80, 3940 bel=^G, cr=^M, cub1=^H, cud1=^J, ht=^I, kbs=^H, kcub1=^H, 3941 kcud1=^J, nel=^M^J, 3942 3943#### Sony NEWS workstations 3944# 3945 3946# (news-unk: this had :KB=news: -- esr) 3947news-unk|SONY NEWS vt100 emulator common entry, 3948 OTbs, OTpt, am, xenl, 3949 cols#80, 3950 OTnl=^J, bel=^G, blink=\E[5m, bold=\E[1m, clear=\E[H\E[2J, 3951 cr=^M, csr=\E[%i%p1%d;%p2%dr, cub1=^H, cud1=^J, cuf1=\E[C, 3952 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, dl=\E[%p1%dM, dl1=\E[M, 3953 ed=\E[J, el=\E[K, home=\E[H, ht=^I, 3954 if=/usr/lib/tabset/vt100, il=\E[%p1%dL, il1=\E[L, 3955 is2=\E[?7h\E[?1l\E[?3l\E7\E8, kbs=^H, kcub1=\EOD, 3956 kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kf0=\EOY, kf1=\EOP, 3957 kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf5=\EOT, kf6=\EOU, kf7=\EOV, 3958 kf8=\EOW, kf9=\EOX, rc=\E8, rev=\E[7m, ri=\EM, 3959 rmkx=\E[?1l\E>, rmso=\E[m, rmul=\E[m, 3960 rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h\E[r, sc=\E7, 3961 sgr0=\E[m, smkx=\E[?1h\E=, smso=\E[7m, smul=\E[4m, 3962# 3963# (news-29: this had :TY=ascii: --esr) 3964news-29, 3965 lines#29, use=news-unk, 3966# (news-29-euc: this had :TY=euc: --esr) 3967news-29-euc, 3968 use=news-29, 3969# (news-29-sjis: this had :TY=sjis: --esr) 3970news-29-sjis, 3971 use=news-29, 3972# 3973# (news-33: this had :TY=ascii: --esr) 3974news-33, 3975 lines#33, use=news-unk, 3976# (news-33-euc: this had :TY=euc: --esr) 3977news-33-euc, 3978 use=news-33, 3979# (news-33-sjis: this had :TY=sjis: --esr) 3980news-33-sjis, 3981 use=news-33, 3982# 3983# (news-42: this had :TY=ascii: --esr) 3984news-42, 3985 lines#42, use=news-unk, 3986# (news-42-euc: this had :TY=euc: --esr) 3987news-42-euc, 3988 use=news-42, 3989# (news-42-sjis: this had :TY=sjis: --esr) 3990news-42-sjis, 3991 use=news-42, 3992# 3993# NEWS-OS old termcap entry 3994# 3995# (news-old-unk: this had :KB=news:TY=sjis: --esr) 3996news-old-unk|SONY NEWS vt100 emulator common entry, 3997 OTbs, OTpt, am, xenl, 3998 cols#80, vt#3, 3999 OTnl=^J, bel=^G, blink=\E[5m, bold=\E[1m, clear=\E[;H\E[2J, 4000 cr=^M, csr=\E[%i%p1%d;%p2%dr, cub1=^H, cud1=^J, cuf1=\E[C, 4001 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, ed=\E[J, el=\E[K, 4002 home=\E[H, ht=^I, if=/usr/lib/tabset/vt100, kbs=^H, 4003 kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kf1=\EOP, 4004 kf2=\EOQ, kf3=\EOR, kf4=\EOS, rc=\E8, rev=\E[7m, ri=\EM, 4005 rmkx=\E[?1l\E>, rmso=\E[m, rmul=\E[m, 4006 rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sc=\E7, 4007 sgr0=\E[m, smkx=\E[?1h\E=, smso=\E[7m, smul=\E[4m, 4008# 4009# (nwp512: this had :DE=^H:, which I think means <OTbs> --esr) 4010nwp512|news|nwp514|news40|vt100-bm|old sony vt100 emulator 40 lines, 4011 OTbs, 4012 lines#40, 4013 is2=\E7\E[r\E8\EE\EE\EE\EM\EM\EM\E[?7h\E[?1l\E[?3l\E7\E[1;40r\E8, 4014 use=news-old-unk, 4015# 4016# (nwp512-a: this had :TY=ascii: and the alias vt100-bm --esr) 4017nwp512-a|nwp514-a|news-a|news42|news40-a|sony vt100 emulator 42 line, 4018 lines#42, 4019 is2=\E[?7h\E[?1l\E[?3l\E7\E[1;42r\E8, 4020 use=news-old-unk, 4021# 4022# (nwp-512-o: this had :KB=nwp410:DE=^H: I interpret the latter as <OTbs>. --esr) 4023nwp512-o|nwp514-o|news-o|news40-o|vt100-bm-o|sony vt100 emulator 40 lines, 4024 OTbs, 4025 lines#40, 4026 is2=\E7\E[r\E8\EE\EE\EE\EM\EM\EM\E[?7h\E[?1l\E[?3l\E7\E[1;40r\E8, 4027 use=news-old-unk, 4028# 4029# (nwp513: this had :DE=^H: and the alias vt100-bm --esr) 4030nwp513|nwp518|nwe501|newscbm|news31|sony vt100 emulator 33 lines, 4031 OTbs, 4032 lines#31, 4033 is2=\E7\E[r\E8\EE\EE\EE\EM\EM\EM\E[?7h\E[?1l\E[?3l\E7\E[1;31r\E8, 4034 use=news-old-unk, 4035# 4036# (nwp513-a: this had :TY=ascii: and :DE=^H:, which I interpret as <OTbs>; --esr) 4037# also the alias vt100-bm. 4038nwp513-a|nwp518-a|nwe501-a|nwp251-a|newscbm-a|news31-a|newscbm33|news33|old sony vt100 emulator 33 lines, 4039 OTbs, 4040 lines#33, 4041 is2=\E7\E[r\E8\EE\EE\EE\EM\EM\EM\E[?7h\E[?1l\E[?3l\E7\E[1;33r\E8, 4042 use=news-old-unk, 4043# 4044# (nwp513-o: had :DE=^H:, I think that's <OTbs>; also the alias vt100-bm --esr) 4045nwp513-o|nwp518-o|nwe501-o|nwp251-o|newscbm-o|news31-o|old sony vt100 emulator 33 lines, 4046 OTbs, 4047 lines#31, 4048 is2=\E7\E[r\E8\EE\EE\EE\EM\EM\EM\E[?7h\E[?1l\E[?3l\E7\E[1;31r\E8, 4049 use=news-old-unk, 4050# 4051# (news28: this had :DE=^H:, I think that's <OTbs>, and :KB=nws1200: --esr) 4052news28|sony vt100 emulator 28 lines, 4053 OTbs, 4054 lines#28, 4055 is2=\E7\E[r\E8\EE\EE\EE\EM\EM\EM\E[?7h\E[?1l\E[?3l\E7\E[1;28r\E8, 4056 use=news-old-unk, 4057# 4058# (news29: this had :TY=ascii:KB=nws1200:\ --esr) 4059news29|news28-a|sony vt100 emulator 29 lines, 4060 lines#29, 4061 is2=\E7\E[r\E8\EE\EE\EE\EM\EM\EM\E[?7h\E[?1l\E[?3l\E7\E[1;29r\E8, 4062 use=news-old-unk, 4063# 4064# (news511: this had :TY=sjis: --esr) 4065nwp511|nwp-511|nwp-511 vt100, 4066 OTbs, OTpt, am, xenl, 4067 cols#80, lines#24, 4068 clear=\E[;H\E[2J$<20/>, cuf1=\E[C, 4069 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A$<2/>, dl1=\E[M, 4070 ed=\E[J$<30/>, el=\E[K$<3/>, 4071 flash=\E[?5h\0\0\0\0\0\0\0\0\0\0\0\0\0\E[?5l, 4072 il1=\E[L, is2=\E[?5l\E[?1l\E>\E[?7h\E[?8h, kcub1=\E[D, 4073 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kf1=\EOP, kf2=\EOQ, 4074 kf3=\EOR, kf4=\EOS, kf5=\EOT, kf6=\E#W, khome=\E[H, 4075 ri=\EM$<5/>, rmso=\E[m$<2/>, rmul=\E[m$<2/>, 4076 rs2=\E7\E[r\E8\E[?5l\E[?1l\E>\E[?7h\E[?8h, 4077 smso=\E[7m$<2/>, smul=\E[4m$<2/>, 4078# (news517: this had :TY=sjis:. --esr) 4079nwp517|nwp-517|nwp-517 vt200 80 cols 30 rows, 4080 eslok, hs, 4081 cols#80, lines#30, 4082 OTi2=\E[2$~\n, dsl=\E[1$~, fsl=\E[0$}, 4083 is2=\E7\E[r\E8\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, 4084 tsl=\E[1$}\E[;%df, use=vt200, 4085# (news517-w: this had :TY=sjis:. --esr) 4086nwp517-w|nwp-517-w|nwp-517 vt200 132 cols 50 rows, 4087 eslok, hs, 4088 cols#132, lines#50, 4089 OTi2=\E[2$~\n, dsl=\E[1$~, fsl=\E[0$}, 4090 is2=\E7\E[r\E8\E>\E[?3h\E[?4l\E[?5l\E[?7h\E[?8h, 4091 rs2=\E>\E[?3h\E[?4l\E[?5l\E[?7h\E[?8h, 4092 tsl=\E[1$}\E[;%df, use=vt200, 4093 4094#### Common Desktop Environment 4095# 4096 4097# This ships with Sun's CDE in Solaris 2.5 4098# Corrected Sun Aug 9 1998 by Alexander V. Lukyanov <lav@video.yars.free.net> 4099dtterm|CDE desktop terminal, 4100 am, mir, msgr, xenl, xon, 4101 cols#80, it#8, lines#24, lm#0, ncv@, 4102 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 4103 bel=^G, blink=\E[5m, bold=\E[1m, civis=\E[?25l, 4104 clear=\E[H\E[J, cnorm=\E[?25h, cr=^M, 4105 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 4106 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 4107 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 4108 dch=\E[%p1%dP, dch1=\E[P, dim=\E[2m, dl=\E[%p1%dM, 4109 dl1=\E[M, ech=\E[%p1%dX, ed=\E[J, el=\E[K, el1=\E[1K, 4110 enacs=\E(B\E)0, flash=\E[?5h$<200>\E[?5l, home=\E[H, 4111 ht=^I, hts=\EH, ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L, 4112 ind=\ED, invis=\E[8m, is2=\E F\E>\E[?1l\E[?7h\E[?45l, 4113 kbs=^H, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 4114 kdch1=\E[3~, kf1=\E[11~, kf10=\E[21~, kf11=\E[23~, 4115 kf12=\E[24~, kf13=\E[25~, kf14=\E[26~, kf15=\E[28~, 4116 kf16=\E[29~, kf17=\E[31~, kf18=\E[32~, kf19=\E[33~, 4117 kf2=\E[12~, kf20=\E[34~, kf3=\E[13~, kf4=\E[14~, 4118 kf5=\E[15~, kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, 4119 kfnd=\E[1~, khlp=\E[28~, kich1=\E[2~, knp=\E[6~, kpp=\E[5~, 4120 kslt=\E[4~, nel=\EE, rc=\E8, rev=\E[7m, ri=\EM, rmacs=^O, 4121 rmam=\E[?7l, rmir=\E[4l, rmso=\E[22;27m, rmul=\E[24m, 4122 sc=\E7, 4123 sgr=\E[0%?%p1%t;2;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p6%t;1%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 4124 sgr0=\E[m\017, smacs=^N, smam=\E[?7h, smir=\E[4h, 4125 smso=\E[2;7m, smul=\E[4m, tbc=\E[3g, use=ecma+color, 4126 4127#### Non-Unix Consoles 4128# 4129 4130# Except for the "-emx" suffixes, these are as distributed with EMX 0.9b, 4131# a Unix-style environment used on OS/2. (Note that the suffix makes some 4132# names longer than 14 characters, the nominal maximum). 4133# 4134# Removed: rmacs=\E[10m, smacs=\E[11m, because OS/2 does not implement acs. 4135ansi-emx|ANSI.SYS color, 4136 am, bce, eo, mir, msgr, xenl, xon, 4137 colors#16, cols#80, it#8, lines#25, pairs#64, 4138 bel=^G, blink=\E[5m, bold=\E[1m, civis=\E[?25l, 4139 clear=\E[1;33;44m\E[H\E[J, cnorm=\E[?25h, cr=^M, cub1=^H, 4140 cud1=^J, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, 4141 dch=\E[%p1%dp, ed=\E[J, el=\E[K, flash=\E[?5h\E[?5l, 4142 home=\E[H, ht=^I, hts=\EH, ich=\E[%p1%d@, ich1=\E[@, ind=^J, 4143 kb2=\E[G, kbs=^H, kcub1=\0K, kcud1=\0P, kcuf1=\0M, kcuu1=\0H, 4144 kf0=\0D, kf1=\0;, kf2=\0<, kf3=\0=, kf4=\0>, kf5=\0?, kf6=\0@, 4145 kf7=\0A, kf8=\0B, kf9=\0C, khome=\0G, kich1=\0R, kll=\0O, 4146 knp=\0Q, kpp=\0I, kspd=^Z, nel=^M^J, rev=\E[5;37;41m, 4147 rmir=\E[4l, rmpch=\E[10m, rmso=\E[0;44m\E[1;33m, 4148 rmul=\E[0;44m\E[1;33m, rs1=\Ec, setab=\E[4%p1%dm, 4149 setaf=\E[3%p1%dm, sgr0=\E[0m\E[1;33;44m, smir=\E[4h, 4150 smpch=\E[11m, smso=\E[0;31;47m, smul=\E[1;31;44m, 4151 tbc=\E[3g, u8=\E[?6c, u9=\E[c, 4152ansi-color-2-emx|ANSI.SYS color 2, 4153 am, bce, eo, mir, msgr, xenl, xon, 4154 colors#16, cols#80, it#8, lines#25, pairs#64, 4155 bel=^G, blink=\E[5m, bold=\E[1m, civis=\E[?25l, 4156 clear=\E[0;37;44m\E[H\E[J, cnorm=\E[?25h, cr=^M, cub1=^H, 4157 cud1=^J, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, 4158 dch=\E[%p1%dp, ed=\E[J, el=\E[K, flash=\E[?5h\E[?5l, 4159 home=\E[H, ht=^I, hts=\EH, ich=\E[%p1%d@, ich1=\E[@, ind=^J, 4160 kb2=\E[G, kbs=^H, kcub1=\0K, kcud1=\0P, kcuf1=\0M, kcuu1=\0H, 4161 kf0=\0D, kf1=\0;, kf2=\0<, kf3=\0=, kf4=\0>, kf5=\0?, kf6=\0@, 4162 kf7=\0A, kf8=\0B, kf9=\0C, khome=\0G, kich1=\0R, kll=\0O, 4163 knp=\0Q, kpp=\0I, kspd=^Z, nel=^M^J, rev=\E[1;37;46m, 4164 rmir=\E[4l, rmpch=\E[10m, rmso=\E[0;37;44m, 4165 rmul=\E[0;37;44m, rs1=\Ec, setab=\E[4%p1%dm, 4166 setaf=\E[3%p1%dm, sgr0=\E[0;37;44m, smir=\E[4h, 4167 smpch=\E[11m, smso=\E[1;37;46m, smul=\E[1;36;44m, 4168 tbc=\E[3g, u8=\E[?6c, u9=\E[c, 4169ansi-color-3-emx|ANSI.SYS color 3, 4170 am, bce, eo, mir, msgr, xenl, xon, 4171 colors#16, cols#80, it#8, lines#25, pairs#64, 4172 bel=^G, blink=\E[5m, bold=\E[1m, civis=\E[?25l, 4173 clear=\E[0;37;40m\E[H\E[J, cnorm=\E[?25h, cr=^M, cub1=^H, 4174 cud1=^J, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, 4175 dch=\E[%p1%dp, ed=\E[J, el=\E[K, flash=\E[?5h\E[?5l, 4176 home=\E[H, ht=^I, hts=\EH, ich=\E[%p1%d@, ich1=\E[@, ind=^J, 4177 kb2=\E[G, kbs=^H, kcub1=\0K, kcud1=\0P, kcuf1=\0M, kcuu1=\0H, 4178 kf0=\0D, kf1=\0;, kf2=\0<, kf3=\0=, kf4=\0>, kf5=\0?, kf6=\0@, 4179 kf7=\0A, kf8=\0B, kf9=\0C, khome=\0G, kich1=\0R, kll=\0O, 4180 knp=\0Q, kpp=\0I, kspd=^Z, nel=^M^J, rev=\E[1;37;46m, 4181 rmir=\E[4l, rmpch=\E[10m, rmso=\E[0;37;40m, 4182 rmul=\E[0;37;40m, rs1=\Ec, setab=\E[4%p1%dm, 4183 setaf=\E[3%p1%dm, sgr0=\E[0;10m, smir=\E[4h, 4184 smpch=\E[11m, smso=\E[1;37;46m, smul=\E[0;36;40m, 4185 tbc=\E[3g, u8=\E[?6c, u9=\E[c, 4186mono-emx|stupid monochrome ansi terminal with only one kind of emphasis, 4187 am, 4188 cols#80, it#8, lines#24, 4189 clear=\E[H\E[2J$<50>, cub1=\E[D, cud1=\E[B, cuf1=\E[C, 4190 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, el=\E[K, home=\E[H, 4191 ht=^I, kb2=\E[G, kbs=^H, kcub1=\0K, kcud1=\0P, kcuf1=\0M, 4192 kcuu1=\0H, kf0=\0D, kf1=\0;, kf2=\0<, kf3=\0=, kf4=\0>, 4193 kf5=\0?, kf6=\0@, kf7=\0A, kf8=\0B, kf9=\0C, khome=\0G, 4194 kich1=\0R, kll=\0O, knp=\0Q, kpp=\0I, nel=^M^J, rev=\E[7m, 4195 sgr0=\E[0m, 4196 4197# Use this for cygwin32 (tested with beta 19.1) 4198# underline is colored bright magenta 4199# shifted kf1-kf12 are kf11-kf22 4200cygwinB19|ansi emulation for cygwin32, 4201 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 4202 kdch1=\E[3~, kend=\E[4~, kf1=\E[[A, kf10=\E[21~, 4203 kf11=\E[23~, kf12=\E[24~, kf13=\E[25~, kf14=\E[26~, 4204 kf15=\E[28~, kf16=\E[29~, kf17=\E[31~, kf18=\E[32~, 4205 kf19=\E[33~, kf2=\E[[B, kf20=\E[34~, kf3=\E[[C, kf4=\E[[D, 4206 kf5=\E[[E, kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, 4207 khome=\E[1~, kich1=\E[2~, knp=\E[6~, kpp=\E[5~, rmam@, smam@, 4208 use=ansi.sys, 4209 4210# Use this for cygwin (tested with version 1.1.0). 4211# I've combined pcansi and linux. Some values of course were different and 4212# I've indicated which of these were and which I used. 4213# Cheers, earnie_boyd@yahoo.com 4214# several changes based on running with tack and comparing with older entry -TD 4215cygwin|ansi emulation for Cygwin, 4216 am, eo, in, msgr, xon, 4217 colors#8, cols#80, it#8, lines#25, ncv#3, pairs#64, 4218 acsc=+\020\,\021-\030.^Y0\333`\004a\261f\370g\361h\260j\331k\277l\332m\300n\305o~p\304q\304r\304s_t\303u\264v\301w\302x\263y\363z\362{\343|\330}\234~\376, 4219 bel=^G, bold=\E[1m, clear=\E[H\E[J, cr=^M, cub1=^H, 4220 cud1=\E[B, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, 4221 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, 4222 el=\E[K, el1=\E[1K, home=\E[H, hpa=\E[%i%p1%dG, ht=^I, 4223 hts=\EH, ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, il1=\E[L, 4224 ind=^J, invis=\E[8m, kbs=^H, kcub1=\E[D, kcud1=\E[B, 4225 kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[3~, kend=\E[4~, kf1=\E[[A, 4226 kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, kf13=\E[25~, 4227 kf14=\E[26~, kf15=\E[28~, kf16=\E[29~, kf17=\E[31~, 4228 kf18=\E[32~, kf19=\E[33~, kf2=\E[[B, kf20=\E[34~, 4229 kf3=\E[[C, kf4=\E[[D, kf5=\E[[E, kf6=\E[17~, kf7=\E[18~, 4230 kf8=\E[19~, kf9=\E[20~, khome=\E[1~, kich1=\E[2~, 4231 knp=\E[6~, kpp=\E[5~, kspd=^Z, nel=^M^J, op=\E[39;49m, 4232 rc=\E8, rev=\E[7m, ri=\EM, rmir=\E[4l, rmpch=\E[10m, 4233 rmso=\E[27m, rmul=\E[24m, rs1=\Ec\E]R, sc=\E7, 4234 setab=\E[4%p1%dm, setaf=\E[3%p1%dm, 4235 sgr=\E[0;10%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;%?%p7%t;8%;%?%p9%t;11%;m, 4236 sgr0=\E[0;10m, smir=\E[4h, smpch=\E[11m, smso=\E[7m, 4237 smul=\E[4m, u6=\E[%i%d;%dR, u7=\E[6n, u9=\E[c, 4238 vpa=\E[%i%p1%dd, 4239 4240# This entry fits the Windows NT console when the _POSIX_TERM environment 4241# variable is set to 'on'. While the Windows NT POSIX console is seldom used, 4242# the Telnet client supplied with both the Windows for WorkGroup 3.11 TCP/IP 4243# stack and the Win32 (i.e., Windows 95 and Windows NT 3.1 or later) operating 4244# systems is not, and (surprise!) they match very well. 4245# 4246# See: MS Knowledge Base item Q108581, dated 13-MAY-1997, titled "Setting Up 4247# VI POSIX Editor for Windows NT 3.1". True to Microsoft form, not only 4248# are the installation instructions a pile of mind-numbing bureaucratese, 4249# but the termcap entry is actually broken and unusable as given; the :do: 4250# capability is misspelled "d". 4251# 4252# To use this, you need to a bunch of environment variables: 4253# 4254# SET _POSIX_TERM=on 4255# SET TERM=ansi 4256# SET TERMCAP=location of termcap file in POSIX file format 4257# which is case-sensitive. 4258# e.g. SET TERMCAP=//D/RESKIT35/posix/termcap 4259# SET TMP=//C/TEMP 4260# 4261# Important note: setting the TMP environment variable in POSIX style renders 4262# it incompatible with a lot of other applications, including Visual C++. So 4263# you should have a separate command window just for vi. All the other 4264# variables may be permanently set in the Control Panel\System applet. 4265# 4266# You can find out more about the restrictions of this facility at 4267# <http://www.nentug.org/unix-to-nt/ntposix.htm>. 4268# 4269# From: Federico Bianchi <bianchi@magna.cisid.unipi.it>, 15 Jan 1997 4270ansi-nt|psx_ansi|Microsoft Windows NT console POSIX ANSI mode, 4271 am, bw, msgr, 4272 cols#80, it#8, lines#25, 4273 bel=^G, clear=\E[2J, cr=^M, cub1=^H, cud1=^J, cuf1=\E[C, 4274 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, ed=\E[J, el=\E[K, 4275 home=\E[H, ht=^I, ind=\E[S, kbs=^H, kcub1=\E[D, kcud1=\E[V, 4276 kcuf1=\E[C, kcuu1=\E[A, nel=\r\E[S, rc=\E[u, rev=\E[7m, 4277 ri=\E[T, rmso=\E[m, sc=\E[s, sgr0=\E[0m, smso=\E[7m, 4278# From: jew@venus.sunquest.com 4279# Date: 19 Feb 93 23:41:07 GMT 4280# Here's a combination of ansi and vt100 termcap 4281# entries that works nearly perfectly for me 4282# (Gateway 2000 Handbook and Microsoft Works 3.0): 4283pcmw|PC running Microsoft Works, 4284 am, xenl, 4285 cols#80, it#8, lines#24, vt#3, 4286 bel=^G, blink=\E[5m$<2/>, bold=\E[1m$<2/>, 4287 clear=\E[;H\E[2J$<50/>, cr=^M, cub1=^H, cud1=^J, 4288 cuf1=\E[C$<2/>, cup=\E[%i%p1%d;%p2%dH$<5/>, 4289 cuu1=\E[A$<2/>, ed=\E[J$<50/>, el=\E[K$<3/>, home=\E[H, 4290 ht=^I, hts=\EH$<2/>, ind=\ED$<5/>, is2=\E[1;24r\E[24;1H, 4291 kbs=^H, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, 4292 kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, nel=\r\ED$<5/>, 4293 rc=\E8, rev=\E[7m$<2/>, rf=/usr/share/lib/tabset/vt100, 4294 ri=\EM$<5/>, rmso=\E[m$<2/>, rmul=\E[m$<2/>, 4295 rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sc=\E7, 4296 sgr0=\E[m$<2/>, smso=\E[7m$<2/>, smul=\E[4m$<2/>, 4297 tbc=\E[3g$<2/>, 4298 4299# The Microsoft Services for Unix (Interix) 3.5 terminal, 4300# according to the NetBSD pkgsrc developers: 4301interix|interix35|Microsoft Services for Unix 3.5, 4302 dch@, dch1@, kll=\E[U, knp=\E[T, kpp=\E[S, use=pcansi, 4303 4304######## COMMON TERMINAL TYPES 4305# 4306# This section describes terminal classes and maker brands that are still 4307# quite common, but have proprietary command sets not blessed by ANSI. 4308# 4309 4310#### Altos 4311# 4312# Altos made a moderately successful line of UNIX boxes. In 1990 they were 4313# bought out by Acer, a major Taiwanese manufacturer of PC-clones. 4314# Acer has a web site at http://www.acer.com. 4315# 4316# Altos descriptions from Ted Mittelstaedt <tedm@agora.rain.com> 4 Sep 1993 4317# His comments suggest they were shipped with the system. 4318# 4319 4320# (altos2: had extension capabilities 4321# :c0=^A`\r:c1=^Aa\r:c2=^Ab\r:c3=^Ac\r:\ 4322# :c4=^Ad\r:c5=^Ae\r:c6=^Af\r:c7=^Ag\r:\ 4323# :c8=^Ah\r:c9=^Ai\r:cA=^Aj\r:cB=^Ak\r:\ 4324# :cC=^Al\r:cD=^Am\r:cE=^An\r:cF=^Ao\r: 4325# :XU=^Aq\r:XD=^Ar\r:XR=^As\r:XL=^At\r:\ 4326# :YU=^AQ\r:YD=^AR\r:YR=^AS\r:YL=^AT\r:\ 4327# :HL=^AP\r:SP=\E[i:\ 4328# :IS=\E[@:DE=\E[P:IL=\E[L:NS=\E[S:PS=\E[T:\ 4329# :LO=\E[0q:LC=\E[5q:LL=\E[6q:\ 4330# Comparison with the k* capabilities makes it obvious that the c* things are 4331# shift keys. I have renamed them to keys 32 and up accordingly. Also, 4332# :sr: was given as a boolean-- esr) 4333altos2|alt2|altos-2|altos II, 4334 cols#80, it#8, lines#24, xmc#0, 4335 clear=\E[H\E[2J, cr=^M, cub1=^H, cud1=\E[1B, cuf1=\E[1C, 4336 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[1A, dch1=\E[P, dl1=\E[M, 4337 ed=\E[J, el=\E[K, home=\E[H, ht=^I, ich1=\E[@, 4338 if=/usr/share/tabset/vt100, il1=\E[L, ind=^J, 4339 is2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, kDL=^Am\r, 4340 kEOL=^An\r, kbs=^H, kcbt=^AK\r, kclr=^AL\r, kcub1=\E[D, 4341 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=^AM\r, kel=^AN\r, 4342 kf0=^AI\r, kf1=^A@\r, kf2=^AA\r, kf3=^AB\r, kf32=^A`\r, 4343 kf33=^Aa\r, kf34=^Ab\r, kf35=^Ac\r, kf36=^Ad\r, kf37=^Ae\r, 4344 kf38=^Af\r, kf39=^Ag\r, kf4=^AC\r, kf40=^Ah\r, kf41=^Ai\r, 4345 kf42=^Aj\r, kf43=^Ak\r, kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, 4346 kf8=^AG\r, kf9=^AH\r, khome=\E[f, kil1=^AJ\r, kind=^AO\r, 4347 nel=^M^J, rmam=\E[?7l, rmso=\E[m, rmul=\E[m, sgr0=\E[m, 4348 smam=\E[?7h, smso=\E[7m, smul=\E[4m, 4349# (altos3: had extension capabilities 4350# :c0=^A`\r:c1=^Aa\r:c2=^Ab\r:c3=^Ac\r:\ 4351# :c4=^Ad\r:c5=^Ae\r:c6=^Af\r:c7=^Ag\r:\ 4352# :c8=^Ah\r:c9=^Ai\r:cA=^Aj\r:cB=^Ak\r:\ 4353# :cC=^Al\r:cD=^Am\r:cE=^An\r:cF=^Ao\r: 4354# :XU=^Aq\r:XD=^Ar\r:XR=^As\r:XL=^At\r:\ 4355# :HL=^AP\r:SP=\E[i:\ 4356# :IS=\E[@:DE=\E[P:IL=\E[L:NS=\E[S:PS=\E[T:\ 4357altos3|altos5|alt3|alt5|altos-3|altos-5|altos III or V, 4358 blink=\E[5p, ri=\EM, sgr0=\E[p, use=altos2, 4359altos4|alt4|altos-4|altos IV, 4360 use=wy50, 4361# (altos7: had extension capabilities: 4362# :GG#0:GI=\EH8:GF=\EH7:\ 4363# :c0=^A`\r:c1=^Aa\r:c2=^Ab\r:c3=^Ac\r:\ 4364# :c4=^Ad\r:c5=^Ae\r:c6=^Af\r:c7=^Ag\r:\ 4365# :c8=^Ah\r:c9=^Ai\r:cA=^Aj\r:cB=^Ak\r:\ 4366# :cC=^Al\r:cD=^Am\r:cE=^An\r:cF=^Ao\r: 4367# Comparison with the k* capabilities makes it obvious that the c* things are 4368# shift keys. I have renamed them to keys 32 and up accordingly. I have 4369# also made this entry relative to adm12 in order to give it an <sgr>. The 4370# <invis> imported by use=adm+sgr may work, let me know. -- esr) 4371altos7|alt7|altos VII, 4372 am, mir, 4373 cols#80, lines#24, xmc#0, 4374 acsc=j5k3l2m1n8q\:t4u9v=w0x6, blink=\EG2, bold=\EGt, 4375 clear=\E+^^, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 4376 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW, 4377 dim=\EGp, dl1=\ER, ed=\EY, el=\ET, home=^^, ht=^I, il1=\EE, 4378 ind=^J, invis=\EG1, 4379 is2=\E`\:\Ee(\EO\Ee6\Ec41\E~4\Ec21\Eu\E~2, kDL=^Am\r, 4380 kEOL=^An\r, kbs=^H, kcbt=^AK\r, kclr=^AL\r, kcub1=^H, 4381 kcud1=^J, kcuf1=^L, kcuu1=^K, kdch1=^AM\r, kel=^AN\r, 4382 kf0=^AI\r, kf1=^A@\r, kf2=^AA\r, kf3=^AB\r, kf32=^A`\r, 4383 kf33=^Aa\r, kf34=^Ab\r, kf35=^Ac\r, kf36=^Ad\r, kf37=^Ae\r, 4384 kf38=^Af\r, kf39=^Ag\r, kf4=^AC\r, kf40=^Ah\r, kf41=^Ai\r, 4385 kf42=^Aj\r, kf43=^Ak\r, kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, 4386 kf8=^AG\r, kf9=^AH\r, khome=^^, kil1=^AJ\r, kind=^AO\r, 4387 knp=\EK, kpp=\EJ, mc4=\EJ, mc5=\Ed#, nel=^M^J, ri=\Ej, 4388 rmir=\Er, smir=\Eq, use=adm+sgr, 4389altos7pc|alt7pc|altos PC VII, 4390 kend=\ET, use=altos7, 4391 4392#### Hewlett-Packard (hp) 4393# 4394# Hewlett-Packard 4395# 8000 Foothills Blvd 4396# Roseville, CA 95747 4397# Vox: 1-(916)-785-4363 (Technical response line for VDTs) 4398# 1-(800)-633-3600 (General customer support) 4399# 4400# 4401# As of March 1998, HP no longer has any terminals in production. 4402# The 700 series (22, 32, 41, 44, 92, 94, 96, 98) is still being 4403# supported (they still have parts). So are the 2392a and 2394a. 4404# See the WORKSTATION CONSOLES section for the 700s. 4405# 4406 4407# Generic HP terminal - this should (hopefully) work on any HP terminal. 4408hpgeneric|hp|hewlett-packard generic terminal, 4409 OTbs, OTpt, am, da, db, mir, xhp, 4410 cols#80, lines#24, lm#0, vt#6, 4411 bel=^G, clear=\EH\EJ, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 4412 cup=\E&a%p2%dc%p1%dY$<6>, cuu1=\EA, dch1=\EP, dl1=\EM, 4413 ed=\EJ, el=\EK, hpa=\E&a%p1%dC, ht=^I, hts=\E1, il1=\EL, 4414 ind=^J, kbs=^H, kcbt=\Ei, rmir=\ER, rmso=\E&d@, rmul=\E&d@, 4415 sgr0=\E&d@, smir=\EQ, smso=\E&dJ, smul=\E&dD, tbc=\E3, 4416 vpa=\E&a%p1%dY, 4417 4418hp110|hewlett-packard model 110 portable, 4419 lines#16, use=hpgeneric, 4420 4421hp+pfk+cr|hp function keys with CR, 4422 kf1=\Ep\r, kf2=\Eq\r, kf3=\Er\r, kf4=\Es\r, kf5=\Et\r, 4423 kf6=\Eu\r, kf7=\Ev\r, kf8=\Ew\r, 4424 4425hp+pfk-cr|hp function keys w/o CR, 4426 kf1=\Ep, kf2=\Eq, kf3=\Er, kf4=\Es, kf5=\Et, kf6=\Eu, kf7=\Ev, 4427 kf8=\Ew, 4428 4429# The hp2621s use the same keys for the arrows and function keys, 4430# but not separate escape sequences. These definitions allow the 4431# user to use those keys as arrow keys rather than as function 4432# keys. 4433hp+pfk+arrows|hp alternate arrow definitions, 4434 kcub1=\Eu\r, kcud1=\Ew\r, kcuf1=\Ev\r, kcuu1=\Et\r, kf1@, 4435 kf2@, kf3@, kf4@, kf5@, kf6@, kf7@, kf8@, khome=\Ep\r, kind=\Er\r, 4436 kll=\Eq\r, kri=\Es\r, 4437 4438hp+arrows|hp arrow definitions, 4439 kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, khome=\Eh, 4440 kind=\ES, kll=\EF, kri=\ET, 4441 4442# Generic stuff from the HP 262x series 4443# 4444hp262x|HP 262x terminals, 4445 xhp, 4446 blink=\E&dA, dch1=\EP$<2>, ed=\EJ, ht=\011$<2>, ind=\ES, 4447 invis=\E&dS, ip=$<2>, kcub1=\ED, kcud1=\EB, kcuf1=\EC, 4448 kcuu1=\EA, kdch1=\EP, kdl1=\EM, ked=\EJ, kel=\EK, khome=\Eh, 4449 kich1=\EQ, kil1=\EL, kind=\ES, knp=\EU, kpp=\EV, kri=\ET, 4450 krmir=\ER, rev=\E&dB, rmkx=\E&s0A, rmso=\E&d@, rmul=\E&d@, 4451 sgr=\E&d%{64}%?%p1%t%{66}%|%;%?%p2%t%{68}%|%;%?%p3%t%{66}%|%;%?%p4%t%{65}%|%;%c, 4452 sgr0=\E&d@, smkx=\E&s1A, smso=\E&dB, smul=\E&dD, 4453 4454# Note: no <home> on HPs since that homes to top of memory, not screen. 4455# Due to severe 2621 braindamage, the only way to get the arrow keys to 4456# transmit anything at all is to turn on the function key labels 4457# with <smkx>, and even then the user has to hold down shift! 4458# The default 2621 turns off the labels except when it has to to 4459# enable the function keys. If your installation prefers labels 4460# on all the time, or off all the time (at the "expense" of the 4461# function keys), use 2621-nl or 2621-wl. 4462# 4463# Note: there are newer ROMs for 2621's that allow you to set 4464# strap A so the regular arrow keys xmit \EA, etc, as with the 4465# 2645. However, even with this strap set, the terminal stops 4466# xmitting if you reset it, until you unset and reset the strap! 4467# Since there is no way to set/unset the strap with an escape 4468# sequence, we don't use it in the default. 4469# If you like, you can use 2621-ba (brain-damaged arrow keys). 4470hp2621-ba|2621 w/new rom and strap A set, 4471 rmkx@, smkx@, use=hp+arrows, use=hp2621, 4472 4473# hp2621 with function labels. Most of the time they are off, 4474# but inside vi, the function key labels appear. You have to 4475# hold down shift to get them to xmit. 4476hp2621|hp2621a|hp2621A|2621|2621a|2621A|hp2621-wl|2621-wl|hp 2621 w/labels, 4477 is2=\E&jA\r, rmkx=\E&jA, use=hp2621-fl, 4478hp2621-fl|hp 2621, 4479 xhp@, xon, 4480 pb#19200, 4481 cbt=\Ei, cup=\E&a%p2%dc%p1%dY, dch1=\EP$<2>, ht=\011$<2>, 4482 ip=$<2>, is2=\E&j@\r, rmkx=\E&j@, rmso=\E&d@, rmul=\E&d@, 4483 sgr0=\E&d@, smkx=\E&jB, smso=\E&dD, smul=\E&dD, 4484 use=hp+pfk+cr, use=hpgeneric, 4485 4486# To use hp2621p printer, setenv TERM=2621p, PRINTER=2612p 4487hp2621p|hp 2621 with printer, 4488 mc4=\E&p13C, mc5=\E&p11C, use=hp2621, 4489 4490hp2621p-a|hp2621p with fn as arrows, 4491 use=hp+pfk+arrows, use=hp2621p, 4492 4493# hp2621 with k45 keyboard 4494hp2621-k45|hp2621k45|k45|hp 2621 with 45 keyboard, 4495 kbs=^H, kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, 4496 khome=\Eh, rmkx=\E&s0A, smkx=\E&s1A, use=hp2621, 4497 4498# 2621 using all 48 lines of memory, only 24 visible at any time. 4499hp2621-48|48 line 2621, 4500 lines#48, 4501 cup=\E&a%p2%dc%p1%dR, home=\EH, vpa=\E&a%p1%dR, 4502 use=hp2621, 4503 4504# 2621 with no labels ever. Also prevents vi delays on escape. 4505hp2621-nl|hp 2621 with no labels, 4506 kcub1@, kcud1@, kcuf1@, kcuu1@, khome@, rmkx@, smkx@, 4507 use=hp2621-fl, 4508 4509# Needed for UCB ARPAVAX console, since lsi-11 expands tabs 4510# (wrong). 4511# 4512hp2621-nt|hp 2621 w/no tabs, 4513 ht@, use=hp2621, 4514 4515# Hp 2624 B with 4 or 10 pages of memory. 4516# 4517# Some assumptions are made with this entry. These settings are 4518# NOT set up by the initialization strings. 4519# 4520# Port Configuration 4521# RecvPace=Xon/Xoff 4522# XmitPace=Xon/Xoff 4523# StripNulDel=Yes 4524# 4525# Terminal Configuration 4526# InhHndShk=Yes 4527# InhDC2=Yes 4528# XmitFnctn(A)=No 4529# InhEolWrp=No 4530# 4531# Note: the 2624 DOES have a true <home>, believe it or not! 4532# 4533# The 2624 has an "error line" to which messages can be sent. 4534# This is CLOSE to what is expected for a "status line". However, 4535# after a message is sent to the "error line", the next carriage 4536# return is EATEN and the "error line" is turned back off again! 4537# So I guess we can't define <hs>, <eslok>, <wsl>, <dsl>, <fsl>, <tsl>. 4538# 4539# This entry supports emacs (and any other program that uses raw 4540# mode) at 4800 baud and less. I couldn't get the padding right 4541# for 9600. 4542# 4543# (hp2624: replaced NUL sequences in flash with mandatory pauses -- esr) 4544hp2624|hp2624a|hp2624b|hp2624b-4p|Hewlett Packard 2624 B, 4545 da, db, 4546 lm#96, 4547 flash=\E&w13F$<66/>\E&w12F$<66/>\E&w13F$<66/>\E&w12F, 4548 use=hp+labels, use=scrhp, 4549 4550# This hp2626 entry does not use any of the fancy windowing stuff 4551# of the 2626. 4552# 4553# Indeed, terminfo does not yet handle such stuff. Since changing 4554# any window clears memory, it is probably not possible to use 4555# this for screen opt. 4556# 4557# ed is incredibly slow most of the time - I am guessing at the 4558# exact padding. Since the terminal uses xoff/xon this is intended 4559# only for cost computation, so that the terminal will prefer el 4560# or even dl1 which is probably faster! 4561# 4562# \ED\EJ\EC hack for ed from Ed Bradford - apparently ed is only 4563# extra slow on the last line of the window. 4564# 4565# The padding probably should be changed. 4566# 4567hp2626|hp2626a|hp2626p|hp 2626, 4568 da, db, 4569 lm#0, pb#19200, 4570 ed=\ED\EJ$<500>\EC, indn=\E&r%p1%dD, ip=$<4>, 4571 is2=\E&j@\r, rin=\E&r%p1%dU, use=hp+pfk+cr, 4572 use=hp+labels, use=scrhp, 4573 4574# This entry is for sysline. It allocates a 23 line window with 4575# a 115 line workspace for regular use, and a 1 line window for 4576# the status line. 4577# 4578# This assumes port 2 is being used. 4579# Turn off horizontal line, Create ws #1 with 115 lines, 4580# Create ws #2 with 1 line, Create window #1 lines 1-23, 4581# Create window #2 lines 24-24, Attach cursor to workspace #1. 4582# Note that this clears the tabs so it must be done by tset before 4583# it sets the tabs. 4584# 4585hp2626-s|hp 2626 using only 23 lines, 4586 eslok, hs, 4587 lines#23, 4588 fsl=\E&d@\E&w7f2p1I\E&w4f1I, 4589 is1=\E&q3t0{0H \E&w0f115n1I \E&w0f1n2I \E&w2f1i0d0u22l0S \E&w2f2i0d23u23l0S \E&w7f2p1I \r, 4590 tsl=\E&w7f2p2I\E&w4f2I\r\EK\E&a%p1%dC, use=hp2626, 4591# Force terminal back to 24 lines after being 23. 4592hp2626-ns|hp 2626 using all 24 lines, 4593 is1=\E&q3t0{0H \E&w0f118n1I \E&w0f1n2I \E&w2f1i0d0u23l0S \E&w3f2I \E&w7f2p1I \r, 4594 use=hp2626, 4595# Various entries useful for small windows on 2626. 4596hp2626-12|hewlett-packard 2626 12 lines, 4597 lines#12, use=hp2626, 4598hp2626-12x40|hewlett-packard 2626 12 lines 40 columns, 4599 cols#40, lines#12, use=hp2626, 4600hp2626-x40|hewlett-packard 2626 40 columns, 4601 cols#40, use=hp2626, 4602hp2626-12-s|hewlett-packard 2626 11 lines plus status, 4603 lines#11, use=hp2626-s, 4604 4605# 4606# hp2627 color tubes from University of Wisconsin 4607# 4608hp2627a-rev|hp 2627 with reverse video colors, 4609 cr=^M, cud1=^J, ht=^I, ind=^J, 4610 is2=\E&v0m1a0b0c1x1y1z1i0a0b1c1x1y1z0i0S\E&j@\r\E3\r, 4611 kbs=^H, kcub1=^H, kcud1=^J, nel=^M^J, rmul=\E&v0S\E&d@, 4612 smul=\E&dD\E&v1S, use=hp2621-nl, 4613hp2627a|hp 2627 color terminal with no labels, 4614 cr=^M, cud1=^J, ht=^I, ind=^J, 4615 is2=\E&v0m1a1b0c1i0a1b1c2i1a0b0c0i0S\E&j@\r\E3\r, 4616 kbs=^H, kcub1=^H, kcud1=^J, nel=^M^J, rmso=\E&v0S, 4617 rmul=\E&v0S\E&d@, smso=\E&v2S, smul=\E&dD\E&v1S, 4618 use=hp2621-nl, 4619hp2627c|hp 2627 color (cyan) terminal with no labels, 4620 cr=^M, cud1=^J, ht=^I, ind=^J, 4621 is2=\E&v0m1a0b0c2i1a1b0c1i0a1b1c0i0S\E&j@\r\E3\r, 4622 kbs=^H, kcub1=^H, kcud1=^J, nel=^M^J, use=hp2627a, 4623 4624# hp2640a doesn't have the Y cursor addressing feature, and C is 4625# memory relative instead of screen relative, as we need. 4626# 4627hp2640a|hp 2640a, 4628 cup@, rmkx@, smkx@, use=hp2645, 4629 4630hp2640b|hp2644a|hp 264x series, 4631 rmkx@, smkx@, use=hp2645, 4632 4633# (hp2641a: removed unknown :gu: -- esr) 4634hp2641a|hp2645a|hp2647a|HP 264?A series BRL entry, 4635 am, da, db, mir, xhp, 4636 cols#80, lines#24, 4637 bel=^G, clear=\EH\EJ, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 4638 cup=\E&a%p2%2dc%p1%2dY, cuu1=\EA, dch1=\EP, dl1=\EM, 4639 ed=\EJ, el=\EK, hpa=\E&a%p1%2dC, ht=^I, 4640 if=/usr/share/tabset/std, il1=\EL, ind=^J, 4641 is2=\EE$<500/>, kbs=^H, kcub1=^H, kcud1=^J, nel=^M^J, 4642 rmir=\ER, rmso=\E&d@, smir=\EQ, smso=\E&dB, 4643 vpa=\E&a%p1%2dY, 4644 4645# This terminal should be used at 4800 baud or less. It needs padding for 4646# plain characters at 9600, I guessed at an appropriate cr delay. It really 4647# wants ^E/^F handshaking, but that doesn't work well even if you write 4648# software to support it. 4649hp2645|hp45|HP 2645 series, 4650 pb#9600, 4651 blink=\E&dA, cr=\r$<20>, dim=\E&dH, kctab=\E2, kcub1=\ED, 4652 kcud1=\EB, kcuf1=\EC, kcuu1=\EA, kdch1=\EP, kdl1=\EM, 4653 ked=\EJ, kel=\EK, khome=\Eh, khts=\E1, kich1=\EQ, kil1=\EL, 4654 kind=\ES, knp=\EU, kpp=\EV, kri=\ET, krmir=\ER, rev=\E&dB, 4655 rmkx=\E&s0A, 4656 sgr=\E&d%{64}%?%p1%t%{66}%|%;%?%p2%t%{68}%|%;%?%p3%t%{66}%|%;%?%p4%t%{65}%|%;%?%p5%t%{72}%|%;%?%p6%t%{66}%|%;%c, 4657 sgr0=\E&d@, smkx=\E&s1A, smul=\E&dD, use=hpgeneric, 4658# You should use this terminal at 4800 baud or less. 4659hp2648|hp2648a|HP 2648a graphics terminal, 4660 clear=\EH\EJ$<50>, cup=\E&a%p2%dc%p1%dY$<20>, 4661 dch1=\EP$<7>, ip=$<5>, use=hp2645, 4662 4663# The HP 150 terminal is a fairly vanilla HP terminal, with the 4664# clreol standout problem. It also has graphics capabilities and 4665# a touch screen, which we don't describe here. 4666hp150|hewlett packard Model 150, 4667 OTbs, use=hp2622, 4668 4669# HP 2382a terminals, "the little ones." They don't have any 4670# alternate character set support and sending out ^N/^O will 4671# leave the screen blank. 4672hp2382a|hp2382|hewlett packard 2382a, 4673 da, db, 4674 lh#1, lm#48, 4675 acsc@, 4676 pln=\E&f0a%p1%dk%p2%l%Pa%?%ga%t%ga%d%e1%;d0L%?%ga%!%t %;%p2%s, 4677 rmacs@, 4678 sgr=\E&d%{0}%Pa%?%p4%t%{1}%ga%+%Pa%;%?%p1%p3%|%p6%|%t%{2}%ga%+%Pa%;%?%p2%p6%|%t%{4}%ga%+%Pa%;%?%p1%p5%|%t%{8}%ga%+%Pa%;%?%p7%t%?%ga%ts%ga%{64}%+%e%{83}%;%e%?%ga%t%ga%{64}%+%e%{64}%;%;%c, 4679 sgr0=\E&d@, smacs@, use=hp+labels, use=scrhp, 4680 4681hp2621-a|hp2621a-a|hp2621 with fn as arrows, 4682 use=hp+pfk+arrows, use=hp2621-fl, 4683 4684# newer hewlett packard terminals 4685 4686newhpkeyboard|generic entry for HP extended keyboard, 4687 kbs=^H, kcbt=\Ei, kclr=\EJ, kcub1=\ED, kcud1=\EB, kcuf1=\EC, 4688 kcuu1=\EA, kdch1=\EP, kdl1=\EM, ked=\EJ, kel=\EK, khome=\Eh, 4689 kich1=\EQ, kil1=\EL, kind=\ET, kll=\EF, knp=\EU, kpp=\EV, 4690 kri=\ES, krmir=\ER, rmkx=\E&s0A, smkx=\E&s1A, 4691 use=hp+pfk-cr, 4692 4693newhp|generic entry for new hewlett packard terminals, 4694 am, bw, mir, xhp, xon, 4695 cols#80, lines#24, pb#4800, 4696 acsc=2[3@4>5I9(\:'JSKWLQMAO#P$Q;R!S"T1U2V4W3X\:Y+Z*dHjGkTlRmFn/q\,t5u6v8w7x., 4697 bel=^G, blink=\E&dA, bold=\E&dF, cbt=\Ei, cr=^M, cub1=^H, 4698 cud1=^J, cuf1=\EC, cuu1=\EA, dch1=\EP$<2>, dim=\E&dH, 4699 dl1=\EM, ed=\EJ, el=\EK, ht=\011$<2>, hts=\E1, il1=\EL, ind=^J, 4700 invis=\E&dS, ip=$<2>, is1=\E&jB$<8>, nel=^M^J, 4701 pfkey=\E&f0a%p1%dk0d%p2%l%dL%p2%s, 4702 pfloc=\E&f1a%p1%dk0d%p2%l%dL%p2%s, 4703 pfx=\E&f2a%p1%dk0d%p2%l%dL%p2%s, rev=\E&dB, ri=\ET, 4704 rmacs=^O, rmir=\ER, rmso=\E&d@, rmul=\E&d@, rs1=\Eg, 4705 sgr=\E&d%{0}%Pa%?%p4%t%{1}%ga%+%Pa%;%?%p1%p3%|%p6%|%t%{2}%ga%+%Pa%;%?%p2%p6%|%t%{4}%ga%+%Pa%;%?%p1%p5%|%t%{8}%ga%+%Pa%;%?%p7%t%?%ga%ts%ga%{64}%+%e%{83}%;%e%?%ga%t%ga%{64}%+%e%{64}%;%;%c%?%p9%t\016%e\017%;, 4706 sgr0=\E&d@\017, smacs=^N, smir=\EQ, smso=\E&dJ, smul=\E&dD, 4707 tbc=\E3, use=newhpkeyboard, 4708 4709memhp|memory relative addressing for new HP ttys, 4710 vt#6, 4711 clear=\EH\EJ$<40>, cub=\E&a-%p1%dC, cud=\E&a+%p1%dR, 4712 cuf=\E&a+%p1%dC, cup=\E&a%p1%dr%p2%dC, cuu=\E&a-%p1%dR, 4713 home=\EH, hpa=\E&a%p1%dC, ll=\E&a23R\r, 4714 mrcup=\E&a%p1%dr%p2%dC, vpa=\E&a%p1%dR, use=newhp, 4715 4716scrhp|screen relative addressing for new HP ttys, 4717 clear=\E&a0c0Y\EJ$<40>, cub=\E&a-%p1%dC, 4718 cud=\E&a+%p1%dR, cuf=\E&a+%p1%dC, 4719 cup=\E&a%p1%dy%p2%dC$<10>, cuu=\E&a-%p1%dR, 4720 home=\E&a0y0C, hpa=\E&a%p1%dC, ll=\E&a0y0C\EA, 4721 mrcup=\E&a%p1%dr%p2%dC, vpa=\E&a%p1%dY, use=newhp, 4722 4723# (hp+labels: added label values from a BRL termcap -- esr) 4724hp+labels|"standard" label info for new HP ttys, 4725 lh#2, lw#8, nlab#8, 4726 lf0=f1, lf1=f2, lf2=f3, lf3=f4, lf4=f5, lf5=f6, lf6=f7, lf7=f8, 4727 pln=\E&f2a%p1%dk%p2%l%Pa%?%ga%t%ga%d%e1%;d0L%?%ga%!%t %;%p2%s, 4728 rmln=\E&j@, smln=\E&jB, 4729 4730hp+printer|"standard" printer info for HP ttys, 4731 ff=\E&p4u0C, mc0=\EH\E&p4dF, mc4=\E&p13C, mc5=\E&p11C, 4732 4733 4734# The new hp2621b is kind of a cross between the old 2621 and the 4735# new 262x series of machines. It has dip-switched options. 4736# The firmware has a bug in it such that if you give it a null 4737# length label, the following character is eaten! 4738hp2621b|hp 2621b with old style keyboard, 4739 lh#1, lm#48, lw#8, nlab#8, 4740 kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, khome=\Eh, 4741 kind=\ET, kll=\EF, kri=\ES, 4742 pln=\E&f0a%p1%dk%p2%l%Pa%?%ga%t%ga%d%e1%;d3L%?%ga%!%t%{32}%c%;%p2%s\E%{111}%p1%+%c\r, 4743 smln=\E&jB, use=hp2621, 4744 4745hp2621b-p|hp 2621b with printer, 4746 use=hp+printer, use=hp2621b, 4747 4748# hp2621b - new 2621b with new extended keyboard 4749# these are closer to the new 26xx series than the other 2621b 4750hp2621b-kx|hp 2621b with extended keyboard, 4751 use=newhpkeyboard, use=hp2621b, 4752 4753hp2621b-kx-p|hp 2621b with new keyboard & printer, 4754 use=hp+printer, use=hp2621b-kx, 4755 4756# Some assumptions are made in the following entries. 4757# These settings are NOT set up by the initialization strings. 4758# 4759# Port Configuration 4760# RecvPace=Xon/Xoff XmitPace=Xon/Xoff StripNulDel=Yes 4761# 4762# Terminal Configuration 4763# InhHndShk(G)=Yes InhDC2(H)=Yes 4764# XmitFnctn(A)=No InhEolWrp=No 4765# 4766# 4767# Hp 2622a & hp2623a display and graphics terminals 4768# 4769hp2622|hp2622a|hp 2622, 4770 da, db, 4771 lm#0, pb#19200, 4772 is2=\E&dj@\r, use=hp+pfk+cr, use=hp+labels, use=scrhp, 4773 4774# The 2623 is a 2622 with extra graphics hardware. 4775hp2623|hp2623a|hp 2623, 4776 use=hp2622, 4777 4778hp2624b-p|hp2624b-4p-p|hewlett packard 2624 B with printer, 4779 use=hp+printer, use=hp2624, 4780 4781# The hewlett packard B can have an optional extra 6 pages of memory. 4782hp2624-10p|hp2624a-10p|hp2624b-10p|hewlett packard 2624 B w/ 10 pages of memory, 4783 lm#240, use=hp2624, 4784 4785hp2624b-10p-p|hewlett packard 2624 B w/ extra memory & printer, 4786 lm#240, use=hp2624b-p, 4787 4788# Color manipulations for HP terminals 4789hp+color|hp with colors, 4790 ccc, 4791 colors#16, ncv#17, pairs#7, 4792 initp=\E&v%?%p2%{1000}%=%t1%e.%p2%d%;a%?%p3%{1000}%=%t1%e.%p3%d%;b%?%p4%{1000}%=%t1%e.%p4%d%;c%?%p5%{1000}%=%t1%e.%p5%d%;x%?%p6%{1000}%=%t1%e.%p6%d%;y%?%p7%{1000}%=%t1%e.%p7%d%;z%p1%dI, 4793 oc=\E&v0m1a1b1c0I\E&v1a1I\E&v1b2I\E&v1a1b3I\E&v1c4I\E&v1a1c5I\E&v1b1c6I\E&v1x1y7I, 4794 op=\E&v0S, scp=\E&v%p1%dS, 4795 4796# <is2> sets the screen to be 80 columns wide 4797hp2397a|hp2397|hewlett packard 2397A color terminal, 4798 is2=\E&w6f80X, use=memhp, use=hp+labels, use=hp+color, 4799 4800# HP 700/44 Setup parameters: 4801# Terminal Mode HP-PCterm 4802# Inhibit Auto Wrap NO 4803# Status Line Host Writable 4804# PC Character Set YES 4805# Twenty-Five Line Mode YES 4806# XON/XOFF @128 or 64 (sc) 4807# Keycode Mode NO or YES (sc) 4808# Backspace Key BS or BS/DEL 4809# 4810# <is2> sets pcterm; autowrap; 25 lines; pc char set; prog DEL key; 4811# \E\\? does not turn off keycode mode 4812# <smsc> sets alternate start/stop; keycode on 4813hpansi|hp700|hewlett packard 700/44 in HP-PCterm mode, 4814 am, eo, xenl, xon, 4815 cols#80, lines#25, 4816 acsc=j\331k\277l\332m\300n\305q\304t\303u\264v\301w\302x\263, 4817 bel=^G, cbt=\E[Z, civis=\E[?25l, clear=\E[2J\E[H, 4818 cnorm=\E[?25h, cr=^M, cub1=\E[D, cud1=\E[B, cuf1=\E[C, 4819 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, dch1=\E[P, dl1=\E[M, 4820 ed=\E[J, el=\E[K, home=\E[H, ht=^I, ich1=\E[@, il1=\E[L, 4821 ind=^J, 4822 is2=\E[44"p\E[?7h\E[>10h\E[>12h\EP1;1|3/7F\E\\, 4823 kbs=^H, kcbt=\E[Z, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, 4824 kcuu1=\E[A, kend=\E[4~, kf1=\E[17~, kf10=\E[28~, 4825 kf2=\E[18~, kf3=\E[19~, kf4=\E[20~, kf5=\E[21~, kf6=\E[23~, 4826 kf7=\E[24~, kf8=\E[25~, kf9=\E[26~, khome=\E[1~, knp=\E[6~, 4827 kpp=\E[5~, rmam=\E[?7l, 4828 rmsc=\E[>11l\EP1**x0/11;1/13\E[m\E\\, rmso=\E[m, 4829 rmul=\E[m, sgr0=\E[m, smam=\E[?7h, 4830 smsc=\E[>11h\EPO**x0/65;1/67\E\\$<250>, smso=\E[7m, 4831 smul=\E[4m, xoffc=g, xonc=e, 4832# 4833# (hp2392: copied <rmir> here from hpex -- esr) 4834hp2392|239x series, 4835 cols#80, 4836 cbt=\Ei, cup=\E&a%p1%dy%p2%dC, kf1=\Ep\r, kf2=\Eq\r, 4837 kf3=\Er\r, kf4=\Es\r, kf5=\Et\r, kf6=\Eu\r, kf7=\Ev\r, 4838 kf8=\Ew\r, khome=\Eh, kind=\EU, knp=\Eu, kpp=\Ev, kri=\EV, 4839 rmir=\ER, rmul=\E&d@, smir=\EQ, smul=\E&dD, vpa=\E&a%p1%dY, 4840 use=hpsub, 4841 4842hpsub|hp terminals -- capability subset, 4843 am, da, db, mir, xhp, xon, 4844 lines#24, 4845 bel=^G, clear=\EH\EJ, cr=^M, cub1=^H, cud1=\EB, cuf1=\EC, 4846 cuu1=\EA, dch1=\EP, dl1=\EM, ed=\EJ, el=\EK, hpa=\E&a%p1%dC, 4847 ht=^I, if=/usr/share/tabset/stdcrt, il1=\EL, ind=^J, 4848 is2=\E&s1A\E<\E&k0\\, kbs=^H, kcub1=\ED, kcud1=\EB, 4849 kcuf1=\EC, kcuu1=\EA, khome=\Eh, rmkx=\E&s0A, rmso=\E&d@, 4850 sgr0=\E&d@, smkx=\E&s1A, smso=\E&dB, 4851 4852# hpex: 4853# May be used for most 24 x 80 hp terminals, 4854# but has no padding added, so may allow runover in some terminals at high 4855# baud rates. Will not work for hp2640a or hp2640b terminals, hp98x6 and 4856# hp98x5 terminal emulators or hp98x6 consoles. 4857# Adds xy-cursor addressing, vertical cursor addressing, home, 4858# last line, and underline capabilities. 4859# 4860# (hpex: removed memory-lock capabilities ":ml=\El:mu=\Em:", 4861# moved <rmir> here from hpsub -- esr) 4862hpex|hp extended capabilites, 4863 cr=^M, cud1=^J, cup=\E&a%p1%dy%p2%dC, ht=^I, ind=^J, kbs=^H, 4864 kcub1=^H, kcud1=^J, nel=^M^J, rmir=\ER, rmul=\E&d@, smir=\EQ, 4865 smul=\E&dD, vpa=\E&a%p1%dY, use=hpsub, 4866 4867# From: Ville Sulko <Ville.Sulko@bip.atk.tpo.fi>, 05 Aug 1996 4868hp2|hpex2|hewlett-packard extended capabilities newer version, 4869 am, da, db, mir, xhp, 4870 cols#80, lh#2, lines#24, lm#0, lw#8, nlab#8, xmc#0, 4871 bel=^G, clear=\E&a0y0C\EJ, cr=^M, cub1=^H, cud1=\EB, 4872 cuf1=\EC, cup=\E&a%p1%dy%p2%dC, cuu1=\EA, dch1=\EP, 4873 dl1=\EM, ed=\EJ, el=\EK, hpa=\E&a%p1%dC, ht=^I, hts=\E1, 4874 il1=\EL, ind=^J, kbs=^H, kclr=\EJ, kctab=\E2, kcub1=\ED, 4875 kcud1=\EB, kcuf1=\EC, kcuu1=\EA, kdch1=\EP, kdl1=\EM, 4876 ked=\EJ, kel=\EK, kf1=\Ep, kf2=\Eq, kf3=\Er, kf4=\Es, kf5=\Et, 4877 kf6=\Eu, kf7=\Ev, kf8=\Ew, khome=\Eh, khts=\E1, kich1=\EQ, 4878 kil1=\EL, kind=\ES, kll=\EF, knp=\EU, kpp=\EV, kri=\ET, 4879 krmir=\ER, ktbc=\E3, meml=\El, memu=\Em, 4880 pfkey=\E&f%p1%dk%p2%l%dL%p2%s, 4881 pfloc=\E&f1a%p1%dk%p2%l%dL%p2%s, 4882 pfx=\E&f2a%p1%dk%p2%l%dL%p2%s, 4883 pln=\E&f%p1%dk%p2%l%dd0L%p2%s, rmir=\ER, rmkx=\E&s0A, 4884 rmln=\E&j@, rmso=\E&d@, rmul=\E&d@, 4885 sgr=\E&d%?%p7%t%{115}%c%;%p1%p3%|%p6%|%{2}%*%p2%{4}%*%+%p4%+%p5%{8}%*%+%{64}%+%c%?%p9%t%'\016'%c%e%'\017'%c%;, 4886 sgr0=\E&d@, smir=\EQ, smkx=\E&s1A, smln=\E&jB, smso=\E&dB, 4887 smul=\E&dD, tbc=\E3, vpa=\E&a%p1%dY, 4888 4889# HP 236 console 4890# From: <ddavis@ic.berkeley.edu> 4891hp236|hp236 internal terminal emulator, 4892 OTbs, am, 4893 cols#80, lines#24, 4894 clear=\EF, cnorm=\EDE, cub1=^H, 4895 cup=\EE%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, cvvis=\EDB, 4896 dch1=\EJ, dl1=\EH, el=\EK, ich1=\EI, il1=\EG, rmso=\ECI, 4897 sgr0=\ECI, smso=\EBI, 4898 4899# This works on a hp300 console running Utah 4.3 BSD 4900# From: Craig Leres <leres@okeeffe.berkeley.edu> 4901hp300h|HP Catseye console, 4902 OTbs, am, da, db, mir, xhp, 4903 cols#128, lines#51, lm#0, xmc#0, 4904 bel=^G, cbt=\Ei, clear=\E&a0y0C\EJ, cr=^M, cub1=^H, cud1=\EB, 4905 cuf1=\EC, cup=\E&a%p1%dy%p2%dC, cuu1=\EA, dch1=\EP, 4906 dl1=\EM, ed=\EJ, el=\EK, hpa=\E&a%p1%dC, ht=^I, 4907 if=/usr/share/tabset/stdcrt, il1=\EL, ind=^J, kbs=^H, 4908 kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, khome=\Eh, 4909 rmir=\ER, rmkx=\E&s0A, rmso=\E&d@, rmul=\E&d@, sgr0=\E&d@, 4910 smir=\EQ, smkx=\E&s1A, smso=\E&dB, smul=\E&dD, tbc=\E3, 4911 vpa=\E&a%p1%dY, 4912# From: Greg Couch <gregc@ernie.berkeley.edu> 4913hp9837|hp98720|hp98721|HP 9000/300 workstations, 4914 OTbs, am, da, db, mir, xhp, 4915 cols#128, it#8, lines#46, lm#0, 4916 bel=^G, cbt=\Ei, clear=\E&a0y0C\EJ, cub1=^H, cud1=\EB, 4917 cuf1=\EC, cup=\E&a%p1%dy%p2%dC, cuu1=\EA, dch1=\EP, 4918 dl1=\EM, ed=\EJ, el=\EK, hpa=\E&a%p1%dC, ht=^I, hts=\E1, 4919 il1=\EL, ind=^J, is2=\E&v0m1b0i&j@, kbs=^H, kcub1=\ED, 4920 kcud1=\EB, kcuf1=\EC, kcuu1=\EA, kdch1=\EP, kdl1=\EM, 4921 ked=\EJ, kel=\EK, khome=\Eh, kich1=\EQ, kil1=\EL, knp=\EU, 4922 kpp=\EV, rmir=\ER, rmkx=\E&s0A, rmso=\E&v0S, rmul=\E&d@, 4923 sgr0=\E&d@, smir=\EQ, smkx=\E&s1A, smso=\E&v5S, smul=\E&dD, 4924 tbc=\E3, vpa=\E&a%p1%dY, 4925# HP 9845 desktop computer from BRL 4926# (hp9845: removed unknown capability :gu: -- esr) 4927hp9845|HP 9845, 4928 OTbs, am, da, db, eo, mir, xhp, 4929 cols#80, lines#21, 4930 OTbc=\ED, clear=\EH\EJ, cuf1=\EC, cup=\E&a%p2%2dc%p1%2dY, 4931 cuu1=\EA, dch1=\EP, dl1=\EM, ed=\EJ, el=\EK, 4932 if=/usr/share/tabset/std, il1=\EL, rmir=\ER, rmso=\E&d@, 4933 smir=\EQ, smso=\E&dB, 4934# From: Charles A. Finnell of MITRE <finnell@mitre.org>, developed 07SEP90 4935# (hp98550: replaced /usr/share/tabset/9837 with std because <it#8>,<hts=\E1>; 4936# added empty <acsc> to avoid warnings re <smacs>/<rmacs> --esr) 4937hp98550|hp98550a|HP 9000 Series 300 color console, 4938 OTbs, am, da, db, mir, xhp, 4939 cols#128, it#8, lines#49, lm#0, 4940 acsc=, bel=^G, blink=\E&dA, bold=\E&dJ, cbt=\Ei, civis=\E*dR, 4941 clear=\EH\EJ, cnorm=\E*dQ, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 4942 cup=\E&a%p1%dy%p2%dC, cuu1=\EA, dch1=\EP, dim=\E&dH, 4943 dl1=\EM, ed=\EJ, el=\EK, hpa=\E&a%p1%dC, ht=^I, hts=\E1, 4944 if=/usr/share/tabset/std, il1=\EL, ind=^J, invis=\E&ds, 4945 kbs=^H, kclr=\EJ, kctab=\E2, kcub1=\ED, kcud1=\EB, kcuf1=\EC, 4946 kcuu1=\EA, kdch1=\EP, kdl1=\EM, ked=\EJ, kel=\EK, kf1=\Ep, 4947 kf2=\Eq, kf3=\Er, kf4=\Es, kf5=\Et, kf6=\Eu, kf7=\Ev, kf8=\Ew, 4948 khome=\Eh, khts=\E1, kich1=\EQ, kil1=\EL, kind=\ES, kll=\EF, 4949 knp=\EU, kpp=\EV, kri=\ET, krmir=\ER, ktbc=\E3, rev=\E&dJ, 4950 rmacs=^O, rmir=\ER, rmkx=\E&s0A, rmso=\E&d@, rmul=\E&d@, 4951 sgr0=\E&d@, smacs=^N, smir=\EQ, smkx=\E&s1A, smso=\E&dJ, 4952 smul=\E&dD, tbc=\E3, vpa=\E&a%p1%dY, 4953# From: Victor Duchovni <vic@fine.princeton.edu> 4954# (hp700-wy: removed obsolete ":nl=^J:"; 4955# replaced /usr/share/tabset/hp700-wy with std because <it#8>,<hts=\E1> -- esr) 4956hp700-wy|HP700/41 emulating wyse30, 4957 OTbs, am, bw, mir, msgr, 4958 cols#80, it#8, lines#24, xmc#1, 4959 cbt=\EI, clear=^Z, cr=^M, cub1=^H, cud1=^V, cuf1=^L, 4960 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW, 4961 dl1=\ER, ed=\EY, el=\ET$<10/>, home=^^, ht=^I, hts=\E1, 4962 if=/usr/share/tabset/stdcrt, il1=\EE$<0.7*/>, 4963 is1=\E~"\EC\Er\E(\EG0\003\E`9\E`1, kbs=\177, kcbt=\EI, 4964 kclr=^Z, kcub1=^H, kcud1=^V, kcuf1=^L, kcuu1=^K, ked=\EY, 4965 kel=\ET, khome=^^, khts=\EI, kich1=\Eq, krmir=\Er, ll=^^^K, 4966 ri=\Ej, rmir=\Er, rmso=\EG0$<10/>, rmul=\EG0$<10/>, 4967 sgr0=\EG0$<10/>, smir=\Eq, smso=\EG4$<10/>, 4968 smul=\EG8$<10/>, tbc=\E0, vpa=\E[%p1%{32}%+%c, 4969hp70092|hp70092a|hp70092A|HP 700/92, 4970 am, da, db, xhp, 4971 cols#80, lh#2, lines#24, lm#0, lw#8, nlab#8, 4972 acsc=0cjgktlrmfn/q\,t5u6v8w7x., bel=^G, blink=\E&dA, 4973 bold=\E&dB, cbt=\Ei, clear=\E&a0y0C\EJ, cr=^M, cub1=^H, 4974 cud1=\EB, cuf1=\EC, cup=\E&a%p1%dy%p2%dC, cuu1=\EA, 4975 dch1=\EP, dim=\E&dH, dl1=\EM, el=\EK, hpa=\E&a%p1%dC, ht=^I, 4976 hts=\E1, il1=\EL, kbs=^H, kclr=\EJ, kctab=\E2, kcub1=\ED, 4977 kcud1=\EB, kcuf1=\EC, kcuu1=\EA, kdch1=\EP, kdl1=\EM, 4978 ked=\EJ, kel=\EK, kf1=\Ep, kf2=\Eq, kf3=\Er, kf4=\Es, kf5=\Et, 4979 kf6=\Eu, kf7=\Ev, kf8=\Ew, khome=\Eh, khts=\E1, kich1=\EQ, 4980 kil1=\EL, kind=\ES, kll=\EF, knp=\EU, kpp=\EV, kri=\ET, 4981 krmir=\ER, ktbc=\E3, rev=\E&dB, ri=\ET, rmacs=^O, rmir=\ER, 4982 rmkx=\E&s0A, rmln=\E&j@, rmso=\E&d@, rmul=\E&d@, 4983 sgr0=\E&d@, smacs=^N, smir=\EQ, smkx=\E&s1A, smln=\E&jB, 4984 smso=\E&dJ, smul=\E&dD, tbc=\E3, vpa=\E&a%p1%dY, 4985 4986bobcat|sbobcat|HP 9000 model 300 console, 4987 am, da, db, mir, xhp, 4988 cols#128, it#8, lines#47, xmc#0, 4989 cbt=\Ei, clear=\EH\EJ, cr=^M, cub1=^H, cud1=\EB, cuf1=\EC, 4990 cup=\E&a%p1%dy%p2%dC$<6/>, cuu1=\EA, dch1=\EP, 4991 dl1=\EM$<10*/>, ed=\EJ, el=\EK, hpa=\E&a%p1%dC$<6/>, ht=^I, 4992 il1=\EL$<10*/>, ind=^J, kbs=^H, kcub1=\ED, kcud1=\EB, 4993 kcuf1=\EC, kcuu1=\EA, khome=\Eh, nel=^M^J, rmir=\ER, 4994 rmkx=\E&s0A, rmso=\E&d@, rmul=\E&d@, sgr0=\E&d@, smir=\EQ, 4995 smkx=\E&s1A, smso=\E&dB, smul=\E&dD, vpa=\E&a%p1%dY$<6/>, 4996gator-t|HP 9000 model 237 emulating extra-tall AAA, 4997 lines#94, use=gator, 4998gator|HP 9000 model 237 emulating AAA, 4999 bw, km, mir, ul, 5000 cols#128, it#8, lines#47, 5001 bel=^G, cbt=\E[Z, clear=\E[H\E[J, cr=^M, cub1=^H, cud1=^J, 5002 cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu1=\EM, 5003 dch=\E[%p1%dP$<4/>, dch1=\E[P, dl=\E[%p1%dM$<1*/>, 5004 dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, hpa=\E[%i%p1%d`, 5005 ht=^I, ich=\E[%p1%d@$<4/>, ich1=\E[@, il=\E[%p1%dL$<1*/>, 5006 il1=\E[L, kbs=^H, kcub1=^H, kcud1=^J, nel=^M^J, 5007 rep=%p1%c\E[%p2%db$<1*/>, rev=\E[7m, rmso=\E[m, 5008 rmul=\E[m, sgr0=\E[m, smso=\E[7m, smul=\E[4m, 5009gator-52|HP 9000 model 237 emulating VT52, 5010 cols#128, lines#47, use=vt52, 5011gator-52t|HP 9000 model 237 emulating extra-tall VT52, 5012 lines#94, use=gator-52, 5013 5014#### Honeywell-Bull 5015# 5016# From: Michael Haardt <michael@gandalf.moria> 11 Jan 93 5017# 5018 5019# Honeywell Bull terminal. Its cursor and function keys send single 5020# control characters and it has standout/underline glitch. Most programs 5021# do not like these features/bugs. Visual bell is realized by flashing the 5022# "keyboard locked" LED. 5023dku7003-dumb|Honeywell Bull DKU 7003 dumb mode, 5024 cols#80, lines#25, 5025 clear=^]^_, cr=^M, cub1=^Y, cud1=^K, cuf1=^X, 5026 cup=\E[%i%p1%d;%p2%dH, cuu1=^Z, ed=^_, el=\E[K, 5027 flash=\E[2h\E[2l, home=^], ht=^I, ind=^J, kbs=^H, kcub1=^Y, 5028 kcud1=^K, kcuf1=^X, kcuu1=^Z, khome=^], nel=^M^J, 5029dku7003|Honeywell Bull DKU 7003 all features described, 5030 msgr, 5031 xmc#1, 5032 blink=\E[5m, bold=\E[7m, dim=\E[2m, rev=\E[7m, rmso=\E[m, 5033 rmul=\E[m, sgr0=\E[m, smso=\E[7m, smul=\E[4m, 5034 use=dku7003-dumb, 5035 5036#### Lear-Siegler (adm) 5037# 5038# These guys are long since out of the terminals business, but 5039# in 1995 many current terminals still have an adm type as one of their 5040# emulations (usually their stupidest, and usually labeled adm3, though 5041# these `adm3' emulations normally have adm3a+ capabilities). 5042# 5043# WARNING: Some early ADM terminals (including the ADM3 and ADM5) had a 5044# `diagnostic feature' that sending them a ^G while pin 22 (`Ring Indicator') 5045# was being held to ground would trigger a send of the top line on the screen. 5046# A quick fix might be to drop back to a cheesy 4-wire cable with pin 22 5047# hanging in the air. (Thanks to Eric Fischer, <eric@fudge.uchicago.edu>, 5048# for clearing up this point.) 5049 5050adm1a|adm1|lsi adm1a, 5051 am, 5052 cols#80, lines#24, 5053 bel=^G, clear=\E;$<1>, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 5054 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, home=^^, 5055 ind=^J, 5056adm2|lsi adm2, 5057 OTbs, am, 5058 cols#80, lines#24, 5059 bel=^G, clear=\E;, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 5060 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW, 5061 dl1=\ER, ed=\EY, el=\ET, home=^^, ich1=\EQ, il1=\EE, ind=^J, 5062 kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, khome=^^, 5063# (adm3: removed obsolete ":ma=^K^P:" -- esr) 5064adm3|lsi adm3, 5065 OTbs, am, 5066 cols#80, lines#24, 5067 bel=^G, clear=^Z, cr=^M, cub1=^H, cud1=^J, ind=^J, 5068# The following ADM-3A switch settings are assumed for normal operation: 5069# SPACE U/L_DISP CLR_SCRN 24_LINE 5070# CUR_CTL LC_EN AUTO_NL FDX 5071# Other switches may be set for operator convenience or communication 5072# requirements. I recommend 5073# DISABLE_KB_LOCK LOCAL_OFF 103 202_OFF 5074# ETX_OFF EOT_OFF 5075# Most of these terminals required an option ROM to support lower case display. 5076# Open the case and look at the motherboard; if you see an open 24-pin DIP 5077# socket, you may be out of luck. 5078# 5079# (adm3a: some capabilities merged in from BRl entry -- esr) 5080adm3a|lsi adm3a, 5081 OTbs, am, 5082 cols#80, lines#24, 5083 OTma=^K^P, OTnl=^J, bel=^G, clear=\032$<1/>, cr=^M, cub1=^H, 5084 cud1=^J, cuf1=^L, cup=\E=%p1%{32}%+%c%p2%{32}%+%c, 5085 cuu1=^K, home=^^, ind=^J, kcub1=^H, kcud1=^J, kcuf1=^L, 5086 kcuu1=^K, rs2=^N, 5087adm3a+|adm3a plus, 5088 kbs=^H, use=adm3a, 5089# (adm5: removed obsolete ":ma=^Hh^Jj^Kk^Ll^^H:" & duplicate ":do=^J:" -- esr) 5090adm5|lsi adm5, 5091 xmc#1, 5092 bel=^G, cr=^M, cud1=^J, ed=\EY, el=\ET, kbs=^H, khome=^^, 5093 rmso=\EG, smso=\EG, use=adm3a+, 5094# A lot of terminals other than adm11s use these. Wherever you see 5095# use=adm+sgr with some of its capabilities disabled, try the 5096# disabled ones. They may well work but not have been documented or 5097# expressed in the using entry. We'd like to cook up an <sgr> but the 5098# <rmacs>/<smacs> sequences of the using entries vary too much. 5099adm+sgr|adm style highlight capabilities, 5100 invis=\EG1, rev=\EG4, rmso=\EG0, rmul=\EG0, sgr0=\EG0, 5101 smso=\EG4, smul=\EG8, 5102# LSI ADM-11 from George William Hartwig, Jr. <geo@BRL-TGR.ARPA> via BRL 5103# Status line additions from Stephen J. Muir <stephen%comp.lancs.ac.uk@ucl-cs> 5104# <khome> from <stephen%comp.lancs.ac.uk@ucl-cs.arpa>. <clear> could also 5105# be ^Z, according to his entry. 5106# (adm11: <smul>=\EG4 was obviously erroneous because it also said 5107# <rev>=\EG4. Looking at other ADMs confirms this -- esr) 5108adm11|LSI ADM-11, 5109 OTbs, am, hs, 5110 OTkn#8, cols#80, lines#24, 5111 OTnl=^J, bel=^G, blink=\EG2, clear=\E*, cr=^M, cub1=^H, 5112 cud1=^J, cuf1=^L, cup=\E=%p1%{32}%+%c%p2%{32}%+%c, 5113 cuu1=^K, dsl=\Eh, ed=\EY, el=\ET, fsl=\E(\r, home=^^, ht=^I, 5114 kbs=^H, kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, kf1=^A@\r, 5115 kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, 5116 kf7=^AF\r, kf8=^AG\r, khome=^^, nel=^M^J, tsl=\EF\E), 5117 use=adm+sgr, 5118# From: Andrew Scott Beals <bandy@lll-crg.ARPA> 5119# Corrected by Olaf Siebert <rhialto@polder.ubc.kun.nl>, 11 May 1995 5120# Supervisor mode info by Ari Wuolle, <awuolle@delta.hut.fi>, 27 Aug 1996 5121# (adm12: removed obsolete ":kn:ma=j^Jk^P^K^Pl ^R^L^L :". This formerly had 5122# <is2>=\Eq but that looked wrong; this <is2> is from Dave Yost <esquire!yost> 5123# via BRL. That entry asserted <xmc#1>, but I've left that out because 5124# neither earlier nor later ADMSs have it -- esr) 5125# 5126# You will need to get into the supervisor setup before you can set 5127# baudrate etc. for your ADM-12+. Press Shift-Ctrl-Setup and you should 5128# see a lot more setup options. 5129# 5130# While in supervisor setup you can also use following codes: 5131# 5132# Ctrl-P Personality character selections (configure for example what 5133# arrow keys send, if I recall correctly) 5134# Ctrl-T tabs 1-80 use left&right to move and up to set and 5135# Ctrl-V tabs 81-158 down to clear tab. Shift-Ctrl-M sets right margin at cursor 5136# Ctrl-B Binary setup (probably not needed. I think that everything can 5137# be set using normal setup) 5138# Ctrl-A Answerback mode (enter answerback message) 5139# Ctrl-U User friendly mode (normal setup) 5140# Ctrl-D Defaults entire setup and function keys from EPROM tables 5141# Ctrl-S Save both setup and functions keys. Takes from 6 to 10 seconds. 5142# Ctrl-R Reads both setup and functions keys from NVM. 5143# Shift-Ctrl-X Unlock keyboard and cancel received X-OFF status 5144# 5145# ADM-12+ supports hardware handshaking, but it is DTR/CTS as opposed to 5146# RTS/CTS used nowadays with virtually every modem and computer. 19200 5147# bps works fine with hardware flow control. 5148# 5149# The following null-modem cable should fix this and enable you to use 5150# RTS/CTS handshaking (which Linux supports, use CRTSCTS setting). Also 5151# set ADM-12+ for DTR handshaking from supervisor setup. 5152# 5153# PC Serial ADM-12+ 5154# -------- ------- 5155# 2 - 3 5156# 3 - 2 5157# 4 - 5 5158# 5 - 20 5159# 6,8 - 4 5160# 7 - 7 5161# 20 - 6,8 5162# 5163adm12|lsi adm12, 5164 OTbs, OTpt, am, mir, 5165 OTug#1, cols#80, it#8, lines#24, 5166 bel=^G, clear=^Z, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 5167 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW, 5168 dl1=\ER, ed=\EY, el=\ET, home=^^, hts=\E1, ich1=\EQ, il1=\EE, 5169 is2=\E0 \E1 \E1 \E1 \E1 \E1 \E1 \E1 \E1, 5170 kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, kf0=^A0\r, kf1=^A1\r, 5171 kf2=^A2\r, kf3=^A3\r, kf4=^A4\r, kf5=^A5\r, kf6=^A6\r, 5172 kf7=^A7\r, kf8=^A8\r, kf9=^A9\r, rmir=\Er, smir=\Eq, tbc=\E0, 5173 use=adm+sgr, 5174# (adm20: removed obsolete ":kn#7:" -- esr) 5175adm20|lear siegler adm20, 5176 OTbs, am, 5177 cols#80, it#8, lines#24, 5178 bel=^G, cbt=\EI, clear=^Z, cr=^M, cub1=^H, cuf1=^L, 5179 cup=\E=%i%p2%{31}%+%c%p1%{31}%+%c, cuu1=^K, dch1=\EW, 5180 dl1=\ER, ed=\EY, el=\ET, home=^^, ht=^I, ich1=\EQ, il1=\EE, 5181 kf1=^A, kf2=^B, kf3=^W, kf4=^D, kf5=^E, kf6=^X, kf7=^Z, rmso=\E(, 5182 sgr0=\E(, smso=\E), 5183adm21|lear siegler adm21, 5184 xmc#1, 5185 bel=^G, cr=^M, cud1=^J, dch1=\EW, dl1=30*\ER, ed=\EY, el=\ET, 5186 ich1=\EQ, il1=30*\EE, ind=^J, invis@, kbs=^H, kcub1=^H, 5187 kcud1=^J, kcuf1=^L, kcuu1=^K, khome=^^, use=adm+sgr, 5188 use=adm3a, 5189# (adm22: ":em=:" was an obvious typo for ":ei=:"; also, 5190# removed obsolete ":kn#7:ma=j^Jk^P^K^Pl ^R^L^L :"; 5191# removed bogus-looking \200 from before <cup>. -- esr) 5192adm22|lsi adm22, 5193 OTbs, am, 5194 cols#80, lines#24, 5195 bel=^G, cbt=\EI, clear=\E+, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 5196 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW, 5197 dl1=\ER, ed=\Ey, el=\Et, home=^^, ht=\Ei, ich1=\EQ, il1=\EE, 5198 is2=\E%\014\014\014\016\003\0\003\002\003\002\0\0\0\0\0\0\0\0\0\0\0, 5199 kbs=^H, kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, kf1=^A@\r, 5200 kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, 5201 kf7=^AF\r, khome=^^, lf1=F1, lf2=F2, lf3=F3, lf4=F4, lf5=F5, 5202 lf6=F6, lf7=F7, rmso=\E(, sgr0=\E(, smso=\E), 5203# ADM 31 DIP Switches 5204# 5205# This information comes from two versions of the manual for the 5206# Lear-Siegler ADM 31. 5207# 5208# Main board: 5209# rear of case 5210# +-||||-------------------------------------+ 5211# + S1S2 ||S + 5212# + ||3 + 5213# + + 5214# + ||S + 5215# + ||4 + 5216# + + 5217# + + 5218# + + 5219# + + 5220# + + 5221# +-+ +-+ 5222# + + 5223# + S5 S6 S7 + 5224# + == == == + 5225# +----------------------------------------------+ 5226# front of case (keyboard) 5227# 5228# S1 - Data Rate - Modem 5229# S2 - Data Rate - Printer 5230# ------------------------ 5231# Data Rate Setting 5232# ------------------- 5233# 50 0 0 0 0 5234# 75 1 0 0 0 5235# 110 0 1 0 0 5236# 134.5 1 1 0 0 5237# 150 0 0 1 0 5238# 300 1 0 1 0 5239# 600 0 1 1 0 5240# 1200 1 1 1 0 5241# 1800 0 0 0 1 5242# 2000 1 0 0 1 5243# 2400 0 1 0 1 5244# 3600 1 1 0 1 5245# 4800 0 0 1 1 5246# 7200 1 0 1 1 5247# 9600 0 1 1 1 5248# x 1 1 1 1 5249# 5250# S3 - Interface/Printer/Attributes 5251# --------------------------------- 5252# Printer Busy Control 5253# sw1 sw2 sw3 5254# --------------- 5255# off off off Busy not active, CD disabled 5256# off off on Busy not active, CD enabled 5257# off on off Busy active on J5-20, CD disabled 5258# on off off Busy active on J5-19, CD disabled - Factory Set. 5259# on off on Busy active on J5-19, CD enabled 5260# 5261# sw4 Used in conjuction with S4 for comm interface control - Fact 0 5262# 5263# sw5 Secondary Channel Control (Hardware implementation only) - Fact 0 5264# 5265# sw6 ON enables printer BUSY active LOW - Factory Setting 5266# OFF enables printer BUSY active HIGH - If set to this, ADM31 senses 5267# 5268# sw7 ON - steady cursor - Factory Setting 5269# OFF - blinking cursor 5270# 5271# sw8 ON causes selected attribute character to be displayed 5272# OFF causes SPACE to be displayed instead - Factory Setting 5273# 5274# S4 - Interface 5275# -------------- 5276# Modem Interface 5277# S3 S4 S4 S4 S4 5278# sw4 sw1 sw2 sw3 sw4 5279# --------------------------- 5280# OFF ON OFF ON OFF Enable RS-232C interface, Direct Connect and 5281# Current Loop disabled - Factory Setting 5282# ON ON OFF ON OFF Enable Current Loop interface, Direct Connect 5283# disabled 5284# OFF OFF ON OFF ON Enable Direct Connect interface, RS-232C and 5285# Current Loop Disabled 5286# 5287# sw5 ON disables dot stretching mode - Factory Setting 5288# OFF enables dot stretching mode 5289# sw6 ON enables blanking function 5290# OFF enables underline function - Factory Setting 5291# sw7 ON causes NULLS to be displayed as NULLS 5292# OFF causes NULLS to be displayed as SPACES - Factory Setting 5293# 5294# S5 - Word Structure 5295# ------------------- 5296# sw1 ON enables BREAK key - Factory Setting 5297# OFF disables BREAK key 5298# sw2 ON selects 50Hz monitor refresh rate 5299# OFF selects 60Hz monitor refresh rate - Factory Setting 5300# 5301# Modem Port Selection 5302# sw3 sw4 sw5 5303# --------------- 5304# ON ON ON Selects 7 DATA bits, even parity, 2 STOP bits 5305# OFF ON ON Selects 7 DATA bits, odd parity, 2 STOP bits 5306# ON OFF ON Selects 7 DATA bits, even parity, 1 STOP bit - Factory Set. 5307# OFF OFF ON Selects 7 DATA bits, odd parity, 1 STOP bit 5308# ON ON OFF Selects 8 DATA bits, no parity, 2 STOP bits 5309# OFF ON OFF Selects 8 DATA bits, no parity, 1 STOP bit 5310# ON OFF OFF Selects 8 DATA bits, even parity, 1 STOP bit 5311# OFF OFF OFF Selects 8 DATA bits, odd parity, 1 STOP bit 5312# 5313# sw6 ON sends bit 8 a 1 (mark) 5314# OFF sends bit 8 as 0 (space) - Factory Setting 5315# sw7 ON selects Block Mode 5316# OFF selects Conversation Mode - Factory Setting 5317# sw8 ON selects Full Duplex operation 5318# OFF selects Half Duplex operation - Factory Setting 5319# 5320# S6 - Printer 5321# ------------ 5322# sw1, sw2, sw6, sw7 Reserved - Factory 0 5323# 5324# Printer Port Selection 5325# same as Modem above, bit 8 (when 8 DATA bits) is always = 0 5326# 5327# sw8 ON enables Printer Port 5328# OFF disables Printer Port - Factory Setting 5329# 5330# S7 - Polling Address 5331# -------------------- 5332# sw1-7 Establish ASCII character which designates terminal polling address 5333# ON = logic 0 5334# OFF = logic 1 - Factory Setting 5335# sw8 ON enables Polling Option 5336# OFF disables Polling Option - Factory Setting 5337# 5338# 5339# On some older adm31s, S4 does not exist, and S5-sw6 is not defined. 5340# 5341# This adm31 entry uses underline as the standout mode. 5342# If the adm31 gives you trouble with standout mode, check the DIP switch in 5343# position 6, bank @c11, 25% from back end of the circuit board. Should be 5344# OFF. If there is no such switch, you have an old adm31 and must use oadm31. 5345# (adm31: removed obsolete ":ma=j^Jk^P^K^Pl ^R^L^L :" -- esr) 5346adm31|lsi adm31 with sw6 set for underline mode, 5347 OTbs, am, mir, 5348 cols#80, lines#24, 5349 bel=^G, clear=\E*, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 5350 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW, 5351 dl1=\ER, ed=\EY, el=\ET, home=^^, il1=\EE, ind=^J, is2=\Eu\E0, 5352 kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, kf0=^A0\r, kf1=^A1\r, 5353 kf2=^A2\r, kf3=^A3\r, kf4=^A4\r, kf5=^A5\r, kf6=^A6\r, 5354 kf7=^A7\r, kf8=^A8\r, kf9=^A9\r, rmir=\Er, rmso=\EG0, 5355 rmul=\EG0, sgr0=\EG0, smir=\Eq, smso=\EG1, smul=\EG1, 5356adm31-old|o31|old adm31, 5357 rmul@, smso=\EG4, smul@, use=adm31, 5358# LSI ADM-36 from Col. George L. Sicherman <gloria!colonel> via BRL 5359adm36|LSI ADM36, 5360 OTbs, OTpt, 5361 OTkn#4, 5362 if=/usr/lib/tabset/vt100, 5363 is2=\E<\E>\E[6;?2;?7;?8h\E[4;20;?1;?3;?4;?5;?6;?18;?19l, 5364 use=vt100, 5365# (adm42: removed obsolete ":ma=^K^P:" -- esr) 5366adm42|lsi adm42, 5367 OTbs, am, 5368 cols#80, lines#24, 5369 bel=^G, cbt=\EI, clear=\E;, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 5370 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, 5371 cvvis=\EC\E3 \E3(, dch1=\EW, dl1=\ER, ed=\EY, el=\ET, ht=^I, 5372 il1=\EE$<270>, ind=^J, invis@, ip=$<6*>, kcub1=^H, kcud1=^J, 5373 kcuf1=^L, kcuu1=^K, khome=^^, pad=\177, rmir=\Er, rmul@, 5374 smir=\Eq, smul@, use=adm+sgr, 5375# The following termcap for the Lear Siegler ADM-42 leaves the 5376# "system line" at the bottom of the screen blank (for those who 5377# find it distracting otherwise) 5378adm42-ns|lsi adm-42 with no system line, 5379 cbt=\EI\EF \011, clear=\E;\EF \011, 5380 cup=\E=%p1%{32}%+%c%p2%{32}%+%c$<6>\EF \011, 5381 dch1=\EW\EF \011, dl1=\ER\EF \011, ed=\EY\EF \011, 5382 el=\ET\EF \011, il1=\EE\EF \011, rmir=\Er\EF \011, 5383 smir=\Eq\EF \011, use=adm42, 5384# ADM 1178 terminal -- rather like an ADM-42. Manual is dated March 1 1985. 5385# The insert mode of this terminal is commented out because it's broken for our 5386# purposes in that it will shift the position of every character on the page, 5387# not just the cursor line! 5388# From: Michael Driscoll <fenris@lightspeed.net> 10 July 1996 5389adm1178|1178|lsi adm1178, 5390 am, 5391 cols#80, lines#24, xmc#1, 5392 bel=^G, bold=\E(, cbt=\EI, clear=\E+, cr=^M, cub1=^H, cud1=^J, 5393 cuf1=^L, cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, 5394 cvvis=\EC\E3 \E3(, dch1=\EW, dl1=\ER, ed=\EY, el=\ET, 5395 home=^^, ht=^I, il1=\EE, ind=^J, ip=$<6*/>, kbs=^H, kcub1=^H, 5396 kcud1=^J, nel=^M^J, pad=\177, rev=\EG4, rmso=\EG0, rmul=\EG0, 5397 sgr0=\E), smso=\EG4, smul=\EG1, 5398 5399#### Prime 5400# 5401# Yes, Prime made terminals. These entries were posted by Kevin J. Cummings 5402# <cummings@primerd.prime.com> on 14 Dec 1992 and lightly edited by esr. 5403# Prime merged with ComputerVision in the late 1980s; you can reach them at: 5404# 5405# ComputerVision Services 5406# 500 Old Connecticut Path 5407# Framingham, Mass. 5408# 5409 5410# Standout mode is dim reverse-video. 5411pt100|pt200|wren|fenix|prime pt100/pt200, 5412 am, bw, mir, msgr, 5413 cols#80, it#8, lines#24, 5414 cbt=\E[Z, clear=\E?, cr=^M, cub=\E[%p1%dD, cub1=^H, 5415 cud=\E[%p1%dB, cud1=\ED, cuf=\E[%p1%dC, cuf1=\E[C, 5416 cup=\E0%p1%{33}%+%c%p2%{33}%+%c, cuu=\E[%p1%dA, 5417 cuu1=\EM, dch=\E[%p1%dP, dch1=\E[P, dim=\E[2m, dl1=\E[M, 5418 ed=\E[J\E[r, el=\E[K\E[t, flash=\E$$<200/>\E$P, 5419 home=\E$B, ht=^I, il1=\E[L\E[t, ind=^J, kbs=^H, kcub1=\E[D, 5420 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, khome=\E$A, nel=^M^J, 5421 rmcup=, rmir=\E[4l, rmkx=\E[>13l, rmso=\E[m, rmul=\E[m, 5422 sgr0=\E[m, 5423 smcup=\E[>1l\E[>2l\E[>16l\E[4l\E[>9l\E[20l\E[>3l\E[>7h\E[>12l\E[1Q, 5424 smir=\E[4h, smkx=\E[>13h, smso=\E[2;7m, smul=\E[4m, 5425pt100w|pt200w|wrenw|fenixw|prime pt100/pt200 in 132-column mode, 5426 cols#132, 5427 cup=\E[%i%p1%d;%p2%dH, use=pt100, 5428pt250|Prime PT250, 5429 rmso@, smso@, use=pt100, 5430pt250w|Prime PT250 in 132-column mode, 5431 rmso@, smso@, use=pt100w, 5432 5433#### Qume (qvt) 5434# 5435# Qume, Inc. 5436# 3475-A North 1st Street 5437# San Jose CA 95134 5438# Vox: (800)-457-4447 5439# Fax: (408)-473-1510 5440# Net: josed@techsupp.wyse.com (Jose D'Oliveira) 5441# 5442# Qume was bought by Wyse, but still (as of early 1995) has its own support 5443# group and production division. 5444# 5445# Discontinued Qume models: 5446# 5447# The qvt101 and qvt102 listed here are long obsolete; so is the qvt101+ 5448# built to replace them, and a qvt119+ which was a 101+ with available wide 5449# mode (132 columns). There was a qvt103 which added vt100/vt131 emulations 5450# and an ANSI-compatible qvt203 that replaced it. Qume started producing 5451# ANSI-compatible terminals with the qvt323 and qvt61. 5452# 5453# Current Qume models (as of February 1995): 5454# 5455# All current Qume terminals have ANSI-compatible operation modes. 5456# Qume is still producing the qvt62, which features emulations for other 5457# popular lines such as ADDS, and dual-host capabilities. The qvt82 is 5458# designed for use as a SCO ANSI terminal. The qvt70 is a color terminal 5459# with many emulations including Wyse370, Wyse 325, etc. Their newest 5460# model is the qvt520, which is vt420-compatible. 5461# 5462# There are some ancient printing Qume terminals under `Daisy Wheel Printers' 5463# 5464# If you inherit a Qume without docs, try Ctrl-Shift-Setup to enter its 5465# setup mode. Shift-s should be a configuration save to NVRAM. 5466 5467qvt101|qvt108|qume qvt 101 and QVT 108, 5468 xmc#1, use=qvt101+, 5469 5470# This used to have <cvvis=\E.2> but no <cnorm> or <civis>. The BSD termcap 5471# file had <cvvis=\EM4 \200\200\200>. I've done the safe thing and yanked 5472# both. The <rev> is from BSD, which also claimed bold=\E( and dim=\E). 5473# What seems to be going on here is that this entry was designed so that 5474# the normal highlight is bold and standout is dim plus something else 5475# (reverse-video maybe? But then, are there two <rev> sequences?) 5476qvt101+|qvt101p|qume qvt 101 PLUS product, 5477 am, bw, hs, ul, 5478 cols#80, lines#24, xmc#0, 5479 bel=^G, cbt=\EI, clear=^Z, cnorm=\E.4, cr=^M, cub1=^H, cud1=^J, 5480 cuf1=^L, cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, 5481 dch1=\EW, dl1=\ER, dsl=\Eg\Ef\r, ed=\EY, el=\ET, 5482 flash=\Eb$<200>\Ed, fsl=^M, home=^^, ht=^I, hts=\E1, 5483 ich1=\EQ, il1=\EE, ind=^J, invis@, kbs=^H, kcbt=\EI, kcub1=^H, 5484 kcud1=^J, kcuf1=^L, kcuu1=^K, kdl1=\ER, ked=\EY, kel=\ET, 5485 kf1=^A@\r, kf10=^AI\r, kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, 5486 kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, 5487 khome=^^, kich1=\EQ, kil1=\EE, mc4=\EA, mc5=\E@, rmso=\E(, 5488 smso=\E0P\E), tbc=\E3, tsl=\Eg\Ef, use=adm+sgr, 5489qvt102|qume qvt 102, 5490 cnorm=\E., use=qvt101, 5491# (qvt103: added <rmam>/<smam> based on init string -- esr) 5492qvt103|qume qvt 103, 5493 am, xenl, xon, 5494 cols#80, it#8, lines#24, vt#3, 5495 bel=^G, blink=\E[5m$<2>, bold=\E[1m$<2>, 5496 clear=\E[H\E[2J$<50>, cr=^M, csr=\E[%i%p1%d;%p2%dr, 5497 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=^J, 5498 cuf=\E[%p1%dC, cuf1=\E[C$<2>, 5499 cup=\E[%i%p1%d;%p2%dH$<5>, cuu=\E[%p1%dA, 5500 cuu1=\E[A$<2>, ed=\E[J$<50>, el=\E[K$<3>, home=\E[H, ht=^I, 5501 hts=\EH, ind=^J, kbs=^H, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, 5502 kcuu1=\EOA, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, rc=\E8, 5503 rev=\E[7m$<2>, ri=\EM$<5>, rmam=\E[?7l, rmkx=\E[?1l\E>, 5504 rmso=\E[m$<2>, rmul=\E[m$<2>, 5505 rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sc=\E7, 5506 sgr=\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;m, 5507 sgr0=\E[m$<2>, smam=\E[?7h, smkx=\E[?1h\E=, 5508 smso=\E[7m$<2>, smul=\E[4m$<2>, tbc=\E[3g, 5509qvt103-w|qume qvt103 132 cols, 5510 cols#132, lines#24, 5511 rs2=\E>\E[?3h\E[?4l\E[?5l\E[?8h, use=qvt103, 5512qvt119+|qvt119p|qvt119|qume qvt 119 and 119PLUS terminals, 5513 am, hs, mir, msgr, 5514 cols#80, lines#24, xmc#0, 5515 bel=^G, cbt=\EI, clear=\E*1, cnorm=\E.4, cr=^M, cub1=^H, 5516 cud1=^J, cuf1=^L, cup=\E=%p1%{32}%+%c%p2%{32}%+%c, 5517 cuu1=^K, cvvis=\E.2, dch1=\EW, dl1=\ER, dsl=\Eg\Ef\r, ed=\Ey, 5518 el=\Et, flash=\En0$<200>\En1, fsl=^M, home=^^, ht=^I, 5519 hts=\E1, il1=\EE, ind=^J, is2=\EDF\EC\EG0\Er\E(\E%EX, 5520 kbs=^H, kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, kf0=^AI\r, 5521 kf1=^A@\r, kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, 5522 kf6=^AE\r, kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, khome=^^, 5523 mc4=\EA, mc5=\E@, ri=\EJ, rmir=\Er, smir=\Eq, smul=\EG8, 5524 tbc=\E3, tsl=\Eg\Ef, use=adm+sgr, 5525qvt119+-25|qvt119p-25|QVT 119 PLUS with 25 data lines, 5526 lines#25, use=qvt119+, 5527qvt119+-w|qvt119p-w|qvt119-w|QVT 119 and 119 PLUS in 132 column mode, 5528 cols#132, 5529 is2=\EDF\EC\EG0\Er\E(\E%\EX\En4, use=qvt119+, 5530qvt119+-25-w|qvt119p-25-w|qvt119-25-w|QVT 119 and 119 PLUS 132 by 25, 5531 lines#25, use=qvt119+, 5532qvt203|qvt203+|qume qvt 203 Plus, 5533 dch1=\E[P$<7>, dl1=\E[M$<99>, il1=\E[L$<99>, ind=\n$<30>, 5534 ip=$<7>, kf0=\E[29~, kf1=\E[17~, kf2=\E[18~, kf3=\E[19~, 5535 kf4=\E[20~, kf5=\E[21~, kf6=\E[23~, kf7=\E[24~, kf8=\E[25~, 5536 kf9=\E[28~, rmir=\E[4l, smir=\E[4h, use=qvt103, 5537qvt203-w|qvt203-w-am|qume qvt 203 PLUS in 132 cols (w/advanced video), 5538 cols#132, lines#24, 5539 rs2=\E>\E[?3h\E[?4l\E[?5l\E[?8h, use=qvt203, 5540# 5541# Since a command is present for enabling 25 data lines, 5542# a specific terminfo entry may be generated for the 203. 5543# If one is desired for the QVT 119 PLUS then 25 lines must 5544# be selected in the status line (setup line 9). 5545# 5546qvt203-25|QVT 203 PLUS with 25 by 80 column mode, 5547 cols#80, lines#25, 5548 is2=\E[=40h\E[?3l, use=qvt203, 5549qvt203-25-w|QVT 203 PLUS with 25 by 132 columns, 5550 cols#132, lines#25, 5551 rs2=\E[?3h\E[=40h, use=qvt203, 5552 5553#### Televideo (tvi) 5554# 5555# TeleVideo 5556# 550 East Brokaw Road 5557# PO Box 49048 95161 5558# San Jose CA 95112 5559# Vox: (408)-954-8333 5560# Fax: (408)-954-0623 5561# 5562# 5563# There are some tvi terminals that require incredible amounts of padding and 5564# some that don't. I'm assuming tvi912 and tvi920 are the old slow ones, and 5565# tvi912b, tvi912c, tvi920b, tvi920c are the new ones that don't need padding. 5566# 5567# All of these terminals (912 to 970 and the tvipt) are discontinued. Newer 5568# Televideo terminals are ANSI and PC-ANSI compatible. 5569 5570tvi803|televideo 803, 5571 clear=\E*$<10>, use=tvi950, 5572 5573# Vanilla tvi910 -- W. Gish <cswarren@violet> 10/29/86 5574# Switch settings are: 5575# 5576# S1 1 2 3 4 5577# D D D D 9600 5578# D D D U 50 5579# D D U D 75 5580# D D U U 110 5581# D U D D 135 5582# D U D U 150 5583# D U U D 300 5584# D U U U 600 5585# U D D D 1200 5586# U D D U 1800 5587# U D U D 2400 5588# U D U U 3600 5589# U U D D 4800 5590# U U D U 7200 5591# U U U D 9600 5592# U U U U 19200 5593# 5594# S1 5 6 7 8 5595# U D X D 7N1 (data bits, parity, stop bits) (X means ignored) 5596# U D X U 7N2 5597# U U D D 7O1 5598# U U D U 7O2 5599# U U U D 7E1 5600# U U U U 7E2 5601# D D X D 8N1 5602# D D X U 8N2 5603# D U D D 8O1 5604# D U U U 8E2 5605# 5606# S1 9 Autowrap 5607# U on 5608# D off 5609# 5610# S1 10 CR/LF 5611# U do CR/LF when CR received 5612# D do CR when CR received 5613# 5614# S2 1 Mode 5615# U block 5616# D conversational 5617# 5618# S2 2 Duplex 5619# U half 5620# D full 5621# 5622# S2 3 Hertz 5623# U 50 5624# D 60 5625# 5626# S2 4 Edit mode 5627# U local 5628# D duplex 5629# 5630# S2 5 Cursor type 5631# U underline 5632# D block 5633# 5634# S2 6 Cursor down key 5635# U send ^J 5636# D send ^V 5637# 5638# S2 7 Screen colour 5639# U green on black 5640# D black on green 5641# 5642# S2 8 DSR status (pin 6) 5643# U disconnected 5644# D connected 5645# 5646# S2 9 DCD status (pin 8) 5647# U disconnected 5648# D duplex 5649# 5650# S2 10 DTR status (pin 20) 5651# U disconnected 5652# D duplex 5653# (tvi910: removed obsolete ":ma=^Kk^Ll^R^L:"; added <khome>, <cub1>, <cud1>, 5654# <ind>, <hpa>, <vpa>, <am>, <msgr> from SCO entry -- esr) 5655tvi910|televideo model 910, 5656 OTbs, am, msgr, 5657 cols#80, it#8, lines#24, xmc#1, 5658 bel=^G, cbt=\EI, clear=^Z, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 5659 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, ed=\EY, el=\ET, 5660 home=\E=\001\001, hpa=\E]%p1%{32}%+%c, ht=^I, 5661 if=/usr/share/tabset/stdcrt, ind=^J, invis@, kbs=^H, 5662 kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, kf0=^AI\r, kf1=^A@\r, 5663 kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, 5664 kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, khome=^^, 5665 vpa=\E[%p1%{32}%+%c, use=adm+sgr, 5666# From: Alan R. Rogers <rogers%albany@csnet-relay> 5667# as subsequently hacked over by someone at SCO 5668# (tvi910+: removed obsolete ":ma=^K^P^L :" -- esr) 5669# 5670# Here are the 910+'s DIP switches (U = up, D = down, X = don't care): 5671# 5672# S1 1 2 3 4: 5673# D D D D 9600 D D D U 50 D D U D 75 D D U U 110 5674# D U D D 135 D U D U 150 D U U D 300 D U U U 600 5675# U D D D 1200 U D D U 1800 U D U D 2400 U D U U 3600 5676# U U D D 4800 U U D U 7200 U U U D 9600 U U U U 19200 5677# 5678# S1 5 6 7 8: 5679# U D X D 7N1 U D X U 7N2 U U D D 7O1 U U D U 7O2 5680# U U U D 7E1 U U U U 7E2 D D X D 8N1 D D X U 8N2 5681# D U D D 8O1 D U U U 8E2 5682# 5683# S1 9 Autowrap (U = on, D = off) 5684# S1 10 CR/LF (U = CR/LF on CR received, D = CR on CR received) 5685# S2 1 Mode (U = block, D = conversational) 5686# S2 2 Duplex (U = half, D = full) 5687# S2 3 Hertz (U = 50, D = 60) 5688# S2 4 Edit mode (U = local, D = duplex) 5689# S2 5 Cursor type (U = underline, D = block) 5690# S2 6 Cursor down key (U = send ^J, D = send ^V) 5691# S2 7 Screen colour (U = green on black, D = black on green) 5692# S2 8 DSR status (pin 6) (U = disconnected, D = connected) 5693# S2 9 DCD status (pin 8) (U = disconnected, D = connected) 5694# S2 10 DTR status (pin 20) (U = disconnected, D = connected) 5695# 5696tvi910+|televideo 910+, 5697 dch1=\EW, dl1=\ER$<33*>, home=^^, ich1=\EQ, il1=\EE$<33*>, 5698 kf0=^A@\r, kf1=^AA\r, kf2=^AB\r, kf3=^AC\r, kf4=^AD\r, 5699 kf5=^AE\r, kf6=^AF\r, kf7=^AG\r, kf8=^AH\r, kf9=^AI\r, 5700 ll=\E=7\s, use=tvi910, 5701 5702# (tvi912: removed obsolete ":ma=^K^P^L :", added <flash> and 5703# <khome> from BRL entry -- esr) 5704tvi912|tvi914|tvi920|old televideo 912/914/920, 5705 OTbs, OTpt, am, msgr, 5706 cols#80, it#8, lines#24, xmc#1, 5707 bel=^G, clear=^Z, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 5708 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW, 5709 dl1=\ER$<33*>, ed=\Ey, el=\ET, flash=\Eb$<50/>\Ed, home=^^, 5710 ht=^I, hts=\E1, ich1=\EQ, if=/usr/share/tabset/stdcrt, 5711 il1=\EE$<33*>, ind=^J, kbs=^H, kcub1=^H, kcud1=^J, kcuf1=^L, 5712 kcuu1=^K, kf0=^AI\r, kf1=^A@\r, kf2=^AA\r, kf3=^AB\r, 5713 kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, kf8=^AG\r, 5714 kf9=^AH\r, khome=^^, rmso=\Ek, rmul=\Em, smso=\Ej, smul=\El, 5715 tbc=\E3, 5716# the 912 has a <funct> key that's like shift: <funct>8 xmits "^A8\r". 5717# The 920 has this plus real function keys that xmit different things. 5718# Terminfo makes you use the funct key on the 912 but the real keys on the 920. 5719tvi912c|tvi912b|new televideo 912, 5720 dl1=\ER$<5*>, il1=\EE$<5*>, use=tvi912, 5721# set to page 1 when entering curses application (\E-17 ) 5722# reset to page 0 when exiting curses application (\E-07 ) 5723tvi912-2p|tvi920-2p|tvi-2p|televideo w/2 pages, 5724 rmcup=\E-07\s, smcup=\E-17\s, use=tvi912, 5725# We got some new tvi912c terminals that act really weird on the regular 5726# termcap, so one of our gurus worked this up. Seems that cursor 5727# addressing is broken. 5728tvi912cc|tvi912 at cowell college, 5729 cup@, use=tvi912c, 5730 5731# Here are the switch settings for the tvi920c: 5732# 5733# S1 (Line), and S3 (Printer) baud rates -- put one, and only one, switch down: 5734# 2: 9600 3: 4800 4: 2400 5: 1200 5735# 6: 600 7: 300 8: 150 9: 75 5736# 10: 110 5737# 5738# S2 UART/Terminal options: 5739# Up Down 5740# 1: Not used Not allowed 5741# 2: Alternate character set Standard character set 5742# 3: Full duplex Half duplex 5743# 4: 50 Hz refresh 60 Hz refresh 5744# 5: No parity Send parity 5745# 6: 2 stop bits 1 stop bit 5746# 7: 8 data bits 7 data bits 5747# 8: Not used Not allowed on Rev E or lower 5748# 9: Even parity Odd parity 5749# 10: Steady cursor Blinking cursor 5750# (On Rev E or lower, use W25 instead of switch 10.) 5751# 5752# S5 UART/Terminal options: 5753# Open Closed 5754# 1: P3-6 Not connected DSR received on P3-6 5755# 2: P3-8 Not connected DCD received on P3-8 5756# 5757# 3 Open, 4 Open: P3-20 Not connected 5758# 3 Open, 4 Closed: DTR on when terminal is on 5759# 3 Closed, 4 Open: DTR is connected to RTS 5760# 3 Closed, 4 Closed: Not allowed 5761# 5762# 5 Closed: HDX printer (hardware control) Rev. K with extension port off, 5763# all data transmitted out of the modem port (P3) will also be 5764# transmitted out of the printer port (P4). 5765# 5766# 6 Open, 7 Open: Not allowed 5767# 6 Open, 7 Closed: 20ma current loop input 5768# 6 Closed, 7 Open: RS232 input 5769# 6 Closed, 7 Closed: Not allowed 5770# 5771# Jumper options: 5772# If the jumper is installed, the effect will occur (the next time the terminal 5773# is switched on). 5774# 5775# S4/W31: Enables automatic LF upon receipt of CR from 5776# remote or keyboard. 5777# S4/W32: Enables transmission of EOT at the end of Send. If not 5778# installed, a carriage return is sent. 5779# S4/W33: Disables automatic carriage return in column 80. 5780# S4/W34: Selects Page Print Mode as initial condition. If not 5781# installed, Extension Mode is selected. 5782# 5783tvi920b|tvi920c|new televideo 920, 5784 dl1=\ER$<5*>, il1=\EE$<5*>, kf0=^AI\r, kf1=^A@\r, 5785 kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, 5786 kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, use=tvi912, 5787 5788# Televideo 921 and variants 5789# From: Tim Theisen <tim@cs.wisc.edu> 22 Sept 1995 5790# (tvi921: removed :ko=bt: before translation, I see no backtab cap; 5791# also added empty <acsc> to suppress tic warning -- esr) 5792tvi921|televideo model 921 with sysline same as page & real vi function, 5793 OTbs, OTpt, am, hs, xenl, xhp, 5794 cols#80, lines#24, xmc#0, 5795 acsc=, clear=^Z, cnorm=\E.3, cr=^M, cub1=^H, cud1=^V, cuf1=^L, 5796 cup=\E=%p1%{32}%+%c%p2%{32}%+%c$<3/>, cuu1=^K, 5797 cvvis=\E.2, dch1=\EW, dl1=\ER$<1*/>, dsl=\Ef\r\Eg, ed=\EY, 5798 el=\ET, fsl=\Eg, home=^^, ht=^I, ich1=\EQ, 5799 if=/usr/share/tabset/stdcrt, il1=\EE, ind=^J, invis@, 5800 is2=\El\E"\EF1\E.3\017\EA\E<, kbs=^H, kclr=^Z, kcub1=^H, 5801 kcud1=^V, kcuf1=^L, kcuu1=^K, kdch1=\EW, kdl1=\ER$<1*/>, 5802 ked=\EY, kel=\ET, kich1=\EQ, kil1=\EE, nel=^M^J, rmacs=\E%%, 5803 rmir=, smacs=\E$, smir=, tsl=\Ef\EG0, use=adm+sgr, 5804# without the beeper 5805# (tvi92B: removed :ko=bt: before translation, I see no backtab cap; 5806# also added empty <acsc> to suppress tic warning -- esr) 5807tvi92B|televideo model 921 with sysline same as page & real vi function & no beeper, 5808 am, hs, xenl, xhp, 5809 cols#80, lines#24, xmc#0, 5810 acsc=, clear=^Z, cnorm=\E.3, cr=^M, cub1=^H, cud1=^V, cuf1=^L, 5811 cup=\E=%p1%{32}%+%c%p2%{32}%+%c$<3/>, cuu1=^K, 5812 cvvis=\E.2, dch1=\EW, dl1=\ER$<1*/>, dsl=\Ef\r\Eg, ed=\EY, 5813 el=\ET, flash=\Eb$<200/>\Ed, fsl=\Eg, home=^^, ht=^I, 5814 ich1=\EQ, if=/usr/share/tabset/stdcrt, il1=\EE, ind=^J, 5815 invis@, is2=\El\E"\EF1\E.3\017\EA\E<, kbs=^H, kclr=^Z, 5816 kcub1=^H, kcud1=^V, kcuf1=^L, kcuu1=^K, kdch1=\EW, 5817 kdl1=\ER$<1*/>, ked=\EY, kel=\ET, kich1=\EQ, kil1=\EE, 5818 nel=^M^J, rmacs=\E%%, smacs=\E$, tsl=\Ef\EG0, use=adm+sgr, 5819# (tvi92D: removed :ko=bt: before translation, I see no backtab cap -- esr) 5820tvi92D|tvi92B with DTR instead of XON/XOFF & better padding, 5821 dl1=\ER$<2*/>, il1=\EE$<2*/>, 5822 is2=\El\E"\EF1\E.3\016\EA\E<, kdl1=\ER$<2*/>, 5823 kil1=\EE$<2*/>, use=tvi92B, 5824 5825# (tvi924: This used to have <dsl=\Es0>, <fsl=\031>. I put the new strings 5826# in from a BSD termcap file because it looks like they do something the 5827# old ones skip -- esr) 5828tvi924|televideo tvi924, 5829 am, bw, hs, in, mir, msgr, xenl, xon, 5830 cols#80, it#8, lines#24, wsl#80, xmc#0, 5831 bel=^G, blink=\EG2, cbt=\EI, civis=\E.0, clear=\E*0, 5832 cnorm=\E.3, cr=^M, csr=\E_%p1%{32}%+%c%p2%{32}%+%c, 5833 cub1=^H, cud1=^V, cuf1=^L, 5834 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, cvvis=\E.1, 5835 dch1=\EW, dl1=\ER, dsl=\Es0\Ef\031, ed=\Ey, el=\Et, 5836 flash=\Eb$<200>\Ed, fsl=\031\Es1, home=^^, ht=^I, hts=\E1, 5837 ich1=\EQ, if=/usr/share/tabset/stdcrt, il1=\EE, ind=^J, 5838 invis@, is1=\017\E%\E'\E(\EDF\EC\EG0\EN0\Es0\Ev0, 5839 kbs=^H, kclr=\E*0, kcub1=^H, kcud1=^V, kcuf1=^L, kcuu1=^K, 5840 kdch1=\EW, kdl1=\ER, ked=\Ey, kel=\Et, kf0=^A@\r, kf1=^AA\r, 5841 kf10=^AJ\r, kf11=^AK\r, kf12=^AL\r, kf13=^AM\r, kf14=^AN\r, 5842 kf15=^AO\r, kf2=^AB\r, kf3=^AC\r, kf4=^AD\r, kf5=^AE\r, 5843 kf6=^AF\r, kf7=^AG\r, kf8=^AH\r, kf9=^AI\r, khome=^^, 5844 kich1=\EQ, kil1=\EE, lf0=F1, lf1=F2, lf10=F11, lf2=F3, lf3=F4, 5845 lf4=F5, lf5=F6, lf6=F7, lf7=F8, lf8=F9, lf9=F10, 5846 pfkey=\E|%p1%{49}%+%c%p2%s\031, ri=\Ej, tbc=\E3, tsl=\Ef, 5847 use=adm+sgr, 5848 5849# TVI925 DIP switches. In each of these, D = Down and U = Up, 5850# 5851# Here are the settings for the external (baud) switches (S1): 5852# 5853# Position Baud 5854# 7 8 9 10 [Printer] 5855# 1 2 3 4 [Main RS232] 5856# ----------------------------------------------------- 5857# D D D D 9600 5858# D D D U 50 5859# D D U D 75 5860# D D U U 110 5861# D U D D 135 5862# D U D U 150 5863# D U U D 300 5864# D U U U 600 5865# U D D D 1200 5866# U D D U 1800 5867# U D U D 2400 5868# U D U U 3600 5869# U U D D 4800 5870# U U D U 7200 5871# U U U D 9600 5872# U U U U 19200 5873# 5874# 5875# Settings for word length and stop-bits (S1) 5876# 5877# Position Description 5878# 5 6 5879# --------------------------- 5880# U - 7-bit word 5881# D - 8-bit word 5882# - U 2 stop bits 5883# - D 1 stop bit 5884# 5885# 5886# S2 (external) settings 5887# 5888# Position Up Dn Description 5889# -------------------------------------------- 5890# 1 X Local edit 5891# X Duplex edit (transmit editing keys) 5892# -------------------------------------------- 5893# 2 X 912/920 emulation 5894# X 925 5895# -------------------------------------------- 5896# 3 X 5897# 4 X No parity 5898# 5 X 5899# -------------------------------------------- 5900# 3 X 5901# 4 X Odd parity 5902# 5 X 5903# -------------------------------------------- 5904# 3 X 5905# 4 X Even parity 5906# 5 X 5907# -------------------------------------------- 5908# 3 X 5909# 4 X Mark parity 5910# 5 X 5911# -------------------------------------------- 5912# 3 X 5913# 4 X Space parity 5914# 5 X 5915# -------------------------------------------- 5916# 6 X White on black display 5917# X Black on white display 5918# -------------------------------------------- 5919# 7 X Half Duplex 5920# 8 X 5921# -------------------------------------------- 5922# 7 X Full Duplex 5923# 8 X 5924# -------------------------------------------- 5925# 7 X Block mode 5926# 8 X 5927# -------------------------------------------- 5928# 9 X 50 Hz 5929# X 60 Hz 5930# -------------------------------------------- 5931# 10 X CR/LF (Auto LF) 5932# X CR only 5933# 5934# S3 (internal switch) settings: 5935# 5936# Position Up Dn Description 5937# -------------------------------------------- 5938# 1 X Keyclick off 5939# X Keyclick on 5940# -------------------------------------------- 5941# 2 X English 5942# 3 X 5943# -------------------------------------------- 5944# 2 X German 5945# 3 X 5946# -------------------------------------------- 5947# 2 X French 5948# 3 X 5949# -------------------------------------------- 5950# 2 X Spanish 5951# 3 X 5952# -------------------------------------------- 5953# 4 X Blinking block cursor 5954# 5 X 5955# -------------------------------------------- 5956# 4 X Blinking underline cursor 5957# 5 X 5958# -------------------------------------------- 5959# 4 X Steady block cursor 5960# 5 X 5961# -------------------------------------------- 5962# 4 X Steady underline cursor 5963# 5 X 5964# -------------------------------------------- 5965# 6 X Screen blanking timer (ON) 5966# X Screen blanking timer (OFF) 5967# -------------------------------------------- 5968# 7 X Page attributes 5969# X Line attributes 5970# -------------------------------------------- 5971# 8 X DCD disconnected 5972# X DCD connected 5973# -------------------------------------------- 5974# 9 X DSR disconnected 5975# X DSR connected 5976# -------------------------------------------- 5977# 10 X DTR Disconnected 5978# X DTR connected 5979# -------------------------------------------- 5980# 5981# (tvi925: BSD has <clear=\E*>. I got <is2> and <ri> from there -- esr) 5982tvi925|televideo 925, 5983 OTbs, am, bw, hs, ul, 5984 cols#80, lines#24, xmc#1, 5985 bel=^G, cbt=\EI, clear=^Z, cnorm=\E.4, cr=^M, cub1=^H, cud1=^V, 5986 cuf1=^L, cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, 5987 cvvis=\E.2, dch1=\EW, dl1=\ER, dsl=\Eh, ed=\EY, el=\ET, 5988 flash=\Eb$<200>\Ed, fsl=^M\Eg, home=^^, ht=^I, hts=\E1, 5989 ich1=\EQ, il1=\EE, ind=^J, invis@, is2=\El\E", kbs=^H, kclr=^Z, 5990 kcub1=^H, kcud1=^V, kcuf1=^L, kcuu1=^K, kdch1=\EW, kdl1=\ER, 5991 ked=\EY, kel=\ET, kf0=^AI\r, kf1=^A@\r, kf2=^AA\r, kf3=^AB\r, 5992 kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, kf8=^AG\r, 5993 kf9=^AH\r, khome=^^, kich1=\EQ, kil1=\EE, ri=\Ej, tbc=\E3, 5994 tsl=\Eh\Ef, use=adm+sgr, 5995# TeleVideo 925 from Mitch Bradley <sun!wmb> via BRL 5996# to avoid "magic cookie" standout glitch: 5997tvi925-hi|TeleVideo Model 925 with half intensity standout mode, 5998 xmc@, 5999 kbs=^H, kcub1=^H, kcud1=^J, rmso=\E(, smso=\E), use=tvi925, 6000 6001# From: Todd Litwin <litwin@litwin.jpl.nasa.gov> 28 May 1993 6002# Originally Tim Curry, Univ. of Central Fla., <duke!ucf-cs!tim> 5/21/82 6003# for additional capabilities, 6004# The following tvi descriptions from B:pjphar and virus!mike 6005# is for all 950s. It sets the following attributes: 6006# full duplex (\EDF) write protect off (\E() 6007# conversation mode (\EC) graphics mode off (\E%) 6008# white on black (\Ed) auto page flip off (\Ew) 6009# turn off status line (\Eg) clear status line (\Ef\r) 6010# normal video (\E0) monitor mode off (\EX or \Eu) 6011# edit mode (\Er) load blank char to space (\Ee\040) 6012# line edit mode (\EO) enable buffer control (^O) 6013# protect mode off (\E\047) duplex edit keys (\El) 6014# program unshifted send key to send line all (\E016) 6015# program shifted send key to send line unprotected (\E004) 6016# set the following to nulls: 6017# field delimiter (\Ex0\200\200) 6018# line delimiter (\Ex1\200\200) 6019# start-protected field delimiter (\Ex2\200\200) 6020# end-protected field delimiter (\Ex3\200\200) 6021# set end of text delimiter to carriage return/null (\Ex4\r\200) 6022# 6023# TVI 950 Switch Setting Reference Charts 6024# 6025# TABLE 1: 6026# 6027# S1 1 2 3 4 5 6 7 8 9 10 6028# +-----------------------+-----+-----+-----------------------+ 6029# | Computer Baud Rate |Data |Stop | Printer Baud Rate | 6030# | |Bits |Bits | | 6031# +------+-----------------------+-----+-----+-----------------------+ 6032# | Up | See | 7 | 2 | See | 6033# +------+-----------------------+-----+-----+-----------------------+ 6034# | Down | TABLE 2 | 8 | 1 | TABLE 2 | 6035# +------+-----------------------+-----+-----+-----------------------+ 6036# 6037# 6038# S2 1 2 3 4 5 6 7 8 9 10 6039# +-----+-----+-----------------+-----+-----------+-----+-----+ 6040# |Edit |Cursr| Parity |Video|Transmiss'n| Hz |Click| 6041# +------+-----+-----+-----------------+-----+-----------+-----+-----+ 6042# | Up | Dplx|Blink| See |GonBk| See | 60 | Off | 6043# +------+-----+-----+-----------------+-----+-----------+-----+-----+ 6044# | Down |Local|St'dy| TABLE 3 |BkonG| CHART | 50 | On | 6045# +------+-----+-----+-----------------+-----+-----------+-----+-----+ 6046# 6047# TABLE 2: 6048# 6049# +-----------+-----+-----+-----+-----+-----------+ 6050# | Display | 1 | 2 | 3 | 4 | Baud | 6051# +-----------+-----+-----+-----+-----+ | 6052# | Printer | 7 | 8 | 9 | 10 | Rate | 6053# +-----------+-----+-----+-----+-----+-----------+ 6054# | D | D | D | D | 9600 | 6055# | U | D | D | D | 50 | 6056# | D | U | D | D | 75 | 6057# | U | U | D | D | 110 | 6058# | D | D | U | D | 135 | 6059# | U | D | U | D | 150 | 6060# | D | U | U | D | 300 | 6061# | U | U | U | D | 600 | 6062# | D | D | D | U | 1200 | 6063# | U | D | D | U | 1800 | 6064# | D | U | D | U | 2400 | 6065# | U | U | D | U | 3600 | 6066# | D | D | U | U | 4800 | 6067# | U | D | U | U | 7200 | 6068# | D | U | U | U | 9600 | 6069# | U | U | U | U | 19200 | 6070# +-----+-----+-----+-----+-----------+ 6071# 6072# TABLE 3: 6073# +-----+-----+-----+-----------+ 6074# | 3 | 4 | 5 | Parity | 6075# +-----+-----+-----+-----------+ 6076# | X | X | D | None | 6077# | D | D | U | Odd | 6078# | D | U | U | Even | 6079# | U | D | U | Mark | 6080# | U | U | U | Space | 6081# +-----+-----+-----+-----------+ 6082# X = don't care 6083# 6084# CHART: 6085# +-----+-----+-----------------+ 6086# | 7 | 8 | Communication | 6087# +-----+-----+-----------------+ 6088# | D | D | Half Duplex | 6089# | D | U | Full Duplex | 6090# | U | D | Block | 6091# | U | U | Local | 6092# +-----+-----+-----------------+ 6093# 6094# (tvi950: early versions had obsolete ":ma=^Vj^Kk^Hh^Ll^^H:". 6095# I also inserted <ich1> and <kich1>; the :ko: string indicated that <ich> 6096# should be present and all tvi native modes use the same string for this. 6097# Finally, note that BSD has cud1=^V. -- esr) 6098tvi950|televideo 950, 6099 OTbs, am, hs, mir, msgr, xenl, xon, 6100 cols#80, it#8, lines#24, xmc#1, 6101 acsc=b\011c\014d\re\ni\013, bel=^G, cbt=\EI, clear=\E*, 6102 cr=^M, cub1=^H, cud1=^J, cuf1=^L, 6103 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW, 6104 dl1=\ER, dsl=\Eg\Ef\r, ed=\Ey, el=\Et, flash=\Eb$<200/>\Ed, 6105 fsl=^M, home=^^, ht=^I, hts=\E1, ich1=\EQ, il1=\EE, ind=^J, 6106 invis@, 6107 is2=\EDF\EC\Ed\EG0\Eg\Er\EO\E'\E(\E%\Ew\EX\Ee \017\011\El\E016\E004\Ex0\0\0\Ex1\0\0\Ex2\0\0\011\Ex3\0\0\Ex4\r\0\Ef\r, 6108 kbs=^H, kcbt=\EI, kclr=\E*, kcub1=^H, kcud1=^V, kcuf1=^L, 6109 kcuu1=^K, kdch1=\EW, kdl1=\ER, ked=\Ey, kel=\Et, kf0=^A0\r, 6110 kf1=^A@\r, kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, 6111 kf6=^AE\r, kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, khome=^^, 6112 kich1=\EQ, kil1=\EE, mc4=\Ea, mc5=\E`, ri=\Ej, rmacs=^X, 6113 rmir=\Er, smacs=^U, smir=\Eq, tbc=\E3, tsl=\Eg\Ef, 6114 use=adm+sgr, 6115# 6116# is for 950 with two pages adds the following: 6117# set 48 line page (\E\\2) 6118# place cursor at page 0, line 24, column 1 (\E-07 ) 6119# set local (no send) edit keys (\Ek) 6120# 6121# two page 950 adds the following: 6122# when entering ex, set 24 line page (\E\\1) 6123# when exiting ex, reset 48 line page (\E\\2) 6124# place cursor at 0,24,1 (\E-07 ) 6125# set duplex (send) edit keys (\El) when entering vi 6126# set local (no send) edit keys (\Ek) when exiting vi 6127# 6128tvi950-2p|televideo950 w/2 pages, 6129 is2=\EDF\EC\Ed\EG0\Eg\Er\EO\E'\E(\E%\Ew\EX\Ee \017\011\Ek\E016\E004\Ex0\0\0\Ex1\0\0\Ex2\0\0\011\Ex3\0\0\Ex4\r\0\E\\2\E-07 \011, 6130 rmcup=\E\\2\E-07\s, rmkx=\Ek, smcup=\E\\1\E-07\s, 6131 smkx=\El, use=tvi950, 6132# 6133# is for 950 with four pages adds the following: 6134# set 96 line page (\E\\3) 6135# place cursor at page 0, line 24, column 1 (\E-07 ) 6136# 6137# four page 950 adds the following: 6138# when entering ex, set 24 line page (\E\\1) 6139# when exiting ex, reset 96 line page (\E\\3) 6140# place cursor at 0,24,1 (\E-07 ) 6141# 6142tvi950-4p|televideo950 w/4 pages, 6143 is2=\EDF\EC\Ed\EG0\Eg\Er\EO\E'\E(\E%\Ew\EX\Ee \017\011\Ek\E016\E004\Ex0\0\0\Ex1\0\0\Ex2\0\0\011\Ex3\0\0\Ex4\r\0\E\\3\E-07 \011, 6144 rmcup=\E\\3\E-07\s, rmkx=\Ek, smcup=\E\\1\E-07\s, 6145 smkx=\El, use=tvi950, 6146# 6147# <is2> for reverse video 950 changes the following: 6148# set reverse video (\Ed) 6149# 6150# set vb accordingly (\Ed ...delay... \Eb) 6151# 6152tvi950-rv|televideo950 rev video, 6153 flash=\Ed$<200/>\Eb, 6154 is2=\EDF\EC\Eb\EG0\Eg\Er\EO\E'\E(\E%\Ew\EX\Ee \017\011\El\E016\E004\Ex0\0\0\Ex1\0\0\Ex2\0\0\011\Ex3\0\0\Ex4\r\0, 6155 use=tvi950, 6156 6157# tvi950-rv-2p uses the appropriate entries from 950-2p and 950-rv 6158tvi950-rv-2p|televideo950 rev video w/2 pages, 6159 flash=\Ed$<200/>\Eb, 6160 is2=\EDF\EC\Eb\EG0\Eg\Er\EO\E'\E(\E%\Ew\EX\Ee \017\011\Ek\E016\E004\Ex0\0\0\Ex1\0\0\Ex2\0\0\011\Ex3\0\0\Ex4\r\0\E\\2\E-07\s, 6161 rmcup=\E\\2\E-07\s, rmkx=\Ek, smcup=\E\\1\E-07\s, 6162 smkx=\El, use=tvi950, 6163 6164# tvi950-rv uses the appropriate entries from 950-4p and 950-rv 6165tvi950-rv-4p|televideo950 rev video w/4 pages, 6166 flash=\Ed$<200/>\Eb, 6167 is2=\EDF\EC\Eb\EG0\Er\EO\E'\E(\E%\Ew\EX\Ee \017\011\Ek\E016\E004\Ex0\0\0\Ex1\0\0\Ex2\0\0\011\Ex3\0\0\Ex4\r\0\E\\3\E-07\s, 6168 rmcup=\E\\3\E-07\s, rmkx=\Ek, smcup=\E\\1\E-07\s, 6169 smkx=\El, use=tvi950, 6170# From: Andreas Stolcke <stolcke@icsi.berkeley.edu> 6171# (tvi955: removed obsolete ":ma:=^Vj^Kk^Hh^Ll^^H"; 6172# removed incorrect (and overridden) ":do=^J:"; fixed broken continuations in 6173# the :rs: string, inserted the <ich> implied by the termcap :ko: string. Note 6174# the :ko: string had :cl: in it, which means that one of the original 6175# <clear=\E*>, <kclr=\EY> had to be wrong; set <kclr=\E*> because that's what 6176# the 950 has. Finally, corrected the <kel> string to match the 950 and what 6177# ko implies -- esr) 6178# If the BSD termcap file was right, <cup=\E=%p1%{32}%+%c%p2%{32}%+%c> would 6179# also work. 6180tvi955|televideo 955, 6181 OTbs, mc5i, msgr@, 6182 it#8, xmc@, 6183 acsc=0_`RjHkGlFmEnIoPqKsQtMuLvOwNxJ, blink=\EG2, 6184 civis=\E.0, cnorm=\E.2, cud1=^V, cup=\E[%i%p1%d;%p2%dH, 6185 cvvis=\E.1, dim=\E[=5h, ind@, invis=\EG1, 6186 is2=\E[=3l\EF1\Ed\EG0\E[=5l\E%\El, kctab=\E2, khts=\E1, 6187 knp=\EK, kpp=\EJ, krmir=\EQ, ktbc=\E3, mc0=\EP, rmacs=\E%%, 6188 rmam=\E[=7l, rmxon=^N, 6189 rs1=\EDF\EC\Eg\Er\EO\E'\E(\Ew\EX\Ee \017\E0P\E6\0\E0p\E4\0\Ef\r, 6190 sgr0=\EG0\E[=5l, smacs=\E$, smam=\E[=7h, smxon=^O, 6191 use=tvi950, 6192tvi955-w|955-w|televideo955 w/132 cols, 6193 cols#132, 6194 is2=\E[=3h\EF1\Ed\EG0\E[=5l\E%\El, use=tvi955, 6195# use half-intensity as normal mode, full intensity as <bold> 6196tvi955-hb|955-hb|televideo955 half-bright, 6197 bold=\E[=5l, dim@, is2=\E[=3l\EF1\Ed\EG0\E[=5h\E%\El, 6198 sgr0=\EG0\E[=5h, use=tvi955, 6199# From: Humberto Appleton <beto@cs.utexas.edu>, 880521 UT Austin 6200# (tvi970: removed ":sg#0:"; removed <rmso>=\E[m, <rmul>=\E[m; 6201# added <am>/<csr>/<home>/<hpa>/<vpa>/<smcup>/<rmcup> from BRL. 6202# According to BRL we could have <rmkx>=\E>, <smkx>=\E= but I'm not sure what 6203# it does to the function keys. I deduced <rmam>/<smam>. 6204# also added empty <acsc> to suppress tic warning, -- esr) 6205tvi970|televideo 970, 6206 OTbs, OTpt, am, da, db, mir, msgr, 6207 cols#80, it#8, lines#24, 6208 acsc=, cbt=\E[Z, clear=\E[H\E[2J, csr=\E[%i%p1%d;%p2%dr, 6209 cub1=^H, cud1=\ED, cuf1=\E[C, cup=\E[%i%p1%d;%p2%df, 6210 cuu1=\EM, cvvis=\E[1Q, dch1=\E[P, dl1=\E[M, dsl=\Eg\Ef\r, 6211 ed=\E[J, el=\E[K, flash=\E[5m$<200/>\E[m, home=\E[H, 6212 hpa=\E[%i%p1%dG, ht=^I, il1=\E[L, 6213 is2=\E<\E[?21l\E[19h\E[1Q\E[10l\E[7l\E[H\E[2J, 6214 kbs=^H, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 6215 kf1=\E?a, kf2=\E?b, kf3=\E?c, kf4=\E?d, kf5=\E?e, kf6=\E?f, 6216 kf7=\E?g, kf8=\E?h, kf9=\E?i, khome=\E[H, ri=\EM, rmacs=\E(B, 6217 rmam=\E[?7h, rmcup=, rmir=\E[4l, rmso=\E[m, rmul=\E[m, 6218 sgr0=\E[m, smacs=\E(B, smam=\E[?7l, 6219 smcup=\E[?20l\E[?7h\E[1Q, smir=\E[4h, smso=\E[7m, 6220 smul=\E[4m, vpa=\E[%i%p1%dd, 6221tvi970-vb|televideo 970 with visual bell, 6222 flash=\E[?5h\0\0\0\0\0\0\0\0\0\0\0\0\0\E[?5l, 6223 use=tvi970, 6224tvi970-2p|televideo 970 with using 2 pages of memory, 6225 rmcup=\E[H\E[J\E[V, smcup=\E[U\E[?20l\E[?7h\E[1Q, 6226 use=tvi970, 6227# Works with vi and rogue. NOTE: Esc v sets autowrap on, Esc u sets 80 chars 6228# per line (rather than 40), Esc K chooses the normal character set. Not sure 6229# padding is needed, but adapted from the tvi920c termcap. The <smso> and 6230# <smul> strings are klutzy, but at least use no screen space. 6231# (tvipt: removed obsolete ":ma=^Kk^Ll^R^L:". I wish we knew <rmam>, 6232# its absence means <smam>=\Ev isn't safe to use. -- esr) 6233# From: Gene Rochlin <armsis@amber.berkeley.edu> 9/19/84. 6234# The <ed>/<kf0>/<kf1>/<khome>/<mc4>, and <mc5> caps are from BRL, which says: 6235# F1 and F2 should be programmed as ^A and ^B; required for UNIFY. 6236tvipt|televideo personal terminal, 6237 OTbs, am, 6238 cols#80, lines#24, 6239 cbt=\EI, clear=^Z, cub1=^H, cuf1=^L, 6240 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dl1=\ER$<5*>, 6241 ed=\EY, el=\ET, home=^^, if=/usr/share/tabset/stdcrt, 6242 il1=\EE$<5*>, is2=\Ev\Eu\EK, kbs=^H, kcub1=^H, kcud1=^J, 6243 kcuf1=^L, kcuu1=^K, kf0=^A, kf1=^B, khome=^^, mc4=^T, mc5=^R, 6244 rmso=\EF, rmul=\EF, smso=\EG1@A\EH, smul=\EG1B@\EH, 6245# From: Nathan Peterson <nathan@sco.com>, 03 Sep 1996 6246tvi9065|televideo 9065, 6247 am, bw, chts, hs, mc5i, mir, msgr, xenl, xon, 6248 cols#80, it#8, lh#1, lines#25, lm#0, lw#9, ma#4, nlab#8, vt#0, 6249 wnum#0, wsl#30, 6250 acsc='r0_jhkglfmeniopqksqtmulvownxj, bel=^G, 6251 blink=\EG2, bold=\EG\,, cbt=\EI, civis=\E.0, clear=^Z, 6252 cnorm=\E.3, cr=^M, csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, 6253 cub1=^H, cud=\E[%p1%dB, cud1=^V, cuf=\E[%p1%dC, cuf1=^L, 6254 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu=\E[%p1%dA, 6255 cuu1=^K, cvvis=\E.2, dch=\E[%p1%dP, dch1=\EW, dim=\EGp, 6256 dl=\E[%p1%dM, dl1=\ER, dsl=\E_30\r, ech=\E[%p1%d@, ed=\EY, 6257 el=\ET, flash=\Eb$<15>\Ed, fsl=^M, home=^^, ht=^I, hts=\E1, 6258 ich=\E[%p1%d@, if=/usr/share/tabset/stdcrt, 6259 il=\E[%p1%dL, il1=\EE, ind=^J, indn=\E[%p1%dS, invis=\EG1, 6260 ip=$<3>, 6261 is1=\E"\E%\E'\E(\EG@\EO\EX\E[=5l\E[=6l\E[=7h\Ed\Er, 6262 is2=\EF2\EG0\E\\L, is3=\E<\E[=4l\E[=8h, kHOM=\E\s\s\s, 6263 kbs=^H, kcbt=\EI, kcub1=^H, kcud1=^V, kcuf1=^L, kcuu1=^K, 6264 kdch1=\EW, kf1=^A@\r, kf10=^AI\r, kf11=^AJ\r, kf12=^AK\r, 6265 kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, 6266 kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, khome=^^, ll=\E[25;1H, 6267 mc0=\E[0;0i, mc4=\Ea, mc5=\E`, nel=^M^J, 6268 pfkey=\E|%p1%{48}%+%c3%p2%s\031, 6269 pfloc=\E|%p1%{48}%+%c2%p2%s\031, 6270 pfx=\E|%p1%{48}%+%c1%p2%s\031, 6271 pln=\E_%p1%{63}%+%c%p2%s\r, prot=\E&, 6272 rep=\E[%p2%db%p1%c, rev=\EG4, 6273 rf=/usr/share/tabset/stdcrt, ri=\Ej, rin=\E[%p1%dT, 6274 rmacs=\E%%, rmam=\E[=7l, rmcup=\E.3\Er\E[1;25r\E[25;0H, 6275 rmdc=\0, rmir=\Er, rmln=\E[4;1v, rmso=\EG0, rmul=\EG0, 6276 rmxon=^N, rs1=\EC\EDF\E[0;0v\E[8;1v\E[=65l, 6277 rs2=\E.b\E[10;20v\E[14;1v\E[3;0v\E[7;0v\E[=11.h\E[=12.h\E[=13.h\E[=14.h\E[=15l\E[=20h\E[=60l\E[=61h\E[=9l\E[=10l\E[=21l\E[=23l\E[=3l\E_40\E_50\En\Ew\Ee \Ex0\0\0\Ex1\0\0\Ex2\0\0\Ex3\0\0\Ex4\0\0\E1, 6278 rs3=\E[=19h\E.3\E9\E0O\0\0\0\0\0\E0o\0\0\0\0\0\E0J\177\0\0\0\0, 6279 sgr=\EG0%?%p1%t\EGt%;%?%p2%t\EG8%;%?%p3%t\EG4%;%?%p4%t\EG2%;%?%p5%t\EGp%;%?%p6%t\EG\,%;%?%p7%t\EG1%;%?%p9%t\E$%e\E%%%;, 6280 sgr0=\EG0, smacs=\E$, smam=\E=7h, smcup=\E.2, smdc=\Er, 6281 smir=\Eq, smln=\E[4;2v, smso=\EGt, smul=\EG8, smxon=^O, 6282 tbc=\E3, tsl=\E[4;1v\E_30, uc=\EG8\EG0, 6283 6284#### Visual (vi) 6285# 6286# In September 1993, Visual Technology of Westboro, Massachusetts, 6287# merged with White Pine Software of Nashua, New Hampshire. 6288# 6289# White Pine Software may be contacted at +1 603/886-9050. 6290# Or visit White Pine on the World Wide Web at URL http://www.wpine.com. 6291# 6292 6293# Visual 50 from Beau Shekita, BTL-Whippany <whuxlb!ejs> 6294# Recently I hacked together the following termcap for Visual 6295# Technology's Visual 50 terminal. It's a slight modification of 6296# the vt52 termcap. 6297# It's intended to run when the Visual 50 is in vt52 emulation mode 6298# (I know what you're thinking; if it's emulating a vt52, then why 6299# another termcap? Well, it turns out that the Visual 50 can handle 6300# <dl1> and db(?) among other things, which the vt52 can't) 6301# The termcap works OK for the most part. The only problem is on 6302# character inserts. The whole line gets painfully redrawn for each 6303# character typed. Any suggestions? 6304# Beau's entry is combined with the vi50 entry from University of Wisconsin. 6305# Note especially the <il1> function. <kf4>-<kf6> are really l4-l6 in 6306# disguise; <kf7>-<kf9> are really l1-l3. 6307vi50|visual 50, 6308 OTbs, OTpt, am, da, db, msgr, 6309 cols#80, it#8, lines#24, 6310 OTnl=^J, bel=^G, cbt=\Ez$<4/>, clear=\EH\EJ, cr=^M, cub1=^H, 6311 cud1=\EB, cuf1=\EC, cup=\EY%p1%{32}%+%c%p2%{32}%+%c, 6312 cuu1=\EA, dl1=\EM$<3*/>, ed=\EJ, el=\EK$<16/>, home=\EH, 6313 ht=^I, il1=\EL, ind=^J, kbs=^H, kcub1=\ED, kcud1=\EB, 6314 kcuf1=\EC, kcuu1=\EA, kf1=\EP, kf2=\EQ, kf3=\ER, kf4=\EV, 6315 kf5=\EE, kf6=\E], kf7=\EL, kf8=\Ev, kf9=\EM, khome=\EH, 6316 nel=^M^J, ri=\EI, rmso=\ET, rmul=\EW, smso=\EU, smul=\ES, 6317# this one was BSD & SCO's vi50 6318vi50adm|visual 50 in adm3a mode, 6319 am, msgr, 6320 cols#80, it#8, lines#24, 6321 bel=^G, clear=^Z, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 6322 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dl1=\EM, 6323 ed=\Ek, el=\EK, home=\EH, ht=^I, il1=\EL, ind=^J, kbs=^H, 6324 kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, khome=\EH, 6325 rmso=\ET, smso=\EU, 6326# From: Jeff Siegal <jbs@quiotix.com> 6327vi55|Visual 55, 6328 OTbs, am, mir, msgr, 6329 cols#80, it#8, lines#24, 6330 clear=\Ev, csr=\E_%p1%{65}%+%c%p2%{65}%+%c, cub1=^H, 6331 cud1=^J, cuf1=\EC, cup=\EY%p1%{32}%+%c%p2%{32}%+%c, 6332 cuu1=\EA, dch1=\Ew, dl1=\EM, ed=\EJ, el=\EK, home=\EH, ht=^I, 6333 il1=\EL, is2=\Ev\E_AX\Eb\EW\E9P\ET, kbs=^H, kcub1=\ED, 6334 kcud1=\EB, kcuf1=\EC, kcuu1=\EA, ri=\EI, rmir=\Eb, rmso=\ET, 6335 smir=\Ea, smso=\EU, 6336 6337# Visual 200 from BRL 6338# The following switch settings are assumed for normal operation: 6339# FULL_DUPLEX SCROLL CR 6340# AUTO_NEW_LINE_ON VISUAL_200_EMULATION_MODE 6341# Other switches may be set for operator convenience or communication 6342# requirements. 6343# Character insertion is kludged in order to get around the "beep" misfeature. 6344# (This cap is commented out because <smir>/<rmir> is more efficient -- esr) 6345# Supposedly "4*" delays should be used for <il1>, <ed>, <clear>, <dch1>, 6346# and <dl1> strings, but we seem to get along fine without them. 6347vi200|visual 200, 6348 OTbs, OTpt, am, mir, msgr, 6349 OTkn#10, cols#80, it#8, lines#24, 6350 acsc=, bel=^G, cbt=\Ez, clear=\Ev, cnorm=\Ec, cr=^M, cub1=^H, 6351 cud1=^J, cuf1=\EC, cup=\EY%p1%{32}%+%c%p2%{32}%+%c, 6352 cuu1=\EA, cvvis=\Ed, dch1=\EO, dim=\E4, dl1=\EM, ed=\Ey, 6353 el=\Ex, home=\EH, ht=^I, hts=\E1, il1=\EL, ind=^J, invis=\Ea, 6354 kbs=^H, kclr=\Ev, kctab=\E2, kcub1=\ED, kcud1=\EB, kcuf1=\EC, 6355 kcuu1=\EA, kdch1=\EO, kdl1=\EM, ked=\EJ, kel=\Et, kf0=\E?p, 6356 kf1=\E?q, kf2=\E?r, kf3=\E?s, kf4=\E?t, kf5=\E?u, kf6=\E?v, 6357 kf7=\E?w, kf8=\E?x, kf9=\E?y, khome=\EH, khts=\E1, kich1=\Ei, 6358 kil1=\EL, krmir=\Ej, mc0=\EH\E], mc4=\EX, mc5=\EW, ri=\EI, 6359 rmacs=\EG, rmkx=\E>, rmso=\E3, 6360 rs1=\E3\Eb\Ej\E\El\EG\Ec\Ek\EX, sgr0=\E3\Eb, smacs=\EF, 6361 smkx=\E=, smso=\E4, tbc=\Eg, 6362# The older Visuals didn't come with function keys. This entry uses 6363# <smkx> and <rmkx> so that the keypad keys can be used as function keys. 6364# If your version of vi doesn't support function keys you may want 6365# to use vi200-f. 6366vi200-f|visual 200 no function keys, 6367 is2=\E3\Eb\Ej\E\\\El\EG\Ed\Ek, kf0=\E?p, kf1=\E?q, 6368 kf2=\E?r, kf3=\E?s, kf4=\E?t, kf5=\E?u, kf6=\E?v, kf7=\E?w, 6369 kf8=\E?x, kf9=\E?y, rmkx=\E>, rmso@, smkx=\E=, smso@, 6370 use=vi200, 6371vi200-rv|visual 200 reverse video, 6372 cnorm@, cvvis@, ri@, rmso=\E3, smso=\E4, use=vi200, 6373 6374# the function keys are programmable but we don't reprogram them to their 6375# default values with <is2> because programming them is very verbose. maybe 6376# an initialization file should be made for the 300 and they could be stuck 6377# in it. 6378# (vi300: added <rmam>/<smam> based on init string -- esr) 6379vi300|visual 300 ansi x3.64, 6380 am, bw, mir, xenl, 6381 cols#80, lines#24, 6382 bel=^G, cbt=\E[Z, clear=\E[H\E[2J, cr=^M, cub1=^H, cud1=\E[B, 6383 cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, 6384 dch1=\E[P$<40>, dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, ht=^I, 6385 il1=\E[L, ind=^J, 6386 is2=\E[7s\E[2;3;4;20;?5;?6l\E[12;?7h\E[1Q\E[0;1(D\E[8s, 6387 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 6388 kf1=\E_A\E\\, kf2=\E_B\E\\, kf3=\E_C\E\\, kf4=\E_D\E\\, 6389 kf5=\E_E\E\\, kf6=\E_F\E\\, kf7=\E_G\E\\, kf8=\E_H\E\\, 6390 kf9=\E_I\E\\, khome=\E[H, ri=\EM, rmam=\E[?7l, rmir=\E[4l, 6391 rmso=\E[m, rmul=\E[m, sgr0=\E[m, smam=\E[?7h, smir=\E[4h, 6392 smso=\E[1m, smul=\E[4m, 6393# some of the vi300s have older firmware that has the command 6394# sequence for setting editing extent reversed. 6395vi300-old|visual 300 with old firmware (set edit extent reversed), 6396 is2=\E[7s\E[2;3;4;20;?5;?6l\E[12;?7h\E[2Q\E[0;1(D\E[8s, 6397 use=vi300, 6398 6399# Visual 500 prototype entry from University of Wisconsin. 6400# The best place to look for the escape sequences is page A1-1 of the 6401# Visual 500 manual. The initialization sequence given here may be 6402# overkill, but it does leave out some of the initializations which can 6403# be done with the menus in set-up mode. 6404# The :xp: line below is so that emacs can understand the padding requirements 6405# of this slow terminal. :xp: is 10 time the padding factor. 6406# (vi500: removed unknown :xp#4: termcap; 6407# also added empty <acsc> to suppress tic warning -- esr) 6408vi500|visual 500, 6409 am, mir, msgr, 6410 cols#80, it#8, lines#33, 6411 acsc=, cbt=\Ez$<4/>, clear=\Ev$<6*/>, cr=^M, 6412 csr=\E(%p1%{32}%+%c%p2%{32}%+%c, cub1=^H, cud1=\EB, 6413 cuf1=\EC, cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, 6414 dch1=\EO$<3*/>, dl1=\EM$<3*/>, ed=\Ey$<3*/>, 6415 el=\Ex$<16/>, home=\EH, ht=\011$<8/>, il1=\EL\Ex$<3*/>, 6416 ind=^J, 6417 is2=\E3\E\001\E\007\E\003\Ek\EG\Ed\EX\El\E>\Eb\E\\, 6418 kbs=^H, kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, 6419 khome=\EH, nel=^M^J, rmacs=^O, rmir=\Ej, rmso=\E^G, 6420 rmul=\E^C, smacs=^N, smir=\Ei, smso=\E^H, smul=\E^D, 6421 6422# The visual 550 is a visual 300 with tektronix graphics, 6423# and with 33 lines. clear screen is modified here to 6424# also clear the graphics. 6425vi550|visual 550 ansi x3.64, 6426 lines#33, 6427 clear=\030\E[H\E[2J, use=vi300, 6428 6429vi603|visual603|visual 603, 6430 hs, mir, 6431 bel=^G, blink=\E[5m, bold=\E[1m, clear=\E[H\E[J, 6432 csr=\E[%i%p1%d;%p2%dr, cuf1=\E[C, 6433 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, dch1=\E[P, dl1=\E[M, 6434 dsl=\EP2;1~\E\\, ed=\E[J, el=\E[K, fsl=\E\\, il1=\E[L, 6435 ind=\ED, is1=\E>\E[?3l\E[?4l\E[?7h\E[?8h\E[1;24r, 6436 rev=\E[7m, ri=\EM, rmir=\E[4l, rmso=\E[27m, rmul=\E[24m, 6437 sgr0=\E[m, smir=\E[4h, smso=\E[7m, smul=\E[4m, tsl=\EP2~, 6438 use=vt100, 6439 6440#### Wyse (wy) 6441# 6442# Wyse Technology 6443# 3471 North First Street 6444# San Jose, CA 95134 6445# Vox: (408)-473-1200 6446# Fax: (408) 473-1222 6447# Web: http://www.wyse.com 6448# 6449# Wyse sales can be reached by phone at 1-800-GET-WYSE. Tech support is at 6450# (800)-800-WYSE (option 5 gets you a human). There's a Web page at the 6451# obvious address, <http://www.wyse.com>. They keep terminfo entries at 6452# <http://www.wyse.co.uk/support/appnotes/idxappnt.htm>. 6453# 6454# Wyse bought out Link Technology, Inc. in 1990 and closed it down in 1995. 6455# They now own the Qume and Amdek brands, too. So these are the people to 6456# talk with about all Link, Qume, and Amdek terminals. 6457# 6458# These entries include a few small fixes. 6459# I canceled the bel capacities in the vb entries. 6460# I made two trivial syntax fixes in the wyse30 entry. 6461# I made some entries relative to adm+sgr. 6462# 6463# 6464# Note: The wyse75, wyse85, and wyse99 have been discontinued. 6465 6466# Although the Wyse 30 can support more than one attribute 6467# it requires magic cookies to do so. Many applications do not 6468# function well with magic cookies. The following terminfo uses 6469# the protect mode to support one attribute (dim) without cookies. 6470# If more than one attribute is needed then the wy30-mc terminfo 6471# should be used. 6472# 6473wy30|wyse30|Wyse 30, 6474 am, bw, hs, mc5i, mir, msgr, xon, 6475 cols#80, lh#1, lines#24, lw#8, ma#1, nlab#8, wsl#45, 6476 acsc=0wa_h[jukslrmqnxqzttuyv]wpxv, bel=^G, cbt=\EI, 6477 civis=\E`0, clear=\E+$<80>, cnorm=\E`1, cr=^M, cub1=^H, 6478 cud1=^J, cuf1=^L, cup=\E=%p1%{32}%+%c%p2%{32}%+%c, 6479 cuu1=^K, dch1=\EW$<10>, dim=\E`7\E), dl1=\ER$<1>, 6480 dsl=\EF\r, ed=\EY$<80>, el=\ET, flash=\E`8$<100/>\E`9, 6481 fsl=^M, home=^^, ht=\011$<1>, hts=\E1, il1=\EE$<2>, 6482 ind=\n$<2>, ip=$<2>, is2=\E'\E(\E\^3\E`9\016\024, 6483 kHOM=\E{, kbs=^H, kcbt=\EI, kcub1=^H, kcud1=^J, kcuf1=^L, 6484 kcuu1=^K, kdch1=\EW, kdl1=\ER, ked=\EY, kel=\ET, kent=\E7, 6485 kf1=^A@\r, kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, 6486 kf6=^AE\r, kf7=^AF\r, kf8=^AG\r, khome=^^, kich1=\EQ, 6487 kil1=\EE, knp=\EK, kpp=\EJ, krpl=\Er, ll=^^^K, mc0=\EP, mc4=^T, 6488 mc5=^X, nel=^M^J, pfx=\Ez%p1%{63}%+%c%p2%s\177, 6489 pln=\Ez%p1%{47}%+%c%p2%s\r, prot=\E`7\E), ri=\Ej$<3>, 6490 rmacs=\EH^C, rmir=\Er, rmln=\EA11, rmso=\E(, 6491 sgr=%?%p1%p5%p8%|%|%t\E`7\E)%e\E(%;%?%p9%t\EH\002%e\EH\003%;, 6492 sgr0=\E(\EH\003, smacs=\EH^B, smir=\Eq, smln=\EA10, 6493 smso=\E`7\E), tbc=\E0, tsl=\EF, 6494# 6495# This terminal description uses the non-hidden attribute mode 6496# (with magic cookie). 6497# 6498# (wy30-mc: added <smcup> to suppress tic warning --esr) 6499wy30-mc|wyse30-mc|wyse 30 with magic cookies, 6500 msgr@, 6501 ma@, xmc#1, 6502 blink=\EG2, dim=\EGp, prot=\EG0\E), rmacs=\EG0\EH\003, 6503 rmcup=\EG0, rmso=\EG0, 6504 sgr=\EG%{48}%?%p2%p6%|%t%{8}%|%;%?%p1%p3%|%p6%|%t%{4}%|%;%?%p4%t%{2}%|%;%?%p1%p5%|%t%{64}%|%;%?%p7%t%{1}%|%;%c%?%p8%t\E)%e\E(%;%?%p9%t\EH\002%e\EH\003%;, 6505 sgr0=\EG0\E(\EH\003, smacs=\EG0\EH\002, smcup=, 6506 smso=\EG4, use=wy30, use=adm+sgr, 6507# The mandatory pause used by <flash> does not work with 6508# older versions of terminfo. If you see this effect then 6509# unset xon and delete the / from the delay. 6510# i.e. change $<100/> to $<100> 6511wy30-vb|wyse30-vb|wyse 30 visible bell, 6512 bel@, use=wy30, 6513# 6514# The Wyse 50 can support one attribute (e.g. Dim, Inverse, 6515# Normal) without magic cookies by using the protect mode. 6516# The following description uses this feature, but when more 6517# than one attribute is put on the screen at once, all attributes 6518# will be changed to be the same as the last attribute given. 6519# The Wyse 50 can support more attributes when used with magic 6520# cookies. The wy50-mc terminal description uses magic cookies 6521# to correctly handle multiple attributes on a screen. 6522# 6523wy50|wyse50|Wyse 50, 6524 am, bw, hs, mc5i, mir, msgr, xon, 6525 cols#80, lh#1, lines#24, lw#8, ma#1, nlab#8, wsl#45, 6526 acsc=0wa_h[jukslrmqnxqzttuyv]wpxv, bel=^G, cbt=\EI, 6527 civis=\E`0, clear=\E+$<20>, cnorm=\E`1, cr=^M, cub1=^H, 6528 cud1=^J, cuf1=^L, cup=\E=%p1%{32}%+%c%p2%{32}%+%c, 6529 cuu1=^K, dch1=\EW$<1>, dim=\E`7\E), dl1=\ER, dsl=\EF\r, 6530 ed=\EY$<20>, el=\ET, flash=\E`8$<100/>\E`9, fsl=^M, 6531 home=^^, ht=^I, hts=\E1, il1=\EE, ind=\n$<2>, ip=$<1>, 6532 is1=\E`\:\E`9$<30>, is2=\016\024\E'\E(, kHOM=\E{, kbs=^H, 6533 kcbt=\EI, kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, kdch1=\EW, 6534 kdl1=\ER, ked=\EY, kel=\ET, kent=\E7, kf1=^A@\r, kf10=^AI\r, 6535 kf11=^AJ\r, kf12=^AK\r, kf13=^AL\r, kf14=^AM\r, kf15=^AN\r, 6536 kf16=^AO\r, kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, 6537 kf6=^AE\r, kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, khome=^^, 6538 kich1=\EQ, kil1=\EE, knp=\EK, kpp=\EJ, kprt=\EP, krpl=\Er, 6539 ll=^^^K, mc0=\EP, mc4=^T, mc5=^X, nel=^M^J, 6540 pfx=\Ez%p1%{63}%+%c%p2%s\177, 6541 pln=\Ez%p1%{47}%+%c%p2%s\r, prot=\E`7\E), rev=\E`6\E), 6542 ri=\Ej, rmacs=\EH^C, rmir=\Er, rmln=\EA11, rmso=\E(, 6543 sgr=%?%p1%p3%|%t\E`6\E)%e%p5%p8%|%t\E`7\E)%e\E(%;%?%p9%t\EH\002%e\EH\003%;, 6544 sgr0=\E(\EH\003, smacs=\EH^B, smir=\Eq, smln=\EA10, 6545 smso=\E`6\E), tbc=\E0, tsl=\EF, 6546# 6547# This terminal description uses the non-hidden attribute mode 6548# (with magic cookie). 6549# 6550# The mandatory pause used by flash does not work with some 6551# older versions of terminfo. If you see this effect then 6552# unset <xon> and delete the / from the delay. 6553# i.e. change $<100/> to $<100> 6554# (wy50-mc: added <smcup> to suppress tic warning --esr) 6555wy50-mc|wyse50-mc|wyse 50 with magic cookies, 6556 msgr@, 6557 ma@, xmc#1, 6558 blink=\EG2, dim=\EGp, prot=\EG0\E), rev=\EG4, 6559 rmacs=\EG0\EH\003, rmcup=\EG0, rmso=\EG0, 6560 sgr=\EG%{48}%?%p2%p6%|%t%{8}%|%;%?%p1%p3%|%p6%|%t%{4}%|%;%?%p4%t%{2}%|%;%?%p1%p5%|%t%{64}%|%;%?%p7%t%{1}%|%;%c%?%p8%t\E)%e\E(%;%?%p9%t\EH\002%e\EH\003%;, 6561 sgr0=\EG0\E(\EH\003, smacs=\EG0\EH\002, smcup=, 6562 smso=\EGt, use=wy50, use=adm+sgr, 6563wy50-vb|wyse50-vb|wyse 50 visible bell, 6564 bel@, use=wy50, 6565wy50-w|wyse50-w|wyse 50 132-column, 6566 cols#132, lw#7, nlab#16, wsl#97, 6567 cup=\Ea%i%p1%dR%p2%dC, dch1=\EW$<2>, is1=\E`;\E`9$<30>, 6568 use=wy50, 6569wy50-wvb|wyse50-wvb|wyse 50 132-column visible bell, 6570 bel@, use=wy50-w, 6571 6572# 6573# The Wyse 350 is a Wyse 50 with color. 6574# Unfortunately this means that it has magic cookies. 6575# The color attributes are designed to overlap the reverse, dim and 6576# underline attributes. This is nice for monochrome applications 6577# because you can make underline stuff green (or any other color) 6578# but for true color applications it's not so hot because you cannot 6579# mix color with reverse, dim or underline. 6580# To further complicate things one of the attributes must be 6581# black (either the foreground or the background). In reverse video 6582# the background changes color with black letters. In normal video 6583# the foreground changes colors on a black background. 6584# This terminfo uses some of the more advanced features of curses 6585# to display both color and blink. In the final analysis I am not 6586# sure that the wy350 runs better with this terminfo than it does 6587# with the wy50 terminfo (with user adjusted colors). 6588# 6589# The mandatory pause used by flash does not work with 6590# older versions of terminfo. If you see this effect then 6591# unset xon and delete the / from the delay. 6592# i.e. change $<100/> to $<100> 6593# 6594# Bug: The <op> capability resets attributes. 6595wy350|wyse350|Wyse 350, 6596 am, bw, hs, mc5i, mir, xon, 6597 colors#8, cols#80, lh#1, lines#24, lw#8, ncv#55, nlab#8, pairs#8, 6598 wsl#45, xmc#1, 6599 acsc=0wa_h[jukslrmqnxqzttuyv]wpxv, bel=^G, blink=\EG2, 6600 cbt=\EI, civis=\E`0, clear=\E+$<20>, cnorm=\E`1, cr=^M, 6601 cub1=^H, cud1=^J, cuf1=^L, 6602 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW$<1>, 6603 dim=\EGp, dl1=\ER, dsl=\EF\r, ed=\EY$<20>, el=\ET, 6604 flash=\E`8$<100/>\E`9, fsl=^M, home=^^, ht=^I, hts=\E1, 6605 il1=\EE, ind=\n$<2>, ip=$<1>, is1=\E`\:\E`9$<30>, 6606 is2=\016\024\E'\E(, is3=\E%?, kHOM=\E{, kbs=^H, kcbt=\EI, 6607 kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, kdch1=\EW, kdl1=\ER, 6608 ked=\EY, kel=\ET, kent=\E7, kf1=^A@\r, kf10=^AI\r, 6609 kf11=^AJ\r, kf12=^AK\r, kf13=^AL\r, kf14=^AM\r, kf15=^AN\r, 6610 kf16=^AO\r, kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, 6611 kf6=^AE\r, kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, khome=^^, 6612 kich1=\EQ, kil1=\EE, knp=\EK, kpp=\EJ, kprt=\EP, krpl=\Er, 6613 ll=^^^K, mc0=\EP, mc4=^T, mc5=^X, nel=^M^J, oc=\E%?, op=\EG0, 6614 pfx=\Ez%p1%{63}%+%c%p2%s\177, 6615 pln=\Ez%p1%{47}%+%c%p2%s\r, prot=\EG0\E), ri=\Ej, 6616 rmacs=\EG0\EH\003, rmir=\Er, rmln=\EA11, setb=, 6617 setf=%?%p1%{0}%=%t%{76}%e%p1%{1}%=%t%{64}%e%p1%{2}%=%t%{8}%e%p1%{3}%=%t%{72}%e%p1%{4}%=%t%{4}%e%p1%{5}%=%t%{68}%e%p1%{6}%=%t%{12}%e%p1%{7}%=%t%{0}%;%PC\EG%gC%gA%+%{48}%+%c, 6618 sgr=%{0}%?%p4%t%{2}%|%;%?%p7%t%{1}%|%;%PA\EG%?%gC%t%gC%e%{0}%?%p1%t%{4}%|%;%?%p2%t%{8}%|%;%?%p3%t%{4}%|%;%?%p5%t%{64}%|%;%;%gA%+%{48}%+%c%?%p8%t\E)%e\E(%;%?%p9%t\EH\002%e\EH\003%;, 6619 sgr0=\EG0\E(\EH\003%{0}%PA%{0}%PC, smacs=\EG0\EH\002, 6620 smir=\Eq, smln=\EA10, tbc=\E0, tsl=\EF, use=adm+sgr, 6621wy350-vb|wyse350-vb|wyse 350 visible bell, 6622 bel@, use=wy350, 6623wy350-w|wyse350-w|wyse 350 132-column, 6624 cols#132, lw#7, nlab#16, wsl#97, 6625 cup=\Ea%i%p1%dR%p2%dC, dch1=\EW$<2>, is1=\E`;\E`9$<30>, 6626 use=wy350, 6627wy350-wvb|wyse350-wvb|wyse 350 132-column visible bell, 6628 bel@, use=wy350-w, 6629# 6630# This terminfo description is untested. 6631# The wyse100 emulates an adm31, so the adm31 entry should work. 6632# 6633wy100|wyse 100, 6634 hs, mir, 6635 cols#80, lines#24, xmc#1, 6636 bel=^G, clear=\E;, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 6637 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW, 6638 dl1=\ER, dsl=\EA31, ed=\EY, el=\ET, fsl=^M, il1=\EE, ind=^J, 6639 invis@, is2=\Eu\E0, kbs=^H, kcub1=^H, kcud1=^J, kcuf1=^L, 6640 kcuu1=^K, kf1=^A@\r, kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, 6641 kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, kf8=^AG\r, khome=\E{, 6642 rmir=\Er, smir=\Eq, tsl=\EF, use=adm+sgr, 6643# 6644# The Wyse 120/150 has most of the features of the Wyse 60. 6645# This terminal does not need padding up to 9600 baud! 6646# <msgr> should be set but the clear screen fails when in 6647# alt-charset mode. Try \EcE\s\s\E+\s if the screen is really clear 6648# then set <msgr>. 6649# 6650wy120|wyse120|wy150|wyse150|Wyse 120/150, 6651 am, bw, hs, km, mc5i, mir, msgr, xon, 6652 cols#80, it#8, lh#1, lines#24, lw#8, nlab#8, pb#9601, wsl#45, 6653 acsc=+/\,.0[Iha2fxgqh1jYk?lZm@nEqDtCu4vAwBx3yszr{c~~, 6654 bel=^G, blink=\EG2, cbt=\EI, civis=\E`0, clear=\E+$<50>, 6655 cnorm=\E`1, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 6656 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW$<7>, 6657 dim=\EGp, dl1=\ER$<3>, dsl=\EF\r, ed=\EY$<50>, el=\ET$<4>, 6658 flash=\E`8$<100/>\E`9, fsl=^M, home=^^, ht=\011$<1>, 6659 hts=\E1, il1=\EE$<3>, ind=\n$<3>, ip=$<2>, is1=\EcB0\EcC1, 6660 is2=\Ed$\EcD\E'\Er\EH\003\Ed/\EO\Ee1\Ed*\E`@\E`9\E`1\016\024\El, 6661 is3=\EwJ\Ew1$<150>, kHOM=\E{, kbs=^H, kcbt=\EI, kcub1=^H, 6662 kcud1=^J, kcuf1=^L, kcuu1=^K, kdch1=\EW, kdl1=\ER, ked=\EY, 6663 kel=\ET, kent=\E7, kf1=^A@\r, kf10=^AI\r, kf11=^AJ\r, 6664 kf12=^AK\r, kf13=^AL\r, kf14=^AM\r, kf15=^AN\r, kf16=^AO\r, 6665 kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, 6666 kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, khome=^^, kich1=\EQ, 6667 kil1=\EE, knp=\EK, kpp=\EJ, kprt=\EP, krpl=\Er, ll=^^^K, 6668 mc0=\EP, mc4=^T, mc5=\Ed#, nel=\r\n$<3>, 6669 pfloc=\EZ2%p1%{63}%+%c%p2%s\177, 6670 pfx=\EZ1%p1%{63}%+%c%p2%s\177, 6671 pln=\Ez%p1%{47}%+%c%p2%s\r, prot=\E), ri=\Ej$<2>, 6672 rmacs=\EcD, rmam=\Ed., rmcup=\Ew1, rmir=\Er, rmln=\EA11, 6673 rmxon=\Ec20, rs1=\E~!\E~4$<30>, rs2=\EeF\E`\:$<70>, 6674 rs3=\EwG\Ee($<100>, 6675 sgr=%?%p8%t\E)%e\E(%;%?%p9%t\EcE%e\EcD%;\EG%{48}%?%p2%t%{8}%|%;%?%p1%p3%|%p6%|%t%{4}%|%;%?%p4%t%{2}%|%;%?%p1%p5%|%t%{64}%|%;%?%p7%t%{1}%|%;%c, 6676 sgr0=\E(\EH\003\EG0\EcD, smacs=\EcE, smam=\Ed/, 6677 smcup=\Ew0, smir=\Eq, smln=\EA10, smso=\EGt, smxon=\Ec21, 6678 tbc=\E0, tsl=\EF, use=adm+sgr, 6679# 6680wy120-w|wyse120-w|wy150-w|wyse150-w|wyse 120/150 132-column, 6681 cols#132, lw#7, nlab#16, wsl#97, 6682 cup=\Ea%i%p1%dR%p2%dC, dch1=\EW$<12>, ip=$<4>, 6683 rs2=\E`;$<70>, use=wy120, 6684# 6685wy120-25|wyse120-25|wy150-25|wyse150-25|wyse 120/150 80-column 25-lines, 6686 lh@, lines#25, lw@, nlab@, 6687 pln@, rs3=\EwG\Ee)$<100>, use=wy120, 6688# 6689wy120-25-w|wyse120-25-w|wy150-25-w|wyse150-25-w|wyse 120/150 132-column 25-lines, 6690 lh@, lines#25, lw@, nlab@, 6691 pln@, rs3=\EwG\Ee)$<100>, use=wy120-w, 6692# 6693wy120-vb|wyse120-vb|wy150-vb|wyse150-vb|Wyse 120/150 visible bell, 6694 bel@, use=wy120, 6695# 6696wy120-w-vb|wy120-wvb|wyse120-wvb|wy150-w-vb|wyse150-w-vb|Wyse 120/150 132-column visible bell, 6697 bel@, use=wy120-w, 6698# 6699# The Wyse 60 is like the Wyse 50 but with more padding. 6700# The reset strings are slow and the pad times very depending 6701# on other parameters such as font loading. I have tried 6702# to follow the following outline: 6703# 6704# <rs1> -> set personality 6705# <rs2> -> set number of columns 6706# <rs3> -> set number of lines 6707# <is1> -> select the proper font 6708# <is2> -> do the initialization 6709# <is3> -> set up display memory (2 pages) 6710# 6711# The Wyse 60's that have vt100 emulation are slower than the 6712# older Wyse 60's. This change happened mid-1987. 6713# The capabilities effected are <dch1> <dl1> <il1> <ind> <ri> 6714# 6715# The meta key is only half right. This terminal will return the 6716# high order bit set when you hit CTRL-function_key 6717# 6718# It may be useful to assign two function keys with the 6719# values \E=(\s look at old data in page 1 6720# \E=W, look at bottom of page 1 6721# where \s is a space ( ). 6722# 6723# Note: 6724# The Wyse 60 runs faster when the XON/XOFF 6725# handshake is turned off. 6726# 6727# (wy60: we use \E{ rather than ^^ for home (both are documented) to avoid 6728# a bug reported by Robert Dunn, <rcdii@inlink.com> -- esr) 6729wy60|wyse60|Wyse 60, 6730 am, bw, hs, km, mc5i, mir, msgr, 6731 cols#80, lh#1, lines#24, lw#8, nlab#8, wsl#45, 6732 acsc=+/\,.0[Iha2fxgqh1jYk?lZm@nEqDtCu4vAwBx3yszr{c~~, 6733 bel=^G, blink=\EG2, cbt=\EI, civis=\E`0, clear=\E+$<100>, 6734 cnorm=\E`1, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 6735 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, 6736 dch1=\EW$<11>, dclk=\E`b, dim=\EGp, dl1=\ER$<5>, dsl=\EF\r, 6737 ed=\EY$<100>, el=\ET, flash=\E`8$<100/>\E`9, fsl=^M, 6738 home=\E{, ht=\011$<1>, hts=\E1, il1=\EE$<4>, ind=\n$<5>, 6739 ip=$<3>, is1=\EcB0\EcC1, 6740 is2=\Ed$\EcD\E'\Er\EH\003\Ed/\EO\Ee1\Ed*\E`@\E`9\E`1\016\024\El, 6741 is3=\EwJ\Ew1$<150>, kHOM=\E{, kbs=^H, kcbt=\EI, kcub1=^H, 6742 kcud1=^J, kcuf1=^L, kcuu1=^K, kdch1=\EW, kdl1=\ER, ked=\EY, 6743 kel=\ET, kent=\E7, kf1=^A@\r, kf10=^AI\r, kf11=^AJ\r, 6744 kf12=^AK\r, kf13=^AL\r, kf14=^AM\r, kf15=^AN\r, kf16=^AO\r, 6745 kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, 6746 kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, khome=^^, kich1=\EQ, 6747 kil1=\EE, knp=\EK, kpp=\EJ, kprt=\EP, krpl=\Er, ll=\E{^K, 6748 mc0=\EP, mc4=^T, mc5=\Ed#, nel=\r\n$<3>, 6749 pfloc=\EZ2%p1%{63}%+%c%p2%s\177, 6750 pfx=\EZ1%p1%{63}%+%c%p2%s\177, 6751 pln=\Ez%p1%{47}%+%c%p2%s\r, prot=\E), ri=\Ej$<7>, 6752 rmacs=\EcD, rmam=\Ed., rmclk=\E`c, rmcup=\Ew1, rmir=\Er, 6753 rmln=\EA11, rmxon=\Ec20, rs1=\E~!\E~4$<150>, 6754 rs2=\EeG$<150>, rs3=\EwG\Ee($<200>, 6755 sgr=%?%p8%t\E)%e\E(%;%?%p9%t\EcE%e\EcD%;\EG%{48}%?%p2%t%{8}%|%;%?%p1%p3%|%p6%|%t%{4}%|%;%?%p4%t%{2}%|%;%?%p1%p5%|%t%{64}%|%;%?%p7%t%{1}%|%;%c, 6756 sgr0=\E(\EH\003\EG0\EcD, smacs=\EcE, smam=\Ed/, 6757 smcup=\Ew0, smir=\Eq, smln=\EA10, smso=\EGt, smxon=\Ec21, 6758 tbc=\E0, tsl=\EF, use=adm+sgr, 6759# 6760wy60-w|wyse60-w|wyse 60 132-column, 6761 cols#132, lw#7, nlab#16, wsl#97, 6762 cup=\Ea%i%p1%dR%p2%dC, dch1=\EW$<16>, ip=$<5>, 6763 rs2=\EeF$<150>\E`;$<150>, use=wy60, 6764# 6765wy60-25|wyse60-25|wyse 60 80-column 25-lines, 6766 lh@, lines#25, lw@, nlab@, 6767 pln@, rs3=\EwG\Ee)$<200>, use=wy60, 6768wy60-25-w|wyse60-25-w|wyse 60 132-column 25-lines, 6769 lh@, lines#25, lw@, nlab@, 6770 pln@, rs3=\EwG\Ee)$<200>, use=wy60-w, 6771# 6772wy60-42|wyse60-42|wyse 60 80-column 42-lines, 6773 lines#42, 6774 clear=\E+$<260>, cup=\E=%p1%{32}%+%c%p2%{32}%+%c$<2>, 6775 dch1=\EW$<16>, dl1=\ER$<11>, ed=\Ey$<260>, il1=\EE$<11>, 6776 ind=\n$<9>, ip=$<5>, is1=\EcB2\EcC3, nel=\r\n$<6>, 6777 ri=\Ej$<10>, rs3=\Ee*$<150>, use=wy60, 6778wy60-42-w|wyse60-42-w|wyse 60 132-column 42-lines, 6779 cols#132, lw#7, nlab#16, wsl#97, 6780 clear=\E+$<260>, cup=\Ea%i%p1%dR%p2%dC$<2>, 6781 dch1=\EW$<19>, ed=\Ey$<260>, home=\036$<2>, ip=$<6>, 6782 nel=\r\n$<11>, rs2=\EeF$<150>\E`;$<150>, use=wy60-42, 6783# 6784wy60-43|wyse60-43|wyse 60 80-column 43-lines, 6785 lh@, lines#43, lw@, nlab@, 6786 pln@, rs3=\Ee+$<150>, use=wy60-42, 6787wy60-43-w|wyse60-43-w|wyse 60 132-column 43-lines, 6788 lh@, lines#43, lw@, nlab@, 6789 pln@, rs3=\Ee+$<150>, use=wy60-42-w, 6790# 6791wy60-vb|wyse60-vb|Wyse 60 visible bell, 6792 bel@, use=wy60, 6793wy60-w-vb|wy60-wvb|wyse60-wvb|Wyse 60 132-column visible bell, 6794 bel@, use=wy60-w, 6795 6796# The Wyse-99GT looks at lot like the Wyse 60 except that it 6797# does not have the 42/43 line mode. In the Wyse-60 the "lines" 6798# setup parameter controls the number of lines on the screen. 6799# For the Wyse 99GT the "lines" setup parameter controls the 6800# number of lines in a page. The screen can display 25 lines max. 6801# The Wyse-99GT also has personalities for the VT220 and 6802# Tektronix 4014. But this has no bearing on the native mode. 6803# 6804# (msgr) should be set but the clear screen fails when in 6805# alt-charset mode. Try \EcE\s\s\E+\s if the screen is really clear 6806# then set msgr, else use msgr@. 6807# 6808# u0 -> enter Tektronix mode 6809# u1 -> exit Tektronix mode 6810# 6811wy99gt|wyse99gt|Wyse 99gt, 6812 msgr@, 6813 clear=\E+$<130>, dch1=\EW$<7>, dl1=\ER$<4>, ed=\Ey$<130>, 6814 el=\Et$<5>, flash=\E`8$<100/>\E`9, ht=\011$<1>, 6815 il1=\EE$<4>, ind=\n$<4>, ip=$<2>, is3=\Ew0$<20>, nel@, 6816 ri=\Ej$<3>, rmcup=\Ew0, rs2=\E`\:$<150>, smcup=\Ew1, 6817 u0=\E~>\E8, u1=\E[42h, use=wy60, 6818# 6819wy99gt-w|wyse99gt-w|wyse 99gt 132-column, 6820 cols#132, lw#7, nlab#16, wsl#97, 6821 clear=\E+$<160>, cup=\Ea%i%p1%dR%p2%dC$<2>, 6822 dch1=\EW$<9>, ed=\Ey$<160>, ip=$<4>, rs2=\E`;$<150>, 6823 use=wy99gt, 6824# 6825wy99gt-25|wyse99gt-25|wyse 99gt 80-column 25-lines, 6826 lh@, lines#25, lw@, nlab@, 6827 pln@, rs2=\E`\:$<150>, rs3=\EwG\Ee)$<200>, use=wy99gt, 6828# 6829wy99gt-25-w|wyse99gt-25-w|wyse 99gt 132-column 25-lines, 6830 lh@, lines#25, lw@, nlab@, 6831 pln@, rs2=\E`;$<150>, use=wy99gt-w, 6832# 6833wy99gt-vb|wyse99gt-vb|Wyse 99gt visible bell, 6834 bel@, use=wy99gt, 6835# 6836wy99gt-w-vb|wy99gt-wvb|wyse99gt-wvb|Wyse 99gt 132-column visible bell, 6837 bel@, use=wy99gt-w, 6838 6839# Can't set tabs! Other bugs (ANSI mode only): 6840# - can't redefine function keys (anyway, key redefinition in ANSI mode 6841# is too much complex to be described); 6842# - meta key can't be described (the terminal forgets it when reset); 6843# The xon-xoff handshaking can't be disabled while in ansi personality, so 6844# emacs can't work at speed greater than 9600 baud. No padding is needed at 6845# this speed. 6846# dch1 has been commented out because it causes annoying glittering when 6847# vi deletes one character at the beginning of a line with tabs in it. 6848# dch makes sysgen(1M) have a horrible behaviour when deleting 6849# a screen and makes screen(1) behave badly, so it is disabled too. The nice 6850# thing is that vi goes crazy if smir-rmir are present and both dch-dch1 are 6851# not, so smir and rmir are commented out as well. 6852# From: Francesco Potorti` <F.Potorti@cnuce.cnr.it>, 24 Aug 1998 6853wy99-ansi|Wyse WY-99GT in ansi mode (int'l PC keyboard), 6854 am, km, mc5i, mir, msgr, xenl, 6855 cols#80, it#8, lines#25, vt#3, 6856 acsc=``aaffggjjkkllmmnnooqqssttuuvvwwxx{{||}}~~, 6857 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, civis=\E[?25l, 6858 clear=\E[H\E[J$<200>, cnorm=\E[34h\E[?25h, cr=^M, 6859 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD$<1>, 6860 cub1=\010$<1>, cud=\E[%p1%dB, cud1=\ED, 6861 cuf=\E[%p1%dC$<1>, cuf1=\E[C$<1>, 6862 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\EM, 6863 cvvis=\E[34l\E[?25h, dim=\E[2m, dl=\E[%p1%dM, dl1=\E[M, 6864 ech=\E[%p1%dX, ed=\E[J$<8*>, el=\E[K$<1>, el1=\E[1K$<1>, 6865 enacs=\E)0, flash=\E[?5h$<30/>\E[?5l, home=\E[H, 6866 hpa=\E[%i%p1%dG, ht=^I, ich=\E[%p1%d@, il=\E[%p1%dL, 6867 il1=\E[L, ind=\n$<1>, invis=\E[8m, 6868 is2=\E7\E[1r\E8\E[2;3;4;13;20;34;39;36l\E[12;16;34h\E[?1;3;4;5;10;18l\E[?7;8;25h\E>\E[?5W\E(B\017\E[4i, 6869 kbs=^H, kcbt=\E[z, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, 6870 kcuu1=\EOA, kf1=\EOP, kf10=\E[21~, kf11=\E[23~, 6871 kf12=\E[24~, kf17=\E[K, kf18=\E[31~, kf19=\E[32~, kf2=\EOQ, 6872 kf20=\E[33~, kf21=\E[34~, kf22=\E[35~, kf23=\E[1~, 6873 kf24=\E[2~, kf3=\EOR, kf4=\EOS, kf5=\E[M, kf6=\E[17~, 6874 kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, ll=\E[24E, mc0=\E[?19h, 6875 mc4=\E[4i, mc5=\E[5i, nel=\EE, prot=\E[1"q, rc=\E8, 6876 rev=\E[7m, ri=\EM, rmacs=^O, rmam=\E[?7l, rmir=\E[4l, 6877 rmkx=\E[?1l, rmso=\E[27m, rmul=\E[24m, 6878 rs2=\E[61"p\E[40h\E[?6l\E[1r\E[2;3;4;13;20;34;39;36l\E[12;16;34h\E[?1;3;4;5;10;18l\E[?7;8;25h\E>\E[?5W\E(B\017\E[24E\E[4i, 6879 sc=\E7, 6880 sgr=\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p1%p3%O%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p7%t;8%;m\E[%?%p8%t1%;"q%?%p9%t\016%e\017%;, 6881 sgr0=\E[m\017\E["q, smacs=^N, smam=\E[?7h, smir=\E[4h, 6882 smkx=\E[?1h, smso=\E[7m, smul=\E[4m, vpa=\E[%i%p1%dd, 6883 6884# This is the american terminal. Here tabs work fine. 6885# From: Francesco Potorti` <F.Potorti@cnuce.cnr.it>, 24 Aug 1998 6886wy99a-ansi|Wyse WY-99GT in ansi mode (US PC keyboard), 6887 hts=\EH, is3=\E[?5l, rs3=\E[?5l, tbc=\E[3g, use=wy99-ansi, 6888 6889# This terminal (firmware version 02) has a lot of bugs: 6890# - can't set tabs; 6891# - other bugs in ANSI modes (see above). 6892# This description disables handshaking when using cup. This is because 6893# GNU emacs doesn't like Xon-Xoff handshaking. This means the terminal 6894# cannot be used at speeds greater than 9600 baud, because at greater 6895# speeds handshaking is needed even for character sending. If you use 6896# DTR handshaking, you can use even greater speeds. 6897# From: Francesco Potorti` <F.Potorti@cnuce.cnr.it>, 24 Aug 1998 6898wy99f|wy99fgt|wy-99fgt|Wyse WY-99GT (int'l PC keyboard), 6899 am, bw, hs, km, mc5i, mir, msgr, xon, 6900 cols#80, it#8, lines#25, wsl#46, 6901 acsc='x+y.wI~_vj(k'l&m%n)o9q*s8t-u.v\,w+x=, bel=^G, 6902 blink=\EG2, cbt=\EI, civis=\E`0, clear=\E'\E(\032, 6903 cnorm=\E`4\E`1, cr=^M, cub1=^H, cud1=\Ej, cuf1=^L, 6904 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, 6905 cvvis=\E`2\E`1, dch1=\EW, dim=\EGp, dl1=\ER, dsl=\EF\r, 6906 ed=\EY$<8*>, el=\ET$<8>, enacs=\Ec@1J$<2000>, 6907 flash=\E\^1$<30/>\E\^0, fsl=^M, home=^^, ht=^I, il1=\EE, 6908 ind=^J, invis=\EG3, 6909 is2=\Eu\Ee6\EC\EDF\Ec21\Ec31\Ec62\Ec72\Ee;\016\E'\EeL\E`9\E\^0\E`1\E`4\Ee.\E`\:\Ee1\EG0\E(\Ed/\Ee4\Ed*\EO\E`I\Er\Ee"\EcD\024, 6910 ka1=^^, ka3=\EJ, kbs=^H, kc1=\ET, kc3=\EK, kcbt=\EI, kcub1=^H, 6911 kcud1=^J, kcuf1=^L, kcuu1=^K, kf1=^A@\r, kf10=^AI\r, 6912 kf11=^AJ\r, kf12=^AK\r, kf13=^A`\r, kf14=^Aa\r, kf15=^Ab\r, 6913 kf16=^Ac\r, kf17=^Ad\r, kf18=^Ae\r, kf19=^Af\r, kf2=^AA\r, 6914 kf20=^Ag\r, kf21=^Ah\r, kf22=^Ai\r, kf23=^Aj\r, kf24=^Ak\r, 6915 kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, 6916 kf8=^AG\r, kf9=^AH\r, kprt=\EP, mc0=\EP, mc4=^T, mc5=\Ed#, 6917 nel=^_, prot=\E), rev=\EG4, ri=\Ej, rmacs=\EcD, rmam=\Ed., 6918 rmcup=\Ec21\Ec31, rmir=\Er, rmso=\EG0, rmxon=\Ec20\Ec30, 6919 rs2=\Eu\E~4\Ee6\EC\EDF\Ec21\Ec31\Ec62\Ec72\Ee;\016\E'\EeL\E`9\E\^0\E`1\E`4\Ee.\E`\:\Ee)\Ew\EwG\Ew0\Ee1\EG0\E(\Ed/\Ee4\Ed*\EO\E`I\Er\Ee"\Ec@0B\EcD\024, 6920 sgr=\E(\EG%{48}%?%p1%p3%O%t%{4}%+%;%?%p2%t%{8}%+%;%?%p4%t%{2}%+%;%?%p5%t%{64}%+%;%?%p7%t%{1}%+%;%c%?%p8%t\E)%;%?%p9%t\EcE%e\EcD%;, 6921 sgr0=\E(\EG0, smacs=\EcE, smam=\Ed/, smcup=\Ec20\Ec30, 6922 smir=\Eq, smso=\EG4, smxon=\Ec21\Ec31, tsl=\EF, 6923 6924# This is the american terminal. Here tabs work. 6925# From: Francesco Potorti` <F.Potorti@cnuce.cnr.it>, 24 Aug 1998 6926wy99fa|wy99fgta|wy-99fgta|Wyse WY-99GT (US PC keyboard), 6927 hts=\E1, tbc=\E0, use=wy99f, 6928 6929# 6930# The Wyse 160 is combination of the WY-60 and the WY-99gt. 6931# The reset strings are slow and the pad times very depending 6932# on other parameters such as font loading. I have tried 6933# to follow the following outline: 6934# 6935# <rs1> -> set personality 6936# <rs2> -> set number of columns 6937# <rs3> -> set number of lines 6938# <is1> -> select the proper font 6939# <is2> -> do the initialization 6940# <is3> -> set up display memory (2 pages) 6941# 6942# The display memory may be used for either text or graphics. 6943# When "Display Memory = Shared" the terminal will have more pages 6944# but garbage may be left on the screen when you switch from 6945# graphics to text. If "Display Memory = Unshared" then the 6946# text area will be only one page long. 6947# 6948# (wy160: we use \E{ rather than ^^ for home (both are documented) to avoid 6949# a bug reported by Robert Dunn, <rcdii@inlink.com> -- esr) 6950wy160|wyse160|Wyse 160, 6951 am, bw, hs, km, mc5i, mir, msgr, 6952 cols#80, lh#1, lines#24, lw#8, nlab#8, wsl#38, 6953 acsc=+/\,.0[Iha2fxgqh1jYk?lZm@nEqDtCu4vAwBx3yszr{c~~, 6954 bel=^G, blink=\EG2, cbt=\EI, civis=\E`0, clear=\E+$<30>, 6955 cnorm=\E`1, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 6956 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW$<5>, 6957 dclk=\E`b, dim=\EGp, dl1=\ER$<1>, dsl=\EF\r, ed=\EY$<30>, 6958 el=\ET$<5>, flash=\E`8$<100/>\E`9, fsl=^M, home=\E{, ht=^I, 6959 hts=\E1, il1=\EE$<1>, ind=\n$<1>, ip=$<2>, is1=\EcB0\EcC1, 6960 is2=\Ed$\EcD\E'\Er\EH\003\Ed/\EO\Ee1\Ed*\E`@\E`9\E`1\016\024\El, 6961 is3=\Ew0$<100>, kHOM=\E{, kbs=^H, kcbt=\EI, kcub1=^H, 6962 kcud1=^J, kcuf1=^L, kcuu1=^K, kdch1=\EW, kdl1=\ER, ked=\EY, 6963 kel=\ET, kent=\E7, kf1=^A@\r, kf10=^AI\r, kf11=^AJ\r, 6964 kf12=^AK\r, kf13=^AL\r, kf14=^AM\r, kf15=^AN\r, kf16=^AO\r, 6965 kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, 6966 kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, khome=^^, kich1=\EQ, 6967 kil1=\EE, knp=\EK, kpp=\EJ, kprt=\EP, krpl=\Er, ll=\E{^K, 6968 mc0=\EP, mc4=^T, mc5=\Ed#, nel=\r\n$<1>, 6969 pfloc=\EZ2%p1%{63}%+%c%p2%s\177, 6970 pfx=\EZ1%p1%{63}%+%c%p2%s\177, 6971 pln=\Ez%p1%{47}%+%c%p2%s\r, prot=\E), ri=\Ej$<1>, 6972 rmacs=\EcD, rmam=\Ed., rmclk=\E`c, rmcup=\Ew0, rmir=\Er, 6973 rmln=\EA11, rmxon=\Ec20, rs1=\E~!\E~4$<70>, 6974 rs2=\E`\:$<100>, rs3=\EwG\Ee($<140>, 6975 sgr=%?%p8%t\E)%e\E(%;%?%p9%t\EcE%e\EcD%;\EG%{48}%?%p2%t%{8}%|%;%?%p1%p3%|%p6%|%t%{4}%|%;%?%p4%t%{2}%|%;%?%p1%p5%|%t%{64}%|%;%?%p7%t%{1}%|%;%c, 6976 sgr0=\E(\EH\003\EG0\EcD, smacs=\EcE, smam=\Ed/, 6977 smcup=\Ew1, smir=\Eq, smln=\EA10, smso=\EGt, smxon=\Ec21, 6978 tbc=\E0, tsl=\EF, use=adm+sgr, 6979# 6980wy160-w|wyse160-w|wyse 160 132-column, 6981 cols#132, lw#7, nlab#16, wsl#90, 6982 cup=\Ea%i%p1%dR%p2%dC, dch1=\EW$<9>, 6983 rs2=\EeF$<150>\E`;$<150>, use=wy160, 6984# 6985wy160-25|wyse160-25|wyse 160 80-column 25-lines, 6986 lh@, lines#25, lw@, nlab@, 6987 pln@, rs3=\EwG\Ee)$<200>, use=wy160, 6988wy160-25-w|wyse160-25-w|wyse 160 132-column 25-lines, 6989 lh@, lines#25, lw@, nlab@, 6990 pln@, rs3=\EwG\Ee)$<200>, use=wy160-w, 6991# 6992wy160-42|wyse160-42|wyse 160 80-column 42-lines, 6993 lines#42, 6994 clear=\E+$<50>, dl1=\ER$<2>, ed=\Ey$<50>, il1=\EE$<2>, 6995 ind=\n$<2>, is1=\EcB2\EcC3, nel=\r\n$<2>, ri=\Ej$<2>, 6996 rs3=\Ee*$<150>, use=wy160, 6997wy160-42-w|wyse160-42-w|wyse 160 132-column 42-lines, 6998 cols#132, lw#7, nlab#16, wsl#90, 6999 cup=\Ea%i%p1%dR%p2%dC, dch1=\EW$<8>, ip=$<3>, 7000 rs2=\EeF$<150>\E`;$<150>, use=wy160-42, 7001# 7002wy160-43|wyse160-43|wyse 160 80-column 43-lines, 7003 lh@, lines#43, lw@, nlab@, 7004 pln@, rs3=\Ee+$<150>, use=wy160-42, 7005wy160-43-w|wyse160-43-w|wyse 160 132-column 43-lines, 7006 lh@, lines#43, lw@, nlab@, 7007 pln@, rs3=\Ee+$<150>, use=wy160-42-w, 7008# 7009wy160-vb|wyse160-vb|Wyse 160 visible bell, 7010 bel@, use=wy160, 7011wy160-w-vb|wy160-wvb|wyse160-wvb|Wyse 160 132-column visible bell, 7012 bel@, use=wy160-w, 7013# 7014# The Wyse 75 is a vt100 lookalike without advanced video. 7015# 7016# The Wyse 75 can support one attribute (e.g. Dim, Inverse, 7017# Underline) without magic cookies. The following description 7018# uses this capability, but when more than one attribute is 7019# put on the screen at once, all attributes will be changed 7020# to be the same as the last attribute given. 7021# The Wyse 75 can support more attributes when used with magic 7022# cookies. The wy75-mc terminal description uses magic cookies 7023# to correctly handle multiple attributes on a screen. 7024# 7025wy75|wyse75|wyse 75, 7026 am, hs, mc5i, mir, msgr, xenl, xon, 7027 cols#80, lines#24, ma#1, pb#1201, wsl#78, 7028 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 7029 bel=^G, cbt=\E[Z, civis=\E[?25l, clear=\E[H\E[J$<30>, 7030 cnorm=\E[?25h, cr=^M, csr=\E[%i%p1%d;%p2%dr$<2>, 7031 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=^J, 7032 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 7033 cuu=\E[%p1%dA, cuu1=\E[A, dch=\E[%p1%dP$<3*>, 7034 dch1=\E[P$<3>, dim=\E[0t\E[2m, dl=\E[%p1%dM$<1*>, 7035 dl1=\E[M, dsl=\E[>\,\001\001\E[>-\001\001, 7036 ech=\E[%p1%dX, ed=\E[J$<30>, el=\E[K$<3>, el1=\E[1K$<3>, 7037 enacs=\E)0, flash=\E[30h\E\,\E[30l$<250>, fsl=^A, 7038 home=\E[H, hpa=\E[%i%p1%dG, ht=^I, hts=\EH, 7039 ich=\E[%p1%d@$<1*>, il=\E[%p1%dL$<2*>, il1=\E[L$<2>, 7040 ind=\n$<2>, ip=$<1>, 7041 is1=\E[2;4;20;30l\E[?1;10l\E[12h\E[?7;8;25h, 7042 is2=\E>\E(B\E)0\017, is3=\E[m, ka1=\EOw, ka3=\EOy, 7043 kb2=\EOu, kbs=^H, kc1=\EOq, kc3=\EOs, kcub1=\E[D, kcud1=\E[B, 7044 kcuf1=\E[C, kcuu1=\E[A, kdl1=\E[M, kel=\E[K, kent=\EOM, 7045 kf1=\E[?5i, kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, 7046 kf13=\E[25~, kf14=\E[26~, kf15=\E[28~, kf16=\E[29~, 7047 kf17=\E[31~, kf18=\E[32~, kf19=\E[33~, kf2=\E[?3i, 7048 kf20=\E[34~, kf21=\E[35~, kf3=\E[2i, kf4=\E[@, kf5=\E[M, 7049 kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, kfnd=\E[1~, 7050 khlp=\E[28~, khome=\E[H, kich1=\E[@, kil1=\E[L, knp=\E[6~, 7051 kpp=\E[5~, kprt=\E[?5i, kslt=\E[4~, mc0=\E[0i, mc4=\E[4i, 7052 mc5=\E[5i, rc=\E8, rev=\E[1t\E[7m, ri=\EM$<2>, rmacs=^O, 7053 rmam=\E[?7l, rmir=\E[4l, rmkx=\E>, rmso=\E[m, rmul=\E[m, 7054 rs1=\E[13l\E[3l\E!p, rs2=\E[35h\E[?3l$<80>, rs3=\E[?5l, 7055 sc=\E7, 7056 sgr=%?%p5%t\E[0t%;%?%p3%p1%|%t\E[1t%;%?%p2%t\E[2t%;%?%p4%t\E[3t%;%?%p1%p2%p3%p4%p5%|%|%|%|%t\E[7m%e\E[m%;%?%p9%t\016%e\017%;, 7057 sgr0=\E[m\017, smacs=^N, smam=\E[?7h, smir=\E[4h, 7058 smkx=\E[?1l\E[?7h\E=, smso=\E[1t\E[7m, smul=\E[2t\E[4m, 7059 tbc=\E[3g, tsl=\E[>\,\001, 7060# 7061# This terminal description uses the non-hidden attribute mode 7062# (with magic cookie). 7063# 7064wy75-mc|wyse75-mc|wyse 75 with magic cookies, 7065 msgr@, 7066 ma@, xmc#1, 7067 blink=\E[2p, dim=\E[1p, invis=\E[4p, is3=\E[m\E[p, 7068 rev=\E[16p, rmacs=\E[0p\017, rmso=\E[0p, rmul=\E[0p, 7069 sgr=\E[%{0}%?%p2%p6%|%t%{8}%|%;%?%p1%p3%|%p6%|%t%{16}%|%;%?%p4%t%{2}%|%;%?%p1%p5%|%t%{1}%|%;%?%p7%t%{4}%|%;%dp%?%p9%t\016%e\017%;, 7070 sgr0=\E[0p\017, smacs=\E[0p\016, smso=\E[17p, smul=\E[8p, 7071 use=wy75, 7072wy75-vb|wyse75-vb|wyse 75 with visible bell, 7073 pb@, 7074 bel@, use=wy75, 7075wy75-w|wyse75-w|wyse 75 in 132 column mode, 7076 cols#132, wsl#130, 7077 rs2=\E[35h\E[?3h$<80>, use=wy75, 7078wy75-wvb|wyse75-wvb|wyse 75 with visible bell 132 columns, 7079 pb@, 7080 bel@, use=wy75-w, 7081# 7082# Wyse 85 emulating a vt220 7 bit mode. 7083# 24 line screen with status line. 7084# 7085# The vt220 mode permits more function keys but it wipes out 7086# the escape key. I strongly recommend that <f11> be set to 7087# escape (esc). 7088# The terminal may have to be set for 8 data bits and 2 stop 7089# bits for the arrow keys to work. 7090# The Wyse 85 runs faster with XON/XOFF enabled. Also the 7091# <dch> and <ich> work best when XON/XOFF is set. <ich> and 7092# <dch> leave trash on the screen when used without XON/XOFF. 7093# 7094wy85|wyse85|wyse 85, 7095 am, hs, mc5i, mir, msgr, xenl, xon, 7096 cols#80, it#8, lines#24, wsl#80, 7097 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 7098 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, civis=\E[?25l, 7099 clear=\E[H\E[J$<110>, cnorm=\E[?25h, cr=^M, 7100 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 7101 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 7102 cup=\E[%i%p1%d;%p2%dH$<1>, cuu=\E[%p1%dA, cuu1=\E[A, 7103 dch=\E[%p1%dP$<3*>, dch1=\E[P$<3>, dim=\E[2m, 7104 dl=\E[%p1%dM$<3*>, dl1=\E[M$<3>, dsl=\E[40l, 7105 ech=\E[%p1%dX, ed=\E[J$<110>, el=\E[K$<1>, el1=\E[1K, 7106 enacs=\E)0, flash=\E[30h\E\,\E[30l$<300>, 7107 fsl=\E[1;24r\E8, home=\E[H, ht=\011$<1>, hts=\EH, 7108 ich=\E[%p1%d@$<4*>, il=\E[%p1%dL$<5*>, il1=\E[L$<5>, 7109 ind=\n$<3>, invis=\E[8m, ip=$<3>, is1=\E[62;1"p\E[?5W, 7110 is2=\E[2;4;20;30l\E[?1;4;10;16l\E[12h\E[?7;8;25h$<16>, 7111 is3=\E>\E(B\E)0\017\E[m, ka1=\EOw, ka3=\EOy, kb2=\EOu, 7112 kbs=^H, kc1=\EOq, kc3=\EOs, kcub1=\E[D, kcud1=\E[B, 7113 kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[3~, kent=\EOM, kf1=\EOP, 7114 kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, kf13=\E[25~, 7115 kf14=\E[26~, kf15=\E[28~, kf16=\E[29~, kf17=\E[31~, 7116 kf18=\E[32~, kf19=\E[33~, kf2=\EOQ, kf20=\E[34~, kf3=\EOR, 7117 kf4=\EOS, kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, 7118 kfnd=\E[1~, khlp=\E[28~, khome=\E[26~, kich1=\E[2~, 7119 knp=\E[6~, kpp=\E[5~, kslt=\E[4~, lf1=PF1, lf2=PF2, lf3=PF3, 7120 lf4=PF4, mc0=\E[0i, mc4=\E[4i, mc5=\E[5i, rc=\E8, rev=\E[7m, 7121 ri=\EM$<3>, rmacs=^O, rmam=\E[?7l, rmir=\E[4l, rmkx=\E>, 7122 rmso=\E[m, rmul=\E[m, rs1=\E[13l\E[3l\E!p, 7123 rs2=\E[35h\E[?3l$<70>, rs3=\E[?5l, sc=\E7, 7124 sgr=\E[0%?%p2%t;4%;%?%p3%p1%|%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p6%t;1%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 7125 sgr0=\E[m\017, smacs=^N, smam=\E[?7h, smir=\E[4h, 7126 smkx=\E[?1l\E=, smso=\E[7m, smul=\E[4m, tbc=\E[3g, 7127 tsl=\E[40h\E7\E[25;%i%p1%dH, 7128# 7129# Wyse 85 with visual bell. 7130wy85-vb|wyse85-vb|wyse 85 with visible bell, 7131 bel@, flash=\E[30h\E\,\E[30l$<300>, use=wy85, 7132# 7133# Wyse 85 in 132-column mode. 7134wy85-w|wyse85-w|wyse 85 in 132-column mode, 7135 cols#132, wsl#132, 7136 rs2=\E[35h\E[?3h$<70>, use=wy85, 7137# 7138# Wyse 85 in 132-column mode with visual bell. 7139wy85-wvb|wyse85-wvb|wyse 85 with visible bell 132-columns, 7140 bel@, use=wy85-w, 7141 7142# From: Kevin Turner <kevint@aracnet.com>, 12 Jul 1998 7143# This copes with an apparent firmware bug in the wy85. He writes: 7144# "What I did was change leave the terminal cursor keys set to Normal 7145# (instead of application), and change \E[ to \233 for all the keys in 7146# terminfo. At one point, I found some reference indicating that this 7147# terminal bug (not sending \E[) was acknowledged by Wyse (so it's not just 7148# me), but I can't find that and the server under my bookmark to "Wyse 7149# Technical" isn't responding. So there's the question of wether the wy85 7150# terminfo should reflect the manufactuer's intended behaviour of the terminal 7151# or the actual." 7152wy85-8bit|wyse85-8bit|wyse 85 in 8-bit mode, 7153 am, hs, mc5i, mir, msgr, xenl, xon, 7154 cols#80, it#8, lines#24, wsl#80, 7155 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 7156 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, civis=\E[?25l, 7157 clear=\E[H\E[J$<110>, cnorm=\E[?25h, cr=^M, 7158 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 7159 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 7160 cup=\E[%i%p1%d;%p2%dH$<1>, cuu=\E[%p1%dA, cuu1=\E[A, 7161 dch=\E[%p1%dP$<3*>, dch1=\E[P$<3>, dim=\E[2m, 7162 dl=\E[%p1%dM$<3*>, dl1=\E[M$<3>, dsl=\E[40l, 7163 ech=\E[%p1%dX, ed=\E[J$<110>, el=\E[K$<1>, el1=\E[1K, 7164 enacs=\E)0, flash=\E[30h\E\,\E[30l$<300>, 7165 fsl=\E[1;24r\E8, home=\E[H, ht=\011$<1>, hts=\EH, 7166 ich=\E[%p1%d@$<4*>, il=\E[%p1%dL$<5*>, il1=\E[L$<5>, 7167 ind=\n$<3>, invis=\E[8m, ip=$<3>, is1=\E[62;1"p\E[?5W, 7168 is2=\E[2;4;20;30l\E[?1;4;10;16l\E[12h\E[?7;8;25h$<16>, 7169 is3=\E>\E(B\E)0\017\E[m, ka1=\EOw, ka3=\EOy, kb2=\EOu, 7170 kbs=^H, kc1=\EOq, kc3=\EOs, kcub1=\233D, kcud1=\233B, 7171 kcuf1=\233C, kcuu1=\233A, kdch1=\2333~, kent=\EOM, 7172 kf1=\EOP, kf10=\23321~, kf11=\23323~, kf12=\23324~, 7173 kf13=\23325~, kf14=\23326~, kf15=\23328~, kf16=\23329~, 7174 kf17=\23331~, kf18=\23332~, kf19=\23333~, kf2=\EOQ, 7175 kf20=\23334~, kf3=\EOR, kf4=\EOS, kf6=\23317~, kf7=\23318~, 7176 kf8=\23319~, kf9=\23320~, kfnd=\2331~, khlp=\23328~, 7177 khome=\23326~, kich1=\2332~, knp=\2336~, kpp=\2335~, 7178 kslt=\2334~, lf1=PF1, lf2=PF2, lf3=PF3, lf4=PF4, mc0=\E[0i, 7179 mc4=\E[4i, mc5=\E[5i, rc=\E8, rev=\E[7m, ri=\EM$<3>, 7180 rmacs=^O, rmam=\E[?7l, rmir=\E[4l, rmkx=\E>, rmso=\E[m, 7181 rmul=\E[m, rs1=\E[13l\E[3l\E!p, rs2=\E[35h\E[?3l$<70>, 7182 rs3=\E[?5l, sc=\E7, 7183 sgr=\E[0%?%p2%t;4%;%?%p3%p1%|%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p6%t;1%;%?%p7%t;8%;+m%?%p9%t\016%e\017%;, 7184 sgr0=\E[m\017, smacs=^N, smam=\E[?7h, smir=\E[4h, 7185 smkx=\E[?1l\E=, smso=\E[7m, smul=\E[4m, tbc=\E[3g, 7186 tsl=\E[40h\E7\E[25;%i%p1%dH, 7187# 7188# Wyse 185 emulating a vt320 7 bit mode. 7189# 7190# This terminal always displays 25 lines. These lines may be used 7191# as 24 data lines and a terminal status line (top or bottom) or 7192# 25 data lines. The 48 and 50 line modes change the page size 7193# and not the number of lines on the screen. 7194# 7195# The Compose Character key can be used as a meta key if changed 7196# by set-up. 7197# 7198wy185|wyse185|wyse 185, 7199 am, hs, km, mc5i, mir, msgr, xenl, xon, 7200 cols#80, it#8, lines#24, wsl#80, 7201 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 7202 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, civis=\E[?25l, 7203 clear=\E[H\E[J$<40>, cnorm=\E[34h\E[?25h, cr=^M, 7204 csr=\E[%i%p1%d;%p2%dr$<20>, cub=\E[%p1%dD, cub1=^H, 7205 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 7206 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 7207 cvvis=\E[?25h\E[34l, dch=\E[%p1%dP$<3>, dch1=\E[P$<3>, 7208 dim=\E[2m, dl=\E[%p1%dM$<2*>, dl1=\E[M$<2>, 7209 dsl=\E7\E[99;0H\E[K\E8, ech=\E[%p1%dX, ed=\E[J$<40>, 7210 el=\E[K, el1=\E[1K, enacs=\E)0, 7211 flash=\E[30h\E\,\E[30l$<100>, fsl=\E[1;24r\E8, 7212 home=\E[H, hpa=\E[%i%p1%d`, ht=^I, hts=\EH, 7213 ich=\E[%p1%d@$<2>, il=\E[%p1%dL$<3*>, il1=\E[L$<3>, 7214 ind=\n$<2>, invis=\E[8m, ip=$<4>, is1=\E[?5W, 7215 is2=\E[2;4;20;30l\E[?1;4;10;16l\E[12h\E[?7;8;25h, 7216 is3=\E>\E(B\E)0\017\E[m, ka1=\EOw, ka3=\EOy, kb2=\EOu, 7217 kbs=^H, kc1=\EOq, kc3=\EOs, kcbt=\E[Z, kcub1=\E[D, 7218 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[3~, kent=\EOM, 7219 kf1=\EOP, kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, 7220 kf13=\E[25~, kf14=\E[26~, kf15=\E[28~, kf16=\E[29~, 7221 kf17=\E[31~, kf18=\E[32~, kf19=\E[33~, kf2=\EOQ, 7222 kf20=\E[34~, kf3=\EOR, kf4=\EOS, kf6=\E[17~, kf7=\E[18~, 7223 kf8=\E[19~, kf9=\E[20~, kfnd=\E[1~, khlp=\E[28~, 7224 khome=\E[26~, kich1=\E[2~, knp=\E[6~, kpp=\E[5~, 7225 kslt=\E[4~, lf1=PF1, lf2=PF2, lf3=PF3, lf4=PF4, mc0=\E[0i, 7226 mc4=\E[4i, mc5=\E[5i, rc=\E8, rev=\E[7m, ri=\EM$<2>, 7227 rmacs=^O, rmam=\E[?7l, rmcup=\E[ R, rmir=\E[4l, rmkx=\E>, 7228 rmso=\E[27m, rmul=\E[24m, 7229 rs1=\E[13l\E[3l\E\\\E[63;1"p\E[!p, rs2=\E[35h\E[?3l, 7230 rs3=\E[?5l\E[47h\E[40l\E[r, sc=\E7, 7231 sgr=\E[0%?%p2%t;4%;%?%p3%p1%|%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p6%t;1%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 7232 sgr0=\E[m\017, smacs=^N, smam=\E[?7h, smcup=\E[ Q, 7233 smir=\E[4h, smkx=\E[?1l\E=, smso=\E[7m, smul=\E[4m, 7234 tbc=\E[3g, tsl=\E7\E[99;%i%p1%dH, vpa=\E[%i%p1%dd, 7235# 7236# Wyse 185 with 24 data lines and top status (terminal status) 7237wy185-24|wyse185-24|wyse 185 with 24 data lines, 7238 hs@, 7239 dsl@, fsl@, rs3=\E[?5l\E[47h\E[40l\E[1;24r, tsl@, 7240 use=wy185, 7241# 7242# Wyse 185 with visual bell. 7243wy185-vb|wyse185-vb|wyse 185+flash, 7244 bel@, use=wy185, 7245# 7246# Wyse 185 in 132-column mode. 7247wy185-w|wyse185-w|wyse 185 in 132-column mode, 7248 cols#132, wsl#132, 7249 dch=\E[%p1%dP$<7>, dch1=\E[P$<7>, ich=\E[%p1%d@$<7>, 7250 ip=$<7>, rs2=\E[35h\E[?3h, use=wy185, 7251# 7252# Wyse 185 in 132-column mode with visual bell. 7253wy185-wvb|wyse185-wvb|wyse 185+flash+132 cols, 7254 bel@, use=wy185-w, 7255 7256# wy325 terminfo entries 7257# Done by Joe H. Davis 3-9-92 7258 7259# lines 25 columns 80 7260# 7261wy325|wyse325|Wyse epc, 7262 am, bw, hs, mc5i, mir, 7263 cols#80, lh#1, lines#24, lw#8, nlab#8, pb#9601, wsl#45, 7264 acsc=+/\,.0[Iha2fxgqh1jYk?lZm@nEqDtCu4vAwBx3yszr{c~~, 7265 bel=^G, blink=\EG2, cbt=\EI, civis=\E`0, clear=\E+$<50>, 7266 cnorm=\E`1, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 7267 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW$<7>, 7268 dim=\EGp, dl1=\ER$<3>, dsl=\EF\r, ed=\EY$<50>, el=\ET$<4>, 7269 flash=\E`8$<100/>\E`9, fsl=^M, home=^^, ht=^I, hts=\E1, 7270 il1=\EE$<3>, ind=\n$<3>, ip=$<2>, is1=\EcB0\EcC1, 7271 is2=\EcD\E'\Er\EH\003\Ed/\EO\Ee1\Ed*\E`@\E`9\E`1\016\024\El, 7272 is3=\Ew0$<16>, kHOM=\E{, kbs=^H, kcbt=\EI, kcub1=^H, 7273 kcud1=^J, kcuf1=^L, kcuu1=^K, kdch1=\EW, kdl1=\ER, ked=\EY, 7274 kel=\ET, kent=\E7, kf1=^A@\r, kf10=^AI\r, kf11=^AJ\r, 7275 kf12=^AK\r, kf13=^AL\r, kf14=^AM\r, kf15=^AN\r, kf16=^AO\r, 7276 kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, 7277 kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, khome=^^, kich1=\Eq, 7278 kil1=\EE, knp=\EK, kpp=\EJ, kprt=\EP, krpl=\Er, ll=^^^K, 7279 mc0=\EP, mc4=^T, mc5=\Ed#, 7280 pfloc=\EZ2%p1%{63}%+%c%p2%s\177, 7281 pfx=\EZ1%p1%{63}%+%c%p2%s\177, 7282 pln=\Ez%p1%{47}%+%c%p2%s\r, prot=\E), ri=\Ej$<2>, 7283 rmacs=\EcD, rmam=\Ed., rmcup=\Ew0, rmir=\Er, rmln=\EA11, 7284 rs1=\E~!\E~4$<30>, rs2=\EeF\E`\:$<70>, 7285 rs3=\EwG\Ee($<100>, 7286 sgr=%?%p8%t\E)%e\E(%;%?%p9%t\EcE%e\EcD%;\EG%{48}%?%p2%t%{8}%|%;%?%p1%p3%|%p6%|%t%{4}%|%;%?%p4%t%{2}%|%;%?%p1%p5%|%t%{64}%|%;%?%p7%t%{1}%|%;%c, 7287 sgr0=\E(\EH\003\EG0\EcD, smacs=\EcE, smam=\Ed/, 7288 smcup=\Ew1, smir=\Eq, smln=\EA10, smso=\EGt, tbc=\E0, 7289 tsl=\EF, use=adm+sgr, 7290 7291# 7292# lines 24 columns 80 vb 7293# 7294wy325-vb|wyse325-vb|wyse-325 with visual bell, 7295 bel@, use=wy325, 7296 7297# 7298# lines 24 columns 132 7299# 7300wy325-w|wyse325-w|wy325w-24|wyse-325 in wide mode, 7301 cols#132, lw#7, nlab#16, wsl#97, 7302 cup=\Ea%i%p1%dR%p2%dC, dch1=\EW$<12>, ip=$<4>, 7303 rs2=\E`;$<70>, use=wy325, 7304# 7305# lines 25 columns 80 7306# 7307wy325-25|wyse325-25|wy325-80|wyse-325|wyse-325 25 lines, 7308 lh@, lines#25, lw@, nlab@, 7309 pln@, rs3=\EwG\Ee)$<100>, use=wy325, 7310# 7311# lines 25 columns 132 7312# 7313wy325-25w|wyse325-25w|wy325 132 columns, 7314 lh@, lines#25, lw@, nlab@, 7315 pln@, rs3=\EwG\Ee)$<100>, use=wy325-w, 7316# 7317# lines 25 columns 132 vb 7318# 7319wy325-w-vb|wy325-wvb|wyse325-wvb|wyse-325 wide mode reverse video, 7320 bel@, use=wy325-w, 7321 7322# 7323# lines 42 columns 80 7324# 7325wy325-42|wyse325-42|wyse-325 42 lines, 7326 lh@, lines#42, lw@, nlab@, 7327 pln@, rs3=\EwG\Ee)$<100>, use=wy325, 7328# 7329# lines 42 columns 132 7330# 7331wy325-42w|wyse325-42w|wyse-325 42 lines wide mode, 7332 lh@, lines#42, lw@, nlab@, 7333 pln@, rs3=\EwG\Ee)$<100>, use=wy325-w, 7334# 7335# lines 42 columns 132 vb 7336# 7337wy325-42w-vb|wy325-42wvb|wyse-325 42 lines wide mode visual bell, 7338 bel@, use=wy325-w, 7339# 7340# lines 43 columns 80 7341# 7342wy325-43|wyse325-43|wyse-325 43 lines, 7343 lh@, lines#43, lw@, nlab@, 7344 pln@, use=wy325, 7345# 7346# lines 43 columns 132 7347# 7348wy325-43w|wyse325-43w|wyse-325 43 lines wide mode, 7349 lh@, lines#43, lw@, nlab@, 7350 pln@, rs3=\EwG\Ee)$<100>, use=wy325-w, 7351# 7352# lines 43 columns 132 vb 7353# 7354wy325-43w-vb|wy325-43wvb|wyse-325 43 lines wide mode visual bell, 7355 bel@, use=wy325-w, 7356 7357# Wyse 370 -- 24 line screen with status line. 7358# 7359# The terminal may have to be set for 8 data bits and 2 stop 7360# bits for the arrow keys to work. 7361# 7362# If you change keyboards the terminal will send different 7363# escape sequences. 7364# The following definition is for the basic terminal without 7365# function keys. 7366# 7367# <u0> -> enter Tektronix 4010/4014 mode 7368# <u1> -> exit Tektronix 4010/4014 mode 7369# <u2> -> enter ASCII mode (from any ANSI mode) 7370# <u3> -> exit ASCII mode (goto native ANSI mode) 7371# <u4> -> enter Tek 4207 ANSI mode (from any ANSI mode) 7372# <u5> -> exit Tek 4207 mode (goto native ANSI mode) 7373# 7374# Bug: The <op> capability resets attributes. 7375wy370-nk|wyse 370 without function keys, 7376 am, ccc, hs, mc5i, mir, msgr, xenl, xon, 7377 colors#64, cols#80, it#8, lines#24, ncv#48, pairs#64, wsl#80, 7378 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 7379 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, civis=\E[?25l, 7380 clear=\E[H\E[J$<40>, cnorm=\E[34h\E[?25h, cr=^M, 7381 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 7382 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 7383 cup=\E[%i%p1%d;%p2%dH$<1>, cuu=\E[%p1%dA, cuu1=\E[A, 7384 cvvis=\E[?25h\E[34l, dch=\E[%p1%dP$<1*>, dch1=\E[P$<1>, 7385 dclk=\E[31h, dim=\E[2m, dl=\E[%p1%dM$<2*>, dl1=\E[M$<2>, 7386 dsl=\E[40l, ech=\E[%p1%dX$<.1*>, ed=\E[J$<40>, 7387 el=\E[K$<10>, el1=\E[1K$<12>, enacs=\E)0, 7388 flash=\E[30h\E\,\E[30l$<300>, fsl=\E[1;24r\E8, 7389 home=\E[H, hpa=\E[%i%p1%d`, ht=\011$<1>, hts=\EH, 7390 ich=\E[%p1%d@$<1*>, il=\E[%p1%dL$<2*>, il1=\E[L$<2>, 7391 ind=\n$<2>, 7392 initc=\E[66;%p1%d;%?%p2%{250}%<%t%{0}%e%p2%{500}%<%t%{16}%e%p2%{750}%<%t%{32}%e%{48}%;%?%p3%{250}%<%t%{0}%e%p3%{500}%<%t%{4}%e%p3%{750}%<%t%{8}%e%{12}%;%?%p4%{250}%<%t%{0}%e%p4%{500}%<%t%{1}%e%p4%{750}%<%t%{2}%e%{3}%;%{1}%+%+%+%dw, 7393 invis=\E[8m, ip=$<1>, is1=\E[90;1"p\E[?5W$<6>, 7394 is2=\E[2;4;20;30;40l\E[?1;10;16l\E[12h\E[?7;8;25h, 7395 is3=\E>\017\E)0\E(B\E[63;0w\E[m, mc0=\E[0i, mc4=\E[4i, 7396 mc5=\E[5i, 7397 oc=\E[60w\E[63;0w\E[66;1;4w\E[66;2;13w\E[66;3;16w\E[66;4;49w\E[66;5;51w\E[66;6;61w\E[66;7;64w, 7398 op=\E[m, rc=\E8, rev=\E[7m, ri=\EM$<2>, rmacs=^O, 7399 rmam=\E[?7l, rmclk=\E[31l, rmcup=\E[ R, rmir=\E[4l, 7400 rmkx=\E>, rmso=\E[27m, rmul=\E[24m, 7401 rs1=\E[13l\E[3l\E!p\E[?4i, rs2=\E[35h\E[?3l$<8>, 7402 rs3=\E[?5l, sc=\E7, setb=\E[62;%p1%dw, setf=\E[61;%p1%dw, 7403 sgr=\E[0%?%p2%t;4%;%?%p3%p1%|%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p6%t;1%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 7404 sgr0=\E[m\017, smacs=^N, smam=\E[?7h, smcup=\E[ Q, 7405 smir=\E[4h, smkx=\E[?1l\E=, smso=\E[7m, smul=\E[4m, 7406 tbc=\E[3g, tsl=\E[40l\E[40h\E7\E[99;%i%p1%dH, 7407 u0=\E[?38h\E8, u1=\E[?38l\E)0, u2=\E[92;52"p, u3=\E~B, 7408 u4=\E[92;76"p, u5=\E%!1\E[90;1"p, vpa=\E[%i%p1%dd, 7409# 7410# Function key set for the ASCII (wy-50 compatible) keyboard 7411# This is the default 370. 7412# 7413wy370|wyse370|wy370-101k|Wyse 370 with 101 key keyboard, 7414 kbs=^H, kcbt=\E[Z, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, 7415 kcuu1=\E[A, kdch1=\EOQ, kdl1=\EOQ, kent=\EOM, kf1=\E[?4i, 7416 kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, kf13=\E[25~, 7417 kf14=\E[26~, kf15=\E[28~, kf16=\E[29~, kf2=\E[?3i, 7418 kf3=\E[2i, kf4=\E[@, kf5=\E[M, kf6=\E[17~, kf7=\E[18~, 7419 kf8=\E[19~, kf9=\E[20~, khome=\E[H, kich1=\EOP, kil1=\EOP, 7420 knp=\E[U, kpp=\E[V, use=wy370-nk, 7421# 7422# Function key set for the VT-320 (and wy85) compatible keyboard 7423# 7424wy370-105k|Wyse 370 with 105 key keyboard, 7425 ka1=\EOw, ka3=\EOy, kb2=\EOu, kbs=^H, kc1=\EOq, kc3=\EOs, 7426 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 7427 kdch1=\E[3~, kent=\EOM, kf1=\EOP, kf10=\E[21~, kf11=\E[23~, 7428 kf12=\E[24~, kf13=\E[25~, kf14=\E[26~, kf15=\E[28~, 7429 kf16=\E[29~, kf17=\E[31~, kf18=\E[32~, kf19=\E[33~, 7430 kf2=\EOQ, kf20=\E[34~, kf3=\EOR, kf4=\EOS, kf6=\E[17~, 7431 kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, kfnd=\E[1~, 7432 khlp=\E[28~, khome=\E[26~, kich1=\E[2~, knp=\E[6~, 7433 kpp=\E[5~, kslt=\E[4~, lf1=PF1, lf2=PF2, lf3=PF3, lf4=PF4, 7434 use=wy370-nk, 7435# 7436# Function key set for the PC compatible keyboard 7437# 7438wy370-EPC|Wyse 370 with 102 key keyboard, 7439 kbs=^H, kcbt=\E[Z, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, 7440 kcuu1=\E[A, kend=\E[1~, kent=\EOM, kf1=\EOP, kf10=\E[21~, 7441 kf11=\E[23~, kf12=\E[24~, kf2=\EOQ, kf3=\EOR, kf4=\EOS, 7442 kf5=\E[M, kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, 7443 khome=\E[H, kich1=\E[2~, knp=\E[U, kpp=\E[V, use=wy370-nk, 7444# 7445# Wyse 370 with visual bell. 7446wy370-vb|Wyse 370 with visible bell, 7447 bel@, use=wy370, 7448# 7449# Wyse 370 in 132-column mode. 7450wy370-w|Wyse 370 in 132-column mode, 7451 cols#132, wsl#132, 7452 rs2=\E[35h\E[?3h$<70>, use=wy370, 7453# 7454# Wyse 370 in 132-column mode with visual bell. 7455wy370-wvb|Wyse 370 with visible bell 132-columns, 7456 flash=\E[30h\E\,\E[30l$<300>, use=wy370-w, 7457wy370-rv|Wyse 370 reverse video, 7458 rs3=\E[32h\E[?5h, use=wy370, 7459# 7460# Wyse 99gt Tektronix 4010/4014 emulator, 7461# 7462wy99gt-tek|Wyse 99gt Tektronix 4010/4014 emulator, 7463 am, os, 7464 cols#74, lines#35, 7465 bel=^G, clear=\E^L, cr=^M, cub1=^H, cud1=^J, cuf1=\s, 7466 cup=\035%{3040}%{89}%p1%*%-%Py%p2%{55}%*%Px%gy%{128}%/%{31}%&%{32}%+%c%gy%{3}%&%{4}%*%gx%{3}%&%+%{96}%+%c%gy%{004}%/%{31}%&%{96}%+%c%gx%{128}%/%{31}%&%{32}%+%c%gx%{004}%/%{31}%&%{64}%+%c\037, 7467 cuu1=^K, ff=^L, 7468 hd=\036HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH\037, 7469 home=^]7`x @\037, 7470 hu=\036DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD\037, 7471 is2=\E8, nel=^M^J, u0=\E~>\E8, u1=\E[42h, 7472# 7473# Wyse 160 Tektronix 4010/4014 emulator, 7474# 7475wy160-tek|Wyse 160 Tektronix 4010/4014 emulator, 7476 cup=\035%{3103}%{91}%p1%*%-%Py%p2%{55}%*%Px%gy%{128}%/%{31}%&%{32}%+%c%gy%{3}%&%{4}%*%gx%{3}%&%+%{96}%+%c%gy%{004}%/%{31}%&%{96}%+%c%gx%{128}%/%{31}%&%{32}%+%c%gx%{004}%/%{31}%&%{64}%+%c\037, 7477 home=^]8`g @\037, use=wy99gt-tek, 7478# 7479# Wyse 370 Tektronix 4010/4014 emulator, 7480# 7481wy370-tek|Wyse 370 Tektronix 4010/4014 emulator, 7482 am, os, 7483 cols#80, lines#36, 7484 bel=^G, clear=\E^L, cr=^M, cub1=^H, cud1=^J, cuf1=\s, 7485 cup=\035%{775}%{108}%p1%*%{5}%/%-%Py%p2%{64}%*%{4}%+%{5}%/%Px%gy%{32}%/%{31}%&%{32}%+%c%gy%{31}%&%{96}%+%c%gx%{32}%/%{31}%&%{32}%+%c%gx%{31}%&%{64}%+%c\037, 7486 cuu1=^K, ff=^L, 7487 hd=\036HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH\037, 7488 home=^]8g @\037, 7489 hu=\036DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD\037, 7490 is2=\E8, kbs=^H, kcub1=^H, kcud1=^J, kcuf1=^I, kcuu1=^K, 7491 nel=^M^J, u0=\E[?38h\E8, u1=\E[?38l\E)0, 7492 7493# Vendor-supplied Wyse entries end here. 7494 7495# 7496#TITLE: TERMINFO ENTRY WY520 7497#DATE: 8/5/93 7498# The WY520 terminfo is based on the WY285 entry published on the WYSE 7499# BBS with the addition of more function keys and special keys. 7500# 7501# rs1 -> set personality 7502# rs2 -> set number of columns 7503# rs3 -> set number of lines 7504# is1 -> select the proper font 7505# is2 -> do the initialization 7506# is3 -> If this string is empty then rs3 gets sent. 7507# 7508# Wyse 520 emulating a vt420 7 bit mode with default ANSI keyboard 7509# - The BS key is programmed to generate BS in smcup since 7510# is2 doesn't seem to work. 7511# - Remove and shift/Remove: delete a character 7512# - Insert : enter insert mode 7513# - Find : delete to end of file 7514# - Select : clear a line 7515# - F11, F12, F13: send default sequences (not ESC, BS, LF) 7516# - F14 : Home key 7517# - Bottom status line (host writable line) is used. 7518# - smkx,rmkx are removed because this would put the numeric 7519# keypad in Dec application mode which doesn't seem to work 7520# with SCO applications. 7521# 7522wy520|wyse520|wyse 520, 7523 am, hs, km, mc5i, mir, xenl, xon, 7524 cols#80, it#8, lines#24, wsl#80, 7525 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 7526 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, civis=\E[?25l, 7527 clear=\E[H\E[J$<40>, cnorm=\E[34h\E[?25h, cr=^M, 7528 csr=\E[%i%p1%d;%p2%dr$<20>, cub=\E[%p1%dD, cub1=^H, 7529 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 7530 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 7531 cvvis=\E[?25h\E[34l, dch=\E[%p1%dP$<3>, dch1=\E[P$<30>, 7532 dim=\E[2m, dl=\E[%p1%dM$<2*>, dl1=\E[M$<2>, dsl=\E[0$~, 7533 ech=\E[%p1%dX, ed=\E[J$<40>, el=\E[K, el1=\E[1K, 7534 enacs=\E)0, fsl=\E[0$}, home=\E[H, hpa=\E[%i%p1%d`, ht=^I, 7535 hts=\EH, ich=\E[%p1%d@$<2>, il=\E[%p1%dL$<3*>, 7536 il1=\E[L$<3>, ind=\n$<2>, invis=\E[8m, ip=$<4>, is1=\E[?5W, 7537 is2=\E[2;4;20;30l\E[?1;4;10;16l\E[12h\E[?7;8;25;67h, 7538 is3=\E>\E(B\E)0\017\E[m, ka1=\EOw, ka3=\EOu, kb2=\EOy, 7539 kbs=^H, kc1=\EOq, kc3=\EOs, kcbt=\E[Z, kcub1=\E[D, 7540 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[3~, ked=\E[1~, 7541 kel=\E[4~, kent=\EOM, kf1=\EOP, kf10=\E[21~, kf11=\E[23~, 7542 kf12=\E[24~, kf13=\E[25~, kf14=\E[26~, kf15=\E[28~, 7543 kf16=\E[29~, kf17=\E[31~, kf18=\E[32~, kf19=\E[33~, 7544 kf2=\EOQ, kf20=\E[34~, kf3=\EOR, kf4=\EOS, kf6=\E[17~, 7545 kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, kfnd=\E[1~, 7546 khlp=\E[28~, khome=\E[26~, kich1=\E[2~, knp=\E[6~, 7547 kpp=\E[5~, kslt=\E[4~, lf1=PF1, lf2=PF2, lf3=PF3, lf4=PF4, 7548 mc0=\E[0i, mc4=\E[4i, mc5=\E[5i, rc=\E8, rev=\E[7m, 7549 ri=\EM$<2>, rmacs=^O, rmam=\E[?7l, rmcup=\E[ R, rmir=\E[4l, 7550 rmso=\E[m, rmul=\E[24m, 7551 rs1=\E[13l\E[3l\E\\\E[63;1"p\E[!p, rs2=\E[35h\E[?3l, 7552 rs3=\E[?5l\E[47h\E[40l\E[r, sc=\E7, 7553 sgr=\E[0%?%p2%t;4%;%?%p3%p1%|%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p6%t;1%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 7554 sgr0=\E[m\017, smacs=^N, smam=\E[?7h, 7555 smcup=\E[ Q\E[?67;8h, smir=\E[4h, smso=\E[7m, smul=\E[4m, 7556 tbc=\E[3g, tsl=\E[2$~\E[1$}\E[%i%p1%d`, 7557 vpa=\E[%i%p1%dd, 7558# 7559# Wyse 520 with 24 data lines and status (terminal status) 7560wy520-24|wyse520-24|wyse 520 with 24 data lines, 7561 hs@, 7562 dsl@, fsl@, rs3=\E[?5l\E[47h\E[40l\E[1;24r, tsl@, 7563 use=wy520, 7564# 7565# Wyse 520 with visual bell. 7566wy520-vb|wyse520-vb|wyse 520 with visible bell, 7567 flash=\E[30h\E\,\E[30l$<100>, use=wy520, 7568# 7569# Wyse 520 in 132-column mode. 7570wy520-w|wyse520-w|wyse 520 in 132-column mode, 7571 cols#132, wsl#132, 7572 dch=\E[%p1%dP$<7>, dch1=\E[P$<7>, ich=\E[%p1%d@$<7>, 7573 ip=$<7>, rs2=\E[35h\E[?3h, use=wy520, 7574# 7575# Wyse 520 in 132-column mode with visual bell. 7576wy520-wvb|wyse520-wvb|wyse 520 with visible bell 132-columns, 7577 flash=\E[30h\E\,\E[30l$<100>, use=wy520-w, 7578# 7579# 7580# Wyse 520 emulating a vt420 7 bit mode. 7581# The DEL key is programmed to generate BS in is2. 7582# With EPC keyboard. 7583# - 'End' key will clear till end of line on EPC keyboard 7584# - Shift/End : ignored. 7585# - Insert : enter insert mode. 7586# - Delete : delete a character (have to change interrupt character 7587# to CTRL-C: stty intr '^c') for it to work since the 7588# Delete key sends 7FH. 7589wy520-epc|wyse520-epc|wyse 520 with EPC keyboard, 7590 kdch1=\177, kel=\E[4~, kend=\E[4~, kf0=\E[21~, kf1=\E[11~, 7591 kf2=\E[12~, kf3=\E[13~, kf4=\E[14~, kf5=\E[15~, khome=\E[H, 7592 use=wy520, 7593# 7594# Wyse 520 with 24 data lines and status (terminal status) 7595# with EPC keyboard. 7596wy520-epc-24|wyse520-pc-24|wyse 520 with 24 data lines and EPC keyboard, 7597 hs@, 7598 dsl@, fsl@, rs3=\E[?5l\E[47h\E[40l\E[1;24r, tsl@, 7599 use=wy520-epc, 7600# 7601# Wyse 520 with visual bell. 7602wy520-epc-vb|wyse520-pc-vb|wyse 520 with visible bell and EPC keyboard, 7603 flash=\E[30h\E\,\E[30l$<100>, use=wy520-epc, 7604# 7605# Wyse 520 in 132-column mode. 7606wy520-epc-w|wyse520-epc-w|wyse 520 in 132-column mode with EPC keyboard, 7607 cols#132, wsl#132, 7608 dch=\E[%p1%dP$<7>, dch1=\E[P$<7>, ich=\E[%p1%d@$<7>, 7609 ip=$<7>, rs2=\E[35h\E[?3h, use=wy520-epc, 7610# 7611# Wyse 520 in 132-column mode with visual bell. 7612wy520-epc-wvb|wyse520-p-wvb|wyse 520 with visible bell 132-columns and EPC keyboard, 7613 flash=\E[30h\E\,\E[30l$<100>, use=wy520-epc-w, 7614# 7615# Wyse 520 in 80-column, 36 lines 7616wy520-36|wyse520-36|wyse 520 with 36 data lines, 7617 hs@, 7618 lines#36, 7619 dsl@, fsl@, rs3=\E[?5l\E[36*|\E[36t\E[40l\E[1;36r, tsl@, 7620 use=wy520, 7621# 7622# Wyse 520 in 80-column, 48 lines 7623wy520-48|wyse520-48|wyse 520 with 48 data lines, 7624 hs@, 7625 lines#48, 7626 dsl@, fsl@, rs3=\E[?5l\E[48*|\E[48t\E[40l\E[1;48r, tsl@, 7627 use=wy520, 7628# 7629# Wyse 520 in 132-column, 36 lines 7630wy520-36w|wyse520-36w|wyse 520 with 132 columns and 36 data lines, 7631 cols#132, wsl#132, 7632 rs2=\E[?3h, 7633 rs3=\E[?5l\E[36*|\E[36t\E[40l\E[1;36r\E[132$|, 7634 use=wy520-36, 7635# 7636# Wyse 520 in 132-column, 48 lines 7637wy520-48w|wyse520-48w|wyse 520 with 48 data lines, 7638 cols#132, wsl#132, 7639 rs2=\E[?3h, 7640 rs3=\E[?5l\E[48*|\E[48t\E[40l\E[1;48r\E[132$|, 7641 use=wy520-48, 7642# 7643# 7644# Wyse 520 in 80-column, 36 lines with EPC keyboard 7645wy520-36pc|wyse520-36pc|wyse 520 with 36 data lines and EPC keyboard, 7646 hs@, 7647 lines#36, 7648 dsl@, fsl@, rs3=\E[?5l\E[36*|\E[36t\E[40l\E[1;36r, tsl@, 7649 use=wy520-epc, 7650# 7651# Wyse 520 in 80-column, 48 lines with EPC keyboard 7652wy520-48pc|wyse520-48pc|wyse 520 with 48 data lines and EPC keyboard, 7653 hs@, 7654 lines#48, 7655 dsl@, fsl@, rs3=\E[?5l\E[48*|\E[48t\E[40l\E[1;48r, tsl@, 7656 use=wy520-epc, 7657# 7658# Wyse 520 in 132-column, 36 lines with EPC keyboard 7659wy520-36wpc|wyse520-36wpc|wyse 520 with 36 data lines and EPC keyboard, 7660 cols#132, wsl#132, 7661 rs2=\E[?3h, 7662 rs3=\E[?5l\E[36*|\E[36t\E[40l\E[1;36r\E[132$|, 7663 use=wy520-36pc, 7664# 7665# Wyse 520 in 132-column, 48 lines with EPC keyboard 7666wy520-48wpc|wyse520-48wpc|wyse 520 with 48 data lines and EPC keyboard, 7667 cols#132, wsl#132, 7668 rs2=\E[?3h, 7669 rs3=\E[?5l\E[48*|\E[48t\E[40l\E[1;48r\E[132$|, 7670 use=wy520-48pc, 7671 7672# From: John Gilmore <hoptoad!gnu@lll-crg.arpa> 7673# (wyse-vp: removed <if=/usr/share/tabset/wyse-adds>, there's no such 7674# file and we don't know what <hts> is -- esr) 7675wyse-vp|Wyse 50 in ADDS Viewpoint emulation mode with "enhance" on, 7676 OTbs, am, 7677 cols#80, it#8, lines#24, 7678 bel=^G, clear=^L, cr=^M, cub1=^H, cud1=^J, cuf1=^F, 7679 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=^Z, dch1=\EW, 7680 dl1=\El, ed=\Ek, el=\EK, home=^A, ht=^I, il1=\EM, ind=^J, 7681 is2=\E`\:\E`9\017\Er, kbs=^H, kcub1=^U, kcud1=^J, kcuf1=^F, 7682 kcuu1=^Z, khome=^A, ll=^A^Z, nel=^M^J, rmir=\Er, rmso=^O, 7683 rmul=^O, rs1=\E`\:\E`9\017\Er, sgr0=^O, smir=\Eq, smso=^N, 7684 smul=^N, 7685 7686wy75ap|wyse75ap|wy-75ap|wyse-75ap|Wyse WY-75 Applications and Cursor keypad, 7687 is2=\E[1;24r\E[?10;3l\E[?1;25h\E[4l\E[m\E(B\E=, 7688 kbs=^H, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, 7689 khome=\EOH, rmkx=\E[?1l\E>$<10/>, smkx=\E[?1h\E=$<10/>, 7690 use=wy75, 7691 7692# From: Eric Freudenthal <freudent@eric.ultra.nyu.edu> 7693wy100q|Wyse 100 for Quotron, 7694 OTbs, 7695 cols#80, lines#24, xmc#1, 7696 cbt=\EI, clear=^Z, cub1=^H, cud1=^J, cuf1=^L, 7697 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW, 7698 dl1=\ER, ed=\EY, el=\ET, home=^^, il1=\EE, invis@, 7699 is2=\E`\:\0\EC\EDF\E0\E'\E(\EA21, kcub1=^H, kcud1=^J, 7700 kcuf1=^L, kcuu1=^K, ri=\Ej, rmir=\Er, smir=\Eq, use=adm+sgr, 7701 7702#### Kermit terminal emulations 7703# 7704# Obsolete Kermit versions may be listed in the section describing obsolete 7705# non-ANSI terminal emulators later in the file. 7706# 7707 7708# KERMIT standard all versions. 7709# Straight ascii keyboard. :sr=\EI: not avail. many versions + bug prone in vi. 7710# (kermit: removed obsolete ":ma=^Hh^Jj^Kk^Ll^^H:" -- esr) 7711# From: greg small <gts@populi.berkeley.edu> 9-25-84 7712kermit|standard kermit, 7713 OTbs, 7714 cols#80, lines#24, 7715 clear=\EE, cub1=^H, cuf1=\EC, 7716 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, ed=\EJ, 7717 el=\EK, home=\EH, is2=K0 Standard Kermit 9-25-84\n, 7718 kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, khome=^^, 7719kermit-am|standard kermit plus auto-margin, 7720 am, 7721 is2=K1 Standard Kermit plus Automatic Margins\n, 7722 use=kermit, 7723# IBMPC Kermit 1.2. 7724# Bugs: <ed>, <el>: do not work except at beginning of line! <clear> does 7725# not work, but fake with :cl=\EH\EJ (since :cd=\EJ: works at beginning of 7726# line). 7727# From: greg small <gts@populi.berkeley.edu> 8-30-84 7728pckermit|pckermit12|UCB IBMPC Kermit 1.2, 7729 am, 7730 lines#25, 7731 clear=\EH\EJ, ed@, el@, 7732 is2=K2 UCB IBMPC Kermit 1.2 8-30-84\n, use=kermit, 7733# IBMPC Kermit 1.20 7734# Cannot use line 25, now acts funny like ansi special scrolling region. 7735# Initialization must escape from that region by cursor position to line 24. 7736# Cannot use character insert because 1.20 goes crazy if insert at col 80. 7737# Does not use :am: because autowrap is lost when kermit dropped and restarted. 7738# From: greg small <gts@populi.berkeley.edu> 12-19-84 7739pckermit120|UCB IBMPC Kermit 1.20, 7740 it#8, lines#24, 7741 cud1=\EB, cvvis=\EO\Eq\EEK3, dch1=\EN, dl1=\EM, ht=^I, 7742 il1=\EL, 7743 is2=\EO\Eq\EJ\EY7 K3 UCB IBMPC Kermit 1.20 12-19-84\n, 7744 rmir@, rmso=\Eq, smir@, smso=\Ep, use=kermit, 7745# MS-DOS Kermit 2.27 for the IBMPC 7746# Straight ascii keyboard. :sr=\EI: not avail. many versions + bug prone in vi. 7747# Cannot use line 25, now acts funny like ansi special scrolling region. 7748# Initialization must escape from that region by cursor position to line 24. 7749# Does not use am: because autowrap is lost when kermit dropped and restarted. 7750# Reverse video for standout like H19. 7751# (msk227: removed obsolete ":ma=^Hh^Jj^Kk^Ll^^H:" -- esr) 7752# From: greg small <gts@populi.berkeley.edu> 3-17-85 7753msk227|mskermit227|MS-DOS Kermit 2.27 for the IBMPC, 7754 OTbs, am@, 7755 cols#80, it#8, lines#24, 7756 clear=\EE, cub1=^H, cud1=\EB, cuf1=\EC, 7757 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, 7758 cvvis=\EO\Eq\EG\EwK4, dch1=\EN, dl1=\EM, ed=\EJ, el=\EK, 7759 home=\EH, ht=^I, il1=\EL, 7760 is2=\EO\Eq\EG\Ew\EJ\EY7 K4 MS Kermit 2.27 for the IBMPC 3-17-85\n, 7761 kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, khome=^^, rc=\Ek, 7762 rmir=\EO, rmso=\Eq, sc=\Ej, smir=\E@, smso=\Ep, 7763# MS-DOS Kermit 2.27 with automatic margins 7764# From: greg small <gts@populi.berkeley.edu> 3-17-85 7765msk227am|mskermit227am|UCB MS-DOS Kermit 2.27 with automatic margins, 7766 am, 7767 cvvis=\EO\Eq\EG\EvK5, 7768 is2=\EO\Eq\EG\Ev\EJ\EY7 K5 MS Kermit 2.27 +automatic margins 3-17-85\n, 7769 use=msk227, 7770# MS-DOS Kermit 2.27 UCB 227.14 for the IBM PC 7771# Automatic margins now default. Use ansi <sgr> for highlights. 7772# Define function keys. 7773# (msk22714: removed obsolete ":kn#10:" -- esr) 7774# From: greg small <gts@populi.berkeley.edu> 3-17-85 7775msk22714|mskermit22714|UCB MS-DOS Kermit 2.27 UCB 227.14 IBM PC, 7776 am, 7777 bold=\E[1m, cvvis=\EO\Eq\EG\EvK6, 7778 is2=\EO\Eq\EG\Ev\EJ\EY7 K6 MS Kermit 2.27 UCB 227.14 IBM PC 3-17-85\n, 7779 kf0=\E0, kf1=\E1, kf2=\E2, kf3=\E3, kf4=\E4, kf5=\E5, kf6=\E6, 7780 kf7=\E7, kf8=\E8, kf9=\E9, rev=\E[7m, rmso=\E[m, rmul=\E[m, 7781 sgr0=\E[m, smso=\E[1m, smul=\E[4m, use=mskermit227, 7782# This was designed for a VT320 emulator, but it is probably a good start 7783# at support for the VT320 itself. 7784# Please send changes with explanations to bug-gnu-emacs@prep.ai.mit.edu. 7785# (vt320-k3: I added <rmam>/<smam> based on the init string -- esr) 7786vt320-k3|MS-Kermit 3.00's vt320 emulation, 7787 am, eslok, hs, km, mir, msgr, xenl, 7788 cols#80, it#8, lines#49, pb#9600, vt#3, 7789 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 7790 bel=^G, blink=\E[5m, bold=\E[1m, civis=\E[?25l, 7791 clear=\E[H\E[J, cmdch=\E, cnorm=\E[?25h, cr=^M, 7792 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 7793 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 7794 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 7795 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, 7796 dsl=\E[0$~, ech=\E[%p1%dX, ed=\E[J, el=\E[K, 7797 flash=\E[?5h\E[?5l\E[?5h\E[?5l\E[?5h\E[?5l, 7798 fsl=\E[0$}, home=\E[H, hpa=\E[%i%p1%dG, ht=^I, hts=\EH, 7799 ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L, ind=^J, 7800 is2=\E>\E F\E[?1l\E[?7h\E[r\E[2$~, kbs=^H, kcub1=\EOD, 7801 kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kdl1=\E[3~, kf0=\E[21~, 7802 kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf6=\E[17~, 7803 kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, kich1=\E[2~, knp=\E[6~, 7804 kpp=\E[5~, mc0=\E[0i, mc4=\E[4i, mc5=\E[5i, nel=^M^J, rc=\E8, 7805 rev=\E[7m, ri=\EM, rin=\E[%p1%dL, rmacs=\E(B, rmam=\E[?7l, 7806 rmir=\E[4l, rmkx=\E[?1l\E>, rmso=\E[27m, rmul=\E[24m, 7807 rs1=\E(B\E)B\E>\E F\E[4;20l\E[12h\E[?1;5;6;38;42l\E[?7;25h\E[4i\E[?4i\E[m\E[r\E[2$~, 7808 sc=\E7, sgr0=\E[m, smacs=\E(0, smam=\E[?7h, smir=\E[4h, 7809 smkx=\E[?1h\E=, smso=\E[7m, smul=\E[4m, tbc=\E[3g, 7810 tsl=\E[1$}\r\E[K, vpa=\E[%i%p1%dd, 7811# From: Joseph Gil <yogi@cs.ubc.ca> 13 Dec 1991 7812# ACS capabilities from Philippe De Muyter <phdm@info.ucl.ac.be> 30 May 1996 7813# (I removed a bogus boolean :mo: and added <msgr>, <smam>, <rmam> -- esr) 7814vt320-k311|dec vt320 series as defined by kermit 3.11, 7815 am, eslok, hs, mir, msgr, xenl, xon, 7816 cols#80, it#8, lines#24, vt#3, 7817 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 7818 bel=^G, blink=\E[5m, bold=\E[1m, civis=\E[?25l, 7819 clear=\E[;H\E[2J, cnorm=\E[?25h, cr=^M, 7820 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 7821 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 7822 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 7823 cvvis=\E[?25h, dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, 7824 dl1=\E[M, dsl=\E[2$~\r\E[1$}\E[K\E[$}, ed=\E[J, el=\E[K, 7825 flash=\E[?5h\E[?5l, fsl=\E[$}, home=\E[H, ht=^I, hts=\EH, 7826 ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L$<3/>, ind=\ED, 7827 is2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h\E[1;24r\E[24;1H, 7828 kbs=^H, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, 7829 kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf6=\E[17~, 7830 kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, lf1=pf1, lf2=pf2, 7831 lf3=pf3, lf4=pf4, nel=^M\ED, rc=\E8, rev=\E[7m, 7832 rf=/usr/share/tabset/vt100, ri=\EM, rmacs=^O, 7833 rmam=\E[?7l, rmir=\E[4l, rmkx=\E[?1l\E>, rmso=\E[27m, 7834 rmul=\E[24m, rs1=\E[?3l, sc=\E7, sgr0=\E[m, smacs=^N, 7835 smam=\E[?7h, smir=\E[4h, smkx=\E[?1h\E=, smso=\E[7m, 7836 smul=\E[4m, tbc=\E[3g, tsl=\E[2$~\E[1$}\E[1;%dH, 7837 7838######## NON-ANSI TERMINAL EMULATIONS 7839# 7840 7841#### Avatar 7842# 7843# These entries attempt to describe Avatar, a terminal emulation used with 7844# MS-DOS bulletin-board systems. It was designed to give ANSI-like 7845# capabilities, but with cheaper (shorter) control sequences. Messy design, 7846# excessively dependent on PC idiosyncracies, but apparently rather popular 7847# in the BBS world. 7848# 7849# No color support. Avatar doesn't fit either of the Tektronix or HP color 7850# models that terminfo knows about. An Avatar color attribute is the 7851# low 7 bits of the IBM-PC display-memory attribute. Bletch. 7852# 7853# I wrote these entries while looking at the Avatar spec. I don't have 7854# the facilities to test them. Let me know if they work, or don't. 7855# 7856# Avatar escapes not used by these entries (because maybe you're smarter 7857# and more motivated than I am and can figure out how to wrap terminfo 7858# around some of them, and because they are weird enough to be funny): 7859# level 0: 7860# ^L -- clear window/reset current attribute to default 7861# ^V^A%p1%c -- set current color attribute, parameter decodes as follows: 7862# 7863# bit: 6 5 4 3 2 1 0 7864# | | | | | 7865# +---+---+ | +---+---+ 7866# | | | 7867# | | foreground color 7868# | foreground intensity 7869# background color 7870# level 0+: 7871# ^V^J%p1%c%p2%c%p3%c%p4%c%p5%c -- scroll (p2,p3) to (p4,p5) up by p1 lines 7872# ^V^K%p1%c%p2%c%p3%c%p4%c%p5%c -- scroll (p2,p3) to (p4,p5) down by p1 lines 7873# ^V^L%p1%c%p2%c%p3%c -- clear p2 lines and p3 cols w/attr %p1 7874# ^V^M%p1%c%p2%c%p3%c%p4%c -- fill p3 lines & p4 cols w/char p2+attr %p1 7875# (^V^L and ^V^M set the current attribute as a side-effect.) 7876# ^V ^Y <a> [...] <c> -- repeat pattern. <a> specifies the number of bytes 7877# in the pattern, <c> the number of times the pattern 7878# should be repeated. If either value is 0, no-op. 7879# The pattern can contain Avatar console codes, 7880# including other ^V ^Y patterns. 7881# level 1: 7882# ^V^O -- clockwise mode on; turn print direction right each time you 7883# hit a window edge (yes, really). Turned off by CR 7884# ^V^P -- no-op 7885# ^V^Q%c -- query the driver 7886# ^V^R -- driver reset 7887# ^V^S -- Sound tone (PC-specific) 7888# ^V^T -- change highlight at current cursor poition to %c 7889# ^V^U%p1%c%p2%c -- highlight window <a> with attribute <b> 7890# ^V^V%p1%c%p2%c%p3%c%p4%c%p5%c 7891# -- define window 7892# 7893# From: Eric S. Raymond <esr@snark.thyrsus.com> 1 Nov 1995 7894# (The <blink>/<bold>/<rev>/<smacs>/<smul>/<smso> capabilities exist only to 7895# tell ncurses that the corresponding highlights exist; it should use <sgr>, 7896# which is the only method that will actually work for multiple highlights.) 7897avatar0|avatar terminal emulator level 0, 7898 am, bce, msgr, 7899 cols#80, it#8, lines#25, 7900 blink=^A^V\177, bold=^V^A^P, cr=^M, cub1=^V^E, cud1=^V^D, 7901 cuf1=^V^F, cup=\026\010%p1%c%p2%c, cuu1=^V^C, el=^V^G, 7902 ind=^J, invis=^V^A\0, rep=\031%p1%c%p2%d, rev=^A^Vp, 7903 rs2=^L, 7904 sgr=\026\001%{0}%?%p1%t%{112}%|%;%?%p2%t%{1}%|%;%?%p3%t%{112}%|%;%?%p4%t{128}%|%;%?%p6%t%{16}%|%;, 7905 sgr0=^V^A^G, smacs=, smso=^A^Vp, smul=^V^A, use=klone+acs, 7906# From: Eric S. Raymond <esr@snark.thyrsus.com> 1 Nov 1995 7907avatar0+|avatar terminal emulator level 0+, 7908 dch1=^V^N, rmir=\026\n\0\0\0\0, smir=^V^I, use=avatar0, 7909# From: Eric S. Raymond <esr@snark.thyrsus.com> 1 Nov 1995 7910avatar|avatar1|avatar terminal emulator level 1, 7911 civis=^V'^B, cnorm=^V'^A, cvvis=^V^C, dl1=^V-, il1=^V+, 7912 rmam=^V", rmir=^V^P, smam=^V$, use=avatar0+, 7913 7914#### RBcomm 7915# 7916# RBComm is a lean and mean terminal emulator written by the Interrupt List 7917# maintainer, Ralf Brown. It was fairly popular in the late DOS years (early 7918# '90s), especially in the BBS world, and still has some loyal users due to 7919# its very small memory footprint and to a cute macro language. 7920rbcomm|IBM PC with RBcomm and EMACS keybindings, 7921 am, bw, mir, msgr, xenl, 7922 cols#80, it#8, lines#25, 7923 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, civis=\E[?25l, 7924 clear=^L, cnorm=\E[?25h, cr=^M, csr=\E[%i%p1%d;%p2%dr, 7925 cub1=^H, cud1=^C, cuf1=^B, 7926 cup=\037%p2%{32}%+%c%p1%{32}%+%c, cuu1=^^, 7927 cvvis=\E[?25h, dch1=^W, dl=\E[%p1%dM, dl1=^Z, 7928 ech=\E[%p1%dX, ed=^F5, el=^P^P, ht=^I, il=\E[%p1%dL, il1=^K, 7929 ind=\ED, invis=\E[8m, 7930 is2=\017\035\E(B\E)0\E[?7h\E[?3l\E[>8g, kbs=^H, 7931 kcub1=^B, kcud1=^N, kcuf1=^F, kcuu1=^P, khome=^A, nel=^M\ED, 7932 rc=\E8, rep=\030%p1%c%p2%c, rev=^R, ri=\EM, rmcup=, rmdc=, 7933 rmir=^], rmkx=\E>, rmso=^U, rmul=^U, 7934 rs1=\017\E(B\E)0\025\E[?3l\E[>8g, sc=\E7, sgr0=\E[m, 7935 smcup=, smdc=, smir=^\, smkx=\E=, smso=^R, smul=^T, 7936rbcomm-nam|IBM PC with RBcomm without autowrap, 7937 am@, 7938 bel=^G, cr=^M, cud1=^J, ht=^I, ind=^J, 7939 is2=\017\035\E(B\E)0\E[?7l\E[?3l\E[>8g, kbs=^H, 7940 kcub1=^H, kcud1=^J, nel=^M^J, use=rbcomm, 7941rbcomm-w|IBM PC with RBcomm in 132 column mode, 7942 cols#132, 7943 bel=^G, cr=^M, cud1=^J, ht=^I, ind=^J, 7944 is2=\017\035\E(B\E)0\E[?7h\E[?3h\E[>8g, kbs=^H, 7945 kcub1=^H, kcud1=^J, nel=^M^J, use=rbcomm, 7946 7947######## LCD DISPLAYS 7948# 7949 7950#### Matrix Orbital 7951# from: Eric Z. Ayers (eric@ale.org) 7952# 7953# Matrix Orbital 20x4 LCD display 7954# Command Character is 0xFE (decimal 254, octal 376) 7955# 7956# On this device, cursor addressability isn't possible. The LCD expects: 7957# 0xfe G <col> <row> 7958# for cup: %p1 == row and %p2 is column 7959# 7960# This line: 7961# cup=\376G%p2%c%p1%c 7962# LOOKS like it will work, but sometimes only one of the two numbers is sent. 7963# See the terminfo (5) manpage commented regarding 'Terminals which use "%c"'. 7964# 7965# Alas, there is no cursor upline capability on this display. 7966# 7967# These entries add some 'sanity stuff' to the clear function. That is, it 7968# does a 'clear' and also turns OFF auto scroll, turns ON Auto Line Wrapping, 7969# and turns off the cursor blinking and stuff like that. 7970# 7971# NOTE: calling 'beep' turns on the backlight (bell) 7972# NOTE: calling 'flash' turns it on and back off (visual bell) 7973# 7974MtxOrb| Generic Matrix Orbital LCD display, 7975 bel=\376B^A, clear=\376X\376C\376R\376K\376T, 7976 cnorm=\376K\376T, cub1=\376L, cuf1=\376M, 7977 flash=\376B\001$<200>\376F, home=\376H, 7978MtxOrb204| 20x4 Matrix Orbital LCD display, 7979 cols#20, lines#4, use=MtxOrb, 7980MtxOrb162| 16x2 Matrix Orbital LCD display, 7981 cols#16, lines#2, use=MtxOrb, 7982# The end 7983 7984######## OLDER TERMINAL TYPES 7985# 7986# This section is devoted to older commercial terminal brands that are now 7987# discontinued, but known to be still in use or represented by emulations. 7988# 7989 7990#### AT&T (att, tty) 7991# 7992# This section also includes Teletype-branded VDTs. 7993# 7994# The AT&T/Teletype terminals group was sold to SunRiver Data Systems (now 7995# Boundless Technologies); for details, see the header comment on the ADDS 7996# section. 7997# 7998# These are AT&T's official terminfo entries. All-caps aliases have been 7999# removed. 8000# 8001att2300|sv80|AT&T 2300 Video Information Terminal 80 column mode, 8002 am, eo, mir, msgr, xon, 8003 cols#80, it#8, lines#24, 8004 bel=^G, clear=\E[H\E[J, cr=^M, cub=\E[%p1%dD, cub1=^H, 8005 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 8006 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 8007 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, 8008 el=\E[K, el1=\E[1K, home=\E[H, ht=^I, ich=\E[%p1%d@, 8009 il=\E[%p1%dL, il1=\E[L, ind=^J, kbs=^H, kcbt=\E[Z, kclr=\E[J, 8010 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[P, 8011 kdl1=\E[M, kf1=\E[1r, kf10=\E[10r, kf11=\E[11r, 8012 kf12=\E[12r, kf13=\E[13r, kf14=\E[14r, kf15=\E[15r, 8013 kf16=\E[16r, kf2=\E[2r, kf3=\E[3r, kf4=\E[4r, kf5=\E[5r, 8014 kf6=\E[6r, kf7=\E[7r, kf8=\E[8r, kf9=\E[9r, khome=\E[H, 8015 kich1=\E[@, kil1=\E[L, mc0=\E[0i, mc4=\E[4i, mc5=\E[5i, 8016 rev=\E[7m, rmir=\E[4l, rmso=\E[m, sgr0=\E[m, smir=\E[4h, 8017 smso=\E[7m, 8018att2350|AT&T 2350 Video Information Terminal 80 column mode, 8019 mc0@, mc4@, mc5@, use=att2300, 8020 8021# Must setup RETURN KEY - CR, REC'VD LF - INDEX. 8022# Seems upward compatible with vt100, plus ins/del line/char. 8023# On sgr, the protection parameter is ignored. 8024# No check is made to make sure that only 3 parameters are output. 8025# standout= reverse + half-intensity = 3 | 5. 8026# bold= reverse + underline = 2 | 3. 8027# note that half-bright blinking doesn't look different from normal blinking. 8028# NOTE:you must program the function keys first, label second! 8029# (att4410: a BSD entry has been seen with the following capabilities: 8030# <is2=\E[?6l>, <kf1=\EOc>, <kf2=\EOd>, <kf3=\EOe>, <kf4=\EOg>, 8031# <kf6=\EOh>, <kf7=\EOi>, <kf8=\EOj>, -- esr) 8032att5410v1|att4410v1|tty5410v1|AT&T 4410/5410 80 columns - version 1, 8033 am, hs, mir, msgr, xon, 8034 cols#80, it#8, lh#2, lines#24, lw#8, nlab#8, wsl#80, 8035 acsc=++\,\,--..00``aaffgghhjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 8036 bel=^G, blink=\E[5m, bold=\E[2;7m, clear=\E[H\E[J, cr=^M, 8037 csr=\E[%i%p1%d;%p2%dr, cub1=^H, cud1=\E[B, cuf1=\E[C, 8038 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, dch1=\E[P, dim=\E[2m, 8039 dl1=\E[M, ed=\E[J, el=\E[K, fsl=\E8, home=\E[H, ht=^I, 8040 ich1=\E[@, il1=\E[L, ind=^J, invis=\E[8m, is1=\E[?3l\E)0, 8041 is3=\E[1;03q f1 \EOP\E[2;03q f2 \EOQ\E[3;03q f3 \EOR\E[4;03q f4 \EOS\E[5;03q f5 \EOT\E[6;03q f6 \EOU\E[7;03q f7 \EOV\E[8;03q f8 \EOW, 8042 kbs=^H, kclr=\E[2J, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, 8043 kcuu1=\E[A, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf5=\EOT, 8044 kf6=\EOU, kf7=\EOV, kf8=\EOW, khome=\E[H, kll=\E[24;1H, 8045 ll=\E[24H, nel=^M^J, 8046 pfx=\E[%p1%1d;%p2%l%2.2dq f%p1%1d %p2%s, 8047 pln=\E[%p1%d;00q%p2%:-16s, rc=\E8, rev=\E[7m, ri=\EM, 8048 rmacs=^O, rmso=\E[m, rmul=\E[m, rs2=\Ec\E[?3l\E[2;0y, 8049 sc=\E7, 8050 sgr=\E[0%?%p1%p5%|%t;2%;%?%p2%p6%|%t;4%;%?%p4%t;5%;%?%p3%p1%|%p6%|%t;7%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 8051 sgr0=\E[m\017, smacs=^N, smso=\E[7m, smul=\E[4m, 8052 tsl=\E7\E[25;%p1%{1}%+%dH, 8053 8054att4410v1-w|att5410v1-w|tty5410v1-w|AT&T 4410/5410 132 columns - version 1, 8055 cols#132, wsl#132, 8056 is1=\E[?3h\E)0, rs2=\Ec\E[?3h\E[2;0y, use=att5410v1, 8057 8058att4410|att5410|tty5410|AT&T 4410/5410 80 columns - version 2, 8059 OTbs, 8060 pfx=\E[%p1%d;%p2%l%02dq f%p1%d %p2%s, 8061 use=att5410v1, 8062 8063att5410-w|att4410-w|4410-w|tty5410-w|5410-w|AT&T 4410/5410 in 132 column mode, 8064 cols#132, wsl#132, 8065 is1=\E[?3h\E)0, rs2=\Ec\E[?3h\E[2;0y, use=att4410, 8066 8067# 5410 in terms of a vt100 8068# (v5410: added <rmam>/<smam> based on init string -- esr) 8069v5410|att5410 in terms of a vt100, 8070 am, mir, msgr, xon, 8071 cols#80, it#8, lines#24, vt#3, 8072 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 8073 bel=^G, blink=\E[5m$<2>, bold=\E[1m$<2>, 8074 clear=\E[H\E[J$<50>, cr=^M, csr=\E[%i%p1%d;%p2%dr, 8075 cub1=^H, cud1=^J, cuf1=\E[C$<2>, 8076 cup=\E[%i%p1%d;%p2%dH$<5>, cuu1=\E[A$<2>, dch1=\E[P, 8077 dl1=\E[M, ed=\E[J$<50>, el=\E[K$<3>, el1=\E[1K$<3>, 8078 enacs=\E(B\E)0, home=\E[H, ht=^I, hts=\EH, ich1=\E[@, 8079 il1=\E[L, ind=^J, ka1=\EOq, ka3=\EOs, kb2=\EOr, kbs=^H, 8080 kc1=\EOp, kc3=\EOn, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, 8081 kcuu1=\EOA, kent=\EOM, kf0=\EOy, kf1=\EOP, kf10=\EOx, 8082 kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf5=\EOt, kf6=\EOu, kf7=\EOv, 8083 kf8=\EOl, kf9=\EOw, rc=\E8, rev=\E[7m$<2>, ri=\EM$<5>, 8084 rmacs=^O, rmam=\E[?7l, rmkx=\E[?1l\E>, rmso=\E[m$<2>, 8085 rmul=\E[m$<2>, rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, 8086 sc=\E7, 8087 sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;, 8088 sgr0=\E[m\017$<2>, smacs=^N, smam=\E[?7h, smkx=\E[?1h\E=, 8089 smso=\E[1;7m$<2>, smul=\E[4m$<2>, tbc=\E[3g, 8090 8091# 8092# Teletype Model 5420 -- A souped up 5410, with multiple windows, 8093# even! the 5420 has three modes: scroll, window or page mode 8094# this terminfo should work in scroll or window mode, but doesn't 8095# take advantage of any of the differences between them. 8096# 8097# Has memory below (2 lines!) 8098# 3 pages of memory (plus some spare) 8099# The 5410 sequences for <cup>, <cvvis>, <dch>, <dl>, <ech>, <flash>, <home>, 8100# <hpa>, <hts> would work for these, but these work in both scroll and window 8101# mode... Unset insert character so insert mode works 8102# <is1> sets 80 column mode, 8103# <is2> escape sequence: 8104# 1) turn off all fonts 8105# 2) function keys off, keyboard lock off, control display off, 8106# insert mode off, erasure mode off, 8107# 3) full duplex, monitor mode off, send graphics off, nl on lf off 8108# 4) reset origin mode 8109# 5) set line wraparound 8110# 6) exit erasure mode, positional attribute mode, and erasure extent mode 8111# 7) clear margins 8112# 8) program ENTER to transmit ^J, 8113# We use \212 to program the ^J because a bare ^J will get translated by 8114# UNIX into a CR/LF. The enter key is needed for AT&T uOMS. 8115# 1 2 3 4 5 6 7 8 8116# <is3> set screen color to black, 8117# No representation in terminfo for the delete word key: kdw1=\Ed 8118# Key capabilities assume the power-up send sequence... 8119# This <rmcup> is not strictly necessary, but it helps maximize 8120# memory usefulness: <rmcup=\Ez>, 8121# Alternate sgr0: <sgr0=\E[m\EW^O>, 8122# Alternate sgr: <sgr=\E[%?%p1%t2;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p7%t;8%;m%?%p8%t\EV%;%?%p9%t^N%e^O%;>, 8123# smkx programs the SYS PF keys to send a set sequence. 8124# It also sets up labels f1, f2, ..., f8, and sends edit keys. 8125# This string causes them to send the strings <kf1>-<kf8> 8126# when pressed in SYS PF mode. 8127# (att4415: I added <rmam>/<smam> based on the init string -- esr) 8128att4415|tty5420|att5420|AT&T 4415/5420 80 cols, 8129 OTbs, db, mir, xon, 8130 lh#2, lm#78, lw#8, nlab#8, wsl#55, 8131 cbt=\E[Z, clear=\E[x\E[J, cnorm=\E[11;0j, cub=\E[%p1%dD, 8132 cud=\E[%p1%dB, cuf=\E[%p1%dC, cup=\E[%i%p1%d;%p2%dx, 8133 cuu=\E[%p1%dA, cvvis=\E[11;1j, dch=\E[%p1%dP, 8134 dl=\E[%p1%dM, ech=\E[%p1%ds\E[%p1%dD, 8135 flash=\E[?5h$<200>\E[?5l, home=\E[x, 8136 hpa=\E[%p1%{1}%+%dG, hts=\EH, ich=\E[%p1%d@, ich1@, 8137 il=\E[%p1%dL, indn=\E[%p1%dE, is1=\E[?3l$<100>, 8138 is2=\E[m\017\E[1;2;3;4;6l\E[12;13;14;20l\E[?6;97;99l\E[?7h\E[4i\Ex\E[21;1j\212, 8139 is3=\E[?5l, kbeg=\Et, kcbt=\E[Z, kdch1=\E[P, kdl1=\E[M, 8140 kel=\E[2K, kend=\Ez, kent=\Eent, kf1=\EOc, kf2=\EOd, 8141 kf3=\EOe, kf4=\EOf, kf5=\EOg, kf6=\EOh, kf7=\EOi, kf8=\EOj, 8142 kich1=\E[4h, kil1=\E[L, kind=\E[T, kll=\Eu, knp=\E[U, 8143 kpp=\E[V, kri=\E[S, lf1=F1, lf2=F2, lf3=F3, lf4=F4, lf5=F5, 8144 lf6=F6, lf7=F7, lf8=F8, ll=\Ew, mc0=\E[?2i, mc4=\E[?9i, 8145 mc5=\E[?4i, mrcup=\E[%i%p1%d;%p2%dt, 8146 pfx=\E[%p1%d;%p2%l%02dq F%p1%d %p2%s, 8147 pln=\E[%p1%d;0;0;0q%p2%:-16.16s, prot=\EV, 8148 rin=\E[%p1%dF, rmam=\E[?7l, rmir=\E[4l, 8149 rmkx=\E[19;0j\E[21;1j\212, rmln=\E|, 8150 sgr=\E[0%?%p1%p5%|%t;2%;%?%p2%p6%|%t;4%;%?%p4%t;5%;%?%p3%p1%|%p6%|%t;7%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 8151 sgr0=\E[m\017, smam=\E[?7h, smir=\E[4h, 8152 smkx=\E[19;1j\E[21;4j\Eent, smln=\E~, tbc=\E[3g, 8153 tsl=\E7\E[25;%p1%{8}%+%dH, vpa=\E[%p1%{1}%+%dd, 8154 use=att4410, 8155 8156att4415-w|tty5420-w|att5420-w|AT&T 4415/5420 132 cols, 8157 cols#132, lm#54, wsl#97, 8158 is1=\E[?3h$<100>, use=att4415, 8159 8160att4415-rv|tty5420-rv|att5420-rv|AT&T 4415/5420 80 cols/rv, 8161 flash=\E[?5l$<200>\E[?5h, is3=\E[?5h, use=att4415, 8162 8163att4415-w-rv|tty5420-w-rv|att5420-w-rv|AT&T 4415/5420 132 cols/rv, 8164 cols#132, lm#54, wsl#97, 8165 flash=\E[?5l$<200>\E[?5h, is1=\E[?3h$<100>, is3=\E[?5h, 8166 use=att4415, 8167 8168# Note that this mode permits programming USER PF KEYS and labels 8169# However, when you program user pf labels you have to reselect 8170# user pf keys to make them appear! 8171att4415+nl|tty5420+nl|att5420+nl|generic AT&T 4415/5420 changes for not changing labels, 8172 kf1@, kf2@, kf3@, kf4@, kf5@, kf6@, kf7@, kf8@, 8173 pfx=\E[%p1%d;%p2%l%02d;0;1q F%p1%d %p2%s, 8174 pln=\E[%p1%d;0;0;1q%p2%:-16.16s, 8175 8176att4415-nl|tty5420-nl|att5420-nl|AT&T 4415/5420 without changing labels, 8177 kf1@, kf2@, kf3@, kf4@, kf5@, kf6@, kf7@, kf8@, use=att4415+nl, 8178 use=att4415, 8179 8180att4415-rv-nl|tty5420-rv-nl|att5420-rv-nl|AT&T 4415/5420 reverse video without changing labels, 8181 kf1@, kf2@, kf3@, kf4@, kf5@, kf6@, kf7@, kf8@, use=att4415+nl, 8182 use=att4415-rv, 8183 8184att4415-w-nl|tty5420-w-nl|att5420-w-nl|AT&T 4415/5420 132 cols without changing labels, 8185 kf1@, kf2@, kf3@, kf4@, kf5@, kf6@, kf7@, kf8@, use=att4415+nl, 8186 use=att4415-w, 8187 8188att4415-w-rv-n|tty5420-w-rv-n|att5420-w-rv-n|AT&T 4415/5420 132 cols reverse without changing labels, 8189 kf1@, kf2@, kf3@, kf4@, kf5@, kf6@, kf7@, kf8@, use=att4415+nl, 8190 use=att4415-w-rv, 8191 8192att5420_2|AT&T 5420 model 2 80 cols, 8193 am, db, hs, mir, msgr, xon, 8194 cols#80, it#8, lh#2, lines#24, lm#78, lw#8, nlab#8, wsl#55, 8195 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 8196 blink=\E[5m, cbt=\E[1Z, clear=\EH\EJ, cnorm=\E[11;0j, 8197 cr=\EG, csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 8198 cud1=\E[1B, cuf=\E[%p1%dC, cuf1=\E[1C, 8199 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cvvis=\E[11;1j, 8200 dch=\E[%p1%dP, dch1=\E[P, dim=\E[2m, dl=\E[%p1%dM, 8201 dl1=\E[M, ech=\E[%p1%ds\E[%p1%dD, ed=\E[0J, el=\E[0K, 8202 el1=\E[1K, flash=\E[?5h$<200>\E[?5l, fsl=\E8, home=\E[H, 8203 hpa=\E[%p1%{1}%+%dG, ht=^I, hts=\EH, ich=\E[%p1%d@, 8204 ich1=\E[@, il=\E[%p1%dL, il1=\E[L, ind=^J, indn=\E[%p1%dE, 8205 invis=\E[8m, 8206 is1=\E[0;23r\Ex\Ey\E[2;0j\E[3;3j\E[4;0j\E[5;0j\E[6;0j\E[7;0j\E[8;0j\E[9;1j\E[10;0j\E[15;0j\E[16;1j\E[19;0j\E[20;1j\E[29;0j\E[1;24r, 8207 kbeg=\Et, kbs=^H, kcbt=\E[Z, kclr=\E[2J, kcub1=\E[D, 8208 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[P, kdl1=\E[M, 8209 kel=\E[2K, kend=\Ez, kent=^J, kf1=\EOc, kf2=\EOd, kf3=\EOe, 8210 kf4=\EOf, kf5=\EOg, kf6=\EOh, kf7=\EOi, kf8=\EOj, khome=\E[H, 8211 kich1=\E[4h, kil1=\E[L, kind=\E[T, kll=\Eu, knp=\E[U, 8212 kpp=\E[V, kri=\E[S, lf1=F1, lf2=F2, lf3=F3, lf4=F4, lf5=F5, 8213 lf6=F6, lf7=F7, lf8=F8, ll=\Ew, mc0=\E[?;2i, mc4=\E[4i, 8214 mc5=\E[5i, mrcup=\E[%i%p1%d;%p2%dt, nel=^M^J, 8215 pfx=\E[%p1%d;%p2%l%02dq F%p1%d %p2%s\E~, 8216 pln=\E[%p1%d;0;0;0q%p2%:-16.16s\E~, prot=\EV, rc=\E8, 8217 rev=\E[7m, ri=\EM, rin=\E[%p1%dF, rmacs=^O, rmkx=\E[19;0j, 8218 rmln=\E|, rmso=\E[m, rmul=\E[m, rs2=\Ec\E[?3l\E[2;0y, 8219 sc=\E7, 8220 sgr=\E[0%?%p1%p5%|%t;2%;%?%p2%p6%|%t;4%;%?%p4%t;5%;%?%p3%p1%|%p6%|%t;7%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 8221 sgr0=\E[m\017, smacs=^N, smkx=\E[19;1j, smln=\E~, 8222 smso=\E[7m, smul=\E[4m, tbc=\E[3g, 8223 tsl=\E7\E[25;%p1%{8}%+%dH, vpa=\E[%p1%{1}%+%dd, 8224att5420_2-w|AT&T 5420 model 2 in 132 column mode, 8225 cols#132, 8226 is1=\E[0;23r\Ex\Ey\E[2;0j\E[3;3j\E[4;0j\E[5;1j\E[6;0j\E[7;0j\E[8;0j\E[9;1j\E[10;0j\E[15;0j\E[16;1j\E[19;0j\E[20;1j\E[29;0j\E[1;24r, 8227 use=att5420_2, 8228 8229att4418|att5418|AT&T 5418 80 cols, 8230 am, xon, 8231 cols#80, lines#24, 8232 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 8233 bel=^G, blink=\E[5m, clear=\E[H\E[2J, cr=^M, cub=\E[%p1%dD, 8234 cub1=\E[D, cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, 8235 cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, 8236 cuu1=\E[A, dch=\E[%p1%dP, dch1=\E[1P, dim=\E[2m, 8237 dl=\E[%p1%dM, dl1=\E[M, ed=\E[0J, el=\E[0K, home=\E[H, 8238 ich=\E[%p1%d@, ich1=\E[1@, il=\E[%p1%dL, il1=\E[1L, ind=^J, 8239 is1=\E[?3l, is2=\E)0\E?6l\E?5l, kclr=\E[%%, kcub1=\E@, 8240 kcud1=\EU, kcuf1=\EA, kcuu1=\ES, kent=\E[, kf1=\E[h, 8241 kf10=\E[m, kf11=\E[n, kf12=\E[o, kf13=\E[H, kf14=\E[I, 8242 kf15=\E[J, kf18=\E[K, kf19=\E[L, kf2=\E[i, kf20=\E[E, 8243 kf21=\E[_, kf22=\E[M, kf23=\E[N, kf24=\E[O, kf3=\E[j, 8244 kf6=\E[k, kf7=\E[l, kf8=\E[f, kf9=\E[w, khome=\Ec, rc=\E8, 8245 rev=\E[7m, rmacs=^O, rmso=\E[m, rmul=\E[m, sc=\E7, 8246 sgr0=\E[m\017, smacs=^N, smso=\E[7m, smul=\E[4m, 8247att4418-w|att5418-w|AT&T 5418 132 cols, 8248 cols#132, 8249 is1=\E[?3h, use=att5418, 8250 8251att4420|tty4420|teletype 4420, 8252 OTbs, da, db, eo, msgr, ul, xon, 8253 cols#80, lines#24, lm#72, 8254 bel=^G, clear=\EH\EJ, cr=\EG, cub1=\ED, cud1=\EB, cuf1=\EC, 8255 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, dch1=\EP, 8256 dl1=\EM, ed=\EJ, el=\Ez, home=\EH, il1=\EL, ind=\EH\EM\EY7\s, 8257 kcbt=\EO, kclr=\EJ, kcub1=^H, kcud1=\EB, kcuf1=\EC, 8258 kcuu1=\EA, kdch1=\EP, kdl1=\EM, kf0=\EU, kf3=\E@, khome=\EH, 8259 kich1=\E\^, kil1=\EL, kind=\ES, kri=\ET, 8260 lf0=segment advance, lf3=cursor tab, rmdc@, rmso=\E~, 8261 rmul=\EZ, smdc@, smso=\E}, smul=\E\\, 8262 8263# The following is a terminfo entry for the Teletype 4424 8264# asynchronous keyboard-display terminal. It supports 8265# the vi editor. The terminal must be set up as follows, 8266# 8267# HIGHLIGHT DEFINITION 3-TONE 8268# DISPLAY FUNCTION GROUP III 8269# 8270# The second entry below provides limited (a la adm3a) 8271# operation under GROUP II. 8272# 8273# This must be used with DISPLAY FUNCTION GROUP I or III 8274# and HIGHLIGHT DEFINITION 3-TONE 8275# The terminal has either bold or blink, depending on options 8276# 8277# (att4424: commented out <smcup>=\E[1m, we don't need bright locked on -- esr) 8278att4424|tty4424|teletype 4424, 8279 OTbs, am, xon, 8280 cols#80, lines#24, 8281 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 8282 bel=^G, blink=\E3, bold=\E3, cbt=\EO, clear=\E[H\E[2J, cr=^M, 8283 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 8284 cud=\E[%p1%dB, cud1=\EB, cuf=\E[%p1%dC, cuf1=\EC, 8285 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\EA, 8286 dch=\E[%p1%dP, dch1=\EP, dim=\EW, dl=\E[%p1%dM, dl1=\EM, 8287 ed=\EJ, el=\Ez, home=\E[H, ht=^I, hts=\EH, ich=\E[%p1%d@, 8288 ich1=\E\^, il=\E[%p1%dL, il1=\EL, ind=^J, is2=\E[20l\E[?7h, 8289 kbs=^H, kclr=\EJ, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, 8290 kcuu1=\E[A, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, 8291 khome=\E[H, nel=\EE, rev=\E}, ri=\ET, rmacs=\E(B, rmso=\E~, 8292 rmul=\EZ, 8293 sgr=\E[%?%p1%t7%;%?%p2%t;4%;%?%p3%t;7%;%?%p6%t;1%;%?%p6%p4%|%t;5%;%?%p5%t;0%;m, 8294 sgr0=\EX\E~\EZ\E4\E(B, smacs=\E(0, smso=\E}, smul=\E\\, 8295 tbc=\EF, 8296 8297att4424-1|tty4424-1|teletype 4424 in display function group I, 8298 kclr@, kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, khome@, 8299 use=att4424, 8300 8301# This entry is not one of AT&T's official ones, it was translated from the 8302# 4.4BSD termcap file. The highlight strings are different from att4424. 8303# I have no idea why this is -- older firmware version, maybe? 8304# The following two lines are the comment originally attached to the entry: 8305# This entry appears to avoid the top line - I have no idea why. 8306# From: jwb Wed Mar 31 13:25:09 1982 remote from ihuxp 8307att4424m|tty4424m|teletype 4424M, 8308 am, da, db, mir, 8309 cols#80, it#8, lines#23, 8310 bel=^G, clear=\E[2;H\E[J, cr=^M, cub1=^H, cud1=^J, cuf1=\E[C, 8311 cup=\E[%i%p1%2d;%p2%2dH\E[B, cuu1=\E[A, dch1=\EP, 8312 dl1=\EM, el=\E[K, ht=^I, ich1=\E\^, il1=\EL, ind=^J, ip=$<2/>, 8313 is2=\E[m\E[2;24r, kbs=^H, kcub1=\E[D, kcud1=\E[B, 8314 kcuf1=\E[C, kcuu1=\E[A, kf1=\EOP, kf2=\EOQ, kf3=\EOR, 8315 kf4=\EOS, khome=\E[H, nel=^M^J, ri=\ET, rmso=\E[m, rmul=\E[m, 8316 sgr0=\E[m, smso=\E[7m, smul=\E[4m, 8317 8318# The Teletype 5425 is really version 2 of the Teletype 5420. It 8319# is quite similar, except for some minor differences. No page 8320# mode, for example, so all of the <cup> sequences used above have 8321# to change back to what's being used for the 5410. Many of the 8322# option settings have changed their numbering as well. 8323# 8324# This has been tested on a preliminary model. 8325# 8326# (att5425: added <rmam>/<smam> based on the init string -- esr) 8327att5425|tty5425|att4425|AT&T 4425/5425, 8328 am, da, db, hs, mir, msgr, xenl, xon, 8329 cols#80, it#8, lh#2, lines#24, lm#78, lw#8, nlab#8, wsl#55, 8330 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 8331 bel=^G, blink=\E[5m, bold=\E[2;7m, cbt=\E[Z, 8332 clear=\E[H\E[J, cnorm=\E[12;0j, cr=^M, 8333 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 8334 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 8335 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 8336 cvvis=\E[12;1j, dch=\E[%p1%dP, dch1=\E[P, dim=\E[2m, 8337 dl=\E[%p1%dM, dl1=\E[M, ech=\E[%p1%ds\E[%p1%dD, ed=\E[J, 8338 el=\E[K, el1=\E[1K, enacs=\E(B\E)0, 8339 flash=\E[?5h$<200>\E[?5l, fsl=\E8, home=\E[H, 8340 hpa=\E[%p1%{1}%+%dG, ht=^I, hts=\EH, ich=\E[%p1%d@, 8341 il=\E[%p1%dL, il1=\E[L, ind=^J, indn=\E[%p1%dE, 8342 invis=\E[8m, is1=\E<\E[?3l$<100>, 8343 is2=\E[m\017\E[1;2;3;4;6l\E[12;13;14;20l\E[?6;97;99l\E[?7h\E[4i\Ex\E[25;1j\212, 8344 is3=\E[?5l, kbeg=\Et, kbs=^H, kcbt=\E[Z, kclr=\E[J, 8345 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[P, 8346 kdl1=\E[M, kel=\E[2K, kend=\Ez, kent=\Eent, kf1=\EOc, 8347 kf2=\EOd, kf3=\EOe, kf4=\EOf, kf5=\EOg, kf6=\EOh, kf7=\EOi, 8348 kf8=\EOj, khome=\E[H, kich1=\E[4h, kil1=\E[L, kind=\E[T, 8349 kri=\E[S, ll=\E[24H, mc0=\E[?2i, mc4=\E[?9i, mc5=\E[?4i, 8350 nel=^M^J, 8351 pfx=\E[%p1%d;%p2%l%02dq F%p1%1d %p2%s, 8352 pln=\E[%p1%d;0;0;0q%p2%:-16.16s, prot=\EV, rc=\E8, 8353 rev=\E[7m, ri=\EM, rin=\E[%p1%dF, rmacs=^O, rmam=\E[?7l, 8354 rmir=\E[4l, rmkx=\E[21;0j\E[25;1j\212, rmln=\E|, 8355 rmso=\E[m, rmul=\E[m, rs2=\Ec\E[?3l\E[2;0y, sc=\E7, 8356 sgr=\E[0%?%p1%p5%|%t;2%;%?%p2%p6%|%t;4%;%?%p4%t;5%;%?%p3%p1%|%p6%|%t;7%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 8357 sgr0=\E[m\017, smacs=^N, smam=\E[?7h, smir=\E[4h, 8358 smkx=\E[21;1j\E[25;4j\Eent\E~, smln=\E~, smso=\E[7m, 8359 smul=\E[4m, tbc=\E[3g, tsl=\E7\E[25;%p1%{8}%+%dH, 8360 vpa=\E[%p1%{1}%+%dd, 8361 8362att5425-nl|tty5425-nl|att4425-nl|AT&T 4425/5425 80 columns no labels, 8363 smkx=\E[21;1j\E[25;4j\Eent, use=att4425, 8364 8365att5425-w|att4425-w|tty5425-w|teletype 4425/5425 in 132 column mode, 8366 cols#132, lm#54, wsl#97, 8367 is1=\E[?3h$<100>, use=tty5425, 8368 8369# (att4426: his had bogus capabilities: :ri=\EM:, :ri=\E[1U:. 8370# I also added <rmam>/<smam> -- esr) 8371att4426|tty4426|teletype 4426S, 8372 am, da, db, xon, 8373 cols#80, lines#24, lm#48, 8374 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 8375 bel=^G, bold=\E[5m, clear=\E[H\E[2J\E[1U\E[H\E[2J\E[1V, 8376 cr=^M, cub=\E[%p1%dD, cub1=\E[D, cud=\E[%p1%dB, cud1=\E[B, 8377 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 8378 cuu=\E[%p1%dA, cuu1=\EA, dch=\E[%p1%dP, dch1=\EP, 8379 dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[0K, home=\E[H, 8380 hpa=\E[%p1%dG, ht=^I, hts=\E1, ich=\E[%p1%d@, ich1=\E\^, 8381 il=\E[%p1%dL, il1=\EL, ind=^J, indn=\E[%p1%dS, 8382 is1=\Ec\E[?7h, is2=\E[m\E[1;24r, kbs=^H, kcbt=\EO, 8383 kclr=\E[2J, kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, 8384 kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf5=\EOT, kf6=\EOU, 8385 kf7=\EOV, kf8=\EOW, khome=\E[H, kll=\E[24;1H, ll=\E[24H, 8386 nel=^M^J, rc=\E8, rev=\E[7m, ri=\ET, rin=\E[%p1%dT, 8387 rmacs=\E(B, rmam=\E[?7l, rmso=\E[m, rmul=\E[m, 8388 rs2=\Ec\E[?3l\E[2;0y, sc=\E7, sgr0=\E[m\E(B, smacs=\E(0, 8389 smam=\E[?7h, smso=\E[5m, smul=\E[4m, tbc=\E[3g, 8390 vpa=\E[%p1%dd, 8391 8392# Terminfo entry for the AT&T 510 A Personal Terminal 8393# Function keys 9 - 16 are available only after the 8394# screen labeled (soft keys/action blocks) are labeled. Function key 8395# 9 corresponds to the leftmost touch target on the screen, 8396# function key 16 corresponds to the rightmost. 8397# 8398# This entry is based on one done by Ernie Rice at Summit, NJ and 8399# changed by Anne Gallup, Skokie, IL, ttrdc!anne 8400att510a|bct510a|AT&T 510A Personal Terminal, 8401 am, mir, msgr, xenl, xon, 8402 cols#80, lh#2, lines#24, lw#7, nlab#8, 8403 acsc=+g\,h-f.e`bhrisjjkkllmmnnqqttuuvvwwxx{{||}}~~, 8404 bel=^G, blink=\E[5m, bold=\E[2;7m, cbt=\E[Z, 8405 civis=\E[11;0|, clear=\E[H\E[J, cnorm=\E[11;3|, cr=^M, 8406 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=\E[1B, 8407 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 8408 cuu=\E[%p1%dA, cuu1=\E[A, cvvis=\E[11;2|, dch=\E[%p1%dP, 8409 dch1=\E[P, dim=\E[2m, dl=\E[%p1%dM, dl1=\E[M, ed=\E[0J, 8410 el=\E[0K, el1=\E[1K, enacs=\E(B\E)1, ff=^L, home=\E[H, ht=^I, 8411 hts=\EH, il=\E[%p1%dL, il1=\E[L, ind=^J, is1=\E(B\E)1\E[2l, 8412 is3=\E[21;1|\212, kLFT=\E[u, kRIT=\E[v, kbs=^H, kcbt=\E[Z, 8413 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kf1=\EOm, 8414 kf10=\EOd, kf11=\EOe, kf12=\EOf, kf13=\EOg, kf14=\EOh, 8415 kf15=\EOi, kf16=\EOj, kf2=\EOV, kf3=\EOu, kf4=\ENj, kf5=\ENe, 8416 kf6=\ENf, kf7=\ENh, kf8=\E[H, kf9=\EOc, kind=\E[S, kri=\E[T, 8417 mc0=\E[0i, mc4=\E[?8i, mc5=\E[?4i, nel=\EE, 8418 pln=\E[%p1%dp%p2%:-16s, rc=\E8, rev=\E[7m, ri=\EM, 8419 rmacs=^O, rmkx=\E[19;0|, rmso=\E[m, rmul=\E[m, sc=\E7, 8420 sgr=\E[0%?%p5%p6%|%t;2%;%?%p2%t;4%;%?%p4%t;5%;%?%p3%p1%|%p6%|%t;7%;m%?%p9%t\016%e\017%;, 8421 sgr0=\E[m\017, smacs=^N, smkx=\E[19;1|, smso=\E[7m, 8422 smul=\E[4m, tbc=\E[3g, 8423 8424# Terminfo entry for the AT&T 510 D Personal Terminal 8425# Function keys 9 through 16 are accessed by bringing up the 8426# system blocks. 8427# Function key 9 corresponds to the leftmost touch target on the screen, 8428# function key 16 corresponds to the rightmost. 8429# 8430# There are problems with soft key labeling. These are due to 8431# strangenesses in the native terminal that are impossible to 8432# describe in a terminfo. 8433att510d|bct510d|AT&T 510D Personal Terminal, 8434 am, da, db, mir, msgr, xenl, xon, 8435 cols#80, lh#2, lines#24, lm#48, lw#7, nlab#8, 8436 acsc=+g\,h-f.e`bhrisjjkkllmmnnqqttuuvvwwxx{{||}}~~, 8437 bel=^G, blink=\E[5m, bold=\E[2;7m, cbt=\E[Z, 8438 clear=\E[H\E[J, cnorm=\E[11;3|, cr=^M, cub=\E[%p1%dD, 8439 cub1=^H, cud=\E[%p1%dB, cud1=\E[1B, cuf=\E[%p1%dC, 8440 cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, 8441 cuu1=\E[A, cvvis=\E[11;2|, dch=\E[%p1%dP, dch1=\E[P, 8442 dim=\E[2m, dl=\E[%p1%dM, dl1=\E[M, ed=\E[0J, el=\E[0K, 8443 el1=\E[1K, enacs=\E(B\E)1, ff=^L, home=\E[H, 8444 hpa=\E[%p1%{1}%+%dG, ht=^I, hts=\EH, ich=\E[%p1%d@, 8445 il=\E[%p1%dL, il1=\E[L, ind=^J, indn=\E[%p1%dS, 8446 invis=\E[8m, is1=\E(B\E)1\E[5;0|, is3=\E[21;1|\212, 8447 kLFT=\E[u, kRIT=\E[v, kbs=^H, kcbt=\E[Z, kcub1=\E[D, 8448 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kf1=\EOm, kf10=\EOd, 8449 kf11=\EOe, kf12=\EOf, kf13=\EOg, kf14=\EOh, kf15=\EOi, 8450 kf16=\EOj, kf2=\EOV, kf3=\EOu, kf4=\ENj, kf5=\ENe, kf6=\ENf, 8451 kf7=\ENh, kf8=\E[H, kf9=\EOc, kind=\E[S, kri=\E[T, ll=\E#2, 8452 mc0=\E[0i, mc4=\E[?8i, mc5=\E[?4i, mgc=\E\:, nel=\EE, 8453 pln=\E[%p1%dp%p2%:-16s, rc=\E8, 8454 rep=%p1%c\E[%p2%{1}%-%db, rev=\E[7m, ri=\EM, 8455 rin=\E[%p1%dT, rmacs=^O, rmir=\E[4l, rmkx=\E[19;0|, 8456 rmln=\E<, rmso=\E[m, rmul=\E[m, rmxon=\E[29;1|, 8457 rs2=\E[5;0|, sc=\E7, 8458 sgr=\E[0%?%p5%p6%|%t;2%;%?%p2%t;4%;%?%p4%t;5%;%?%p3%p1%|%p6%|%t;7%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 8459 sgr0=\E[m\017, smacs=^N, smgl=\E4, smgr=\E5, smir=\E[4h, 8460 smkx=\E[19;1|, smln=\E?, smso=\E[7m, smul=\E[4m, 8461 smxon=\E[29;0|, tbc=\E[3g, vpa=\E[%p1%{1}%+%dd, 8462 8463# (att500: I merged this with the att513 entry, att500 just used att513 -- esr) 8464att500|att513|AT&T 513 using page mode, 8465 am, chts, mir, msgr, xenl, xon, 8466 cols#80, lh#2, lines#24, lw#8, nlab#8, 8467 acsc=+g\,h-f.e`bhrisjjkkllmmnnqqttuuvvwwxx{{||}}~~, 8468 bel=^G, blink=\E[5m, bold=\E[2;7m, cbt=\E[Z, 8469 clear=\E[H\E[J, cnorm=\E[11;0|, cr=^M, 8470 csr=%i\E[%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 8471 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 8472 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 8473 cvvis=\E[11;1|, dch=\E[%p1%dP, dch1=\E[P$<1>, dim=\E[2m, 8474 dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, el1=\E[1K, 8475 enacs=\E(B\E)1, home=\E[H, hpa=\E[%p1%{1}%+%dG, ht=^I, 8476 hts=\EH, ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L, ind=^J, 8477 indn=\E[%p1%dE, invis=\E[8m, 8478 is1=\E?\E[3;3|\E[10;0|\E[21;1|\212\E[6;1|\E[1{\E[?99l, 8479 kBEG=\ENB, kCAN=\EOW, kCMD=\EOU, kCPY=\END, kCRT=\EON, 8480 kDC=\ENF, kDL=\ENE, kEND=\ENN, kEOL=\EOA, kEXT=\EOK, 8481 kFND=\EOX, kHLP=\EOM, kHOM=\ENM, kIC=\ENJ, kLFT=\ENK, 8482 kMOV=\ENC, kMSG=\EOL, kNXT=\ENH, kOPT=\EOR, kPRT=\EOZ, 8483 kPRV=\ENG, kRDO=\EOT, kRES=\EOQ, kRIT=\ENL, kRPL=\EOY, 8484 kSAV=\EOO, kSPD=\EOP, kUND=\EOS, kbeg=\E9, kbs=^H, kcan=\EOw, 8485 kcbt=\E[Z, kclo=\EOV, kclr=\E[J, kcmd=\EOu, kcpy=\ENd, 8486 kcrt=\EOn, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 8487 kdch1=\ENf, kdl1=\ENe, kel=\EOa, kend=\E0, kent=\Eent, 8488 kext=\EOk, kf1=\EOc, kf2=\EOd, kf3=\EOe, kf4=\EOf, kf5=\EOg, 8489 kf6=\EOh, kf7=\EOi, kf8=\EOj, kfnd=\EOx, khlp=\EOm, 8490 khome=\E[H, kich1=\ENj, kind=\E[S, kmov=\ENc, kmrk=\ENi, 8491 kmsg=\EOl, knp=\E[U, knxt=\ENh, kopn=\EOv, kopt=\EOr, 8492 kpp=\E[V, kprt=\EOz, kprv=\ENg, krdo=\EOt, kref=\EOb, 8493 kres=\EOq, krfr=\ENa, kri=\E[T, krpl=\EOy, krst=\EOB, 8494 ksav=\EOo, kslt=\ENI, kspd=\EOp, kund=\EOs, ll=\E#2, 8495 mc0=\E[?98l\E[0i, mc4=\E[?98l\E[?8i, mc5=\E[?98l\E[?4i, 8496 nel=\EE, 8497 pfkey=\E[%p1%d;%p2%l%d;3;0p F%p1%d %p2%s, 8498 pfloc=\E[%p1%d;%p2%l%d;2;0p F%p1%d %p2%s, 8499 pfx=\E[%p1%d;%p2%l%d;1;0p F%p1%d %p2%s, 8500 pln=\E[%p1%dp%p2%:-16s, rc=\E8, 8501 rep=%p1%c\E[%p2%{1}%-%db, rev=\E[7m, ri=\EM, 8502 rin=\E[%p1%dF, rmacs=^O, rmir=\E[4l, 8503 rmkx=\E[19;0|\E[21;1|\212, rmln=\E<, rmso=\E[m, 8504 rmul=\E[m, 8505 rs1=\E?\E[3;3|\E[10;0|\E[21;1|\212\E[6;1|\E[1{\E[?99l\E[2;0|\E[6;1|\E[8;0|\E[19;0|\E[1{\E[?99l, 8506 rs2=\E[5;0|, sc=\E7, 8507 sgr=\E[0%?%p1%p5%|%t;2%;%?%p2%p6%|%t;4%;%?%p4%t;5%;%?%p3%p1%|%p6%|%t;7%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 8508 sgr0=\E[m\017, smacs=^N, smir=\E[4h, 8509 smkx=\E[19;1|\E[21;4|\Eent, smln=\E?, smso=\E[7m, 8510 smul=\E[4m, tbc=\E[3g, vpa=\E[%p1%{1}%+%dd, 8511 8512# 01-07-88 8513# printer must be set to EMUL ANSI to accept ESC codes 8514# <cuu1> stops at top margin 8515# <is1> sets cpi 10,lpi 6,form 66,left 1,right 132,top 1,bottom 66,font 8516# and alt font ascii,wrap on,tabs cleared 8517# <is2> disables newline on LF,Emphasized off 8518# The <u0> capability sets form length 8519att5310|att5320|AT&T Model 53210 or 5320 matrix printer, 8520 xhpa, xvpa, 8521 bufsz#8192, cols#132, cps#120, it#8, lines#66, orc#10, 8522 orhi#100, orl#12, orvi#72, 8523 cpi=%?%p1%{10}%=%t\E[w%e%p1%{12}%=%t\E[2w%e%p1%{5}%=%t\E[5w%e%p1%{13}%=%p1%{14}%=%O%t\E[3w%e%p1%{16}%=%p1%{17}%=%O%t\E[4w%e%p1%{6}%=%t\E[6w%e%p1%{7}%=%t\E[7w%e%p1%{8}%=%t\E[8w%;, 8524 cr=^M, 8525 csnm=%?%p1%{0}%=%tusascii%e%p1%{1}%=%tenglish%e%p1%{2}%=%tfinnish%e%p1%{3}%=%tjapanese%e%p1%{4}%=%tnorwegian%e%p1%{5}%=%tswedish%e%p1%{6}%=%tgermanic%e%p1%{7}%=%tfrench%e%p1%{8}%=%tcanadian_french%e%p1%{9}%=%titalian%e%p1%{10}%=%tspanish%e%p1%{11}%=%tline%e%p1%{12}%=%tsecurity%e%p1%{13}%=%tebcdic%e%p1%{14}%=%tapl%e%p1%{15}%=%tmosaic%;, 8526 cud=\E[%p1%de, cud1=^J, cuf=\E[%p1%da, cuf1=\s, cuu1=\EM, 8527 ff=^L, hpa=\E[%p1%d`, ht=^I, is1=\Ec, is2=\E[20l\r, 8528 lpi=%?%p1%{2}%=%t\E[4z%e%p1%{3}%=%t\E[5z%e%p1%{4}%=%t\E[6z%e%p1%{6}%=%t\E[z%e%p1%{8}%=%t\E[2z%e%p1%{12}%=%t\E[3z%;, 8529 rshm=\E[m, 8530 scs=%?%p1%{0}%=%t\E(B%e%p1%{1}%=%t\E(A%e%p1%{2}%=%t\E(C%e%p1%{3}%=%t\E(D%e%p1%{4}%=%t\E(E%e%p1%{5}%=%t\E(H%e%p1%{6}%=%t\E(K%e%p1%{7}%=%t\E(R%e%p1%{8}%=%t\E(Q%e%p1%{9}%=%t\E(Y%e%p1%{10}%=%t\E(Z%e%p1%{11}%=%t\E(0%e%p1%{12}%=%t\E(1%e%p1%{13}%=%t\E(3%e%p1%{14}%=%t\E(8%e%p1%{15}%=%t\E(}%;, 8531 smgbp=\E[;%p1%dr, smglp=\E[%{1}%p1%+%ds, 8532 smgrp=\E[;%{1}%p1%+%ds, smgtp=\E[%p1%dr, sshm=\E[5m, 8533 u0=\E[%p1%dt, vpa=\E[%p1%dd, 8534 8535# Teletype 5620, firmware version 1.1 (8;7;3) or earlier from BRL 8536# The following SET-UP modes are assumed for normal operation: 8537# CR_DEF=CR NL_DEF=INDEX DUPLEX=FULL 8538# Other SET-UP modes may be set for operator convenience or communication 8539# requirements. This termcap description is for the Resident Terminal Mode. 8540# No delays specified; use "stty ixon -ixany" to enable DC3/DC1 flow control! 8541# The BRL entry also said: UNSAFE :ll=\E[70H: 8542att5620-1|tty5620-1|dmd1|Teletype 5620 with old ROMs, 8543 am, xon, 8544 cols#88, it#8, lines#70, vt#3, 8545 bel=^G, clear=\E[H\E[J, cr=^M, cub1=^H, cud1=^J, cuf1=\E[C, 8546 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, dch=\E[%p1%dP, 8547 dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, 8548 home=\E[H, ht=^I, ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, 8549 il1=\E[L, ind=^J, indn=\E[%p1%dS, kbs=^H, kclr=\E[2J, 8550 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, khome=\E[H, 8551 kll=\E[70;1H, nel=^M^J, rc=\E8, ri=\E[T, rin=\E[%p1%dT, 8552 rs1=\Ec, sc=\E7, 8553 8554# 5620 terminfo (2.0 or later ROMS with char attributes) 8555# The following SET-UP modes are assumed for normal operation: 8556# DUPLEX=FULL GEN_FLOW=ON NEWLINE=INDEX RETURN=CR 8557# Other SET-UP modes may be set for operator convenience or communication 8558# requirements. This termcap description is for Resident Terminal Mode. No 8559# delays are specified; use "stty ixon -ixany" to enable DC3/DC1 flow control! 8560# assumptions: <ind> (scroll forward one line) is only done at screen bottom 8561# Be aware that older versions of the dmd have a firmware bug that affects 8562# parameter defaulting; for this terminal, the 0 in \E[0m is not optional. 8563# <msgr> is from an otherwise inferior BRL for this terminal. That entry 8564# also has <ll>=\E[70H commented out and marked unsafe. 8565# For more, see the 5620 FAQ maintained by David Breneman <daveb@dgtl.com>. 8566att5620|dmd|tty5620|ttydmd|5620|5620 terminal 88 columns, 8567 OTbs, am, msgr, npc, xon, 8568 cols#88, it#8, lines#70, 8569 bel=^G, bold=\E[2m, clear=\E[H\E[J, cr=^M, cub1=^H, 8570 cud1=\E[B, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, 8571 dch=\E[%p1%dP, dch1=\E[P, dim=\E[2m, dl=\E[%p1%dM, 8572 dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, ht=^I, ich=\E[%p1%d@, 8573 ich1=\E[@, il=\E[%p1%dL, il1=\E[L, ind=\E[S, 8574 indn=\E[%p1%dS, kbs=^H, kclr=\E[2J, kcub1=\E[D, kcud1=\E[B, 8575 kcuf1=\E[C, kcuu1=\E[A, khome=\E[H, kll=\E[70;1H, nel=^J, 8576 pfx=\E[%p1%d;%p2%l%dq%p2%s, rc=\E8, rev=\E[7m, ri=\E[T, 8577 rin=\E[%p1%dT, rmso=\E[0m, rmul=\E[0m, rs1=\Ec, sc=\E7, 8578 sgr0=\E[0m, smso=\E[7m, smul=\E[4m, 8579att5620-24|tty5620-24|dmd-24|teletype dmd 5620 in a 24x80 layer, 8580 lines#24, use=att5620, 8581att5620-34|tty5620-34|dmd-34|teletype dmd 5620 in a 34x80 layer, 8582 lines#34, use=att5620, 8583# 5620 layer running the "S" system's downloaded graphics handler: 8584att5620-s|tty5620-s|layer|vitty|5620 S layer, 8585 OTbs, OTpt, am, 8586 cols#80, it#8, lines#72, 8587 bel=^G, clear=^L, cr=^M, cub1=^H, cud1=^J, 8588 cup=\EY%p2%{32}%+%c%p1%{32}%+%c, cuu1=^K, dl1=\ED, 8589 el=\EK, flash=\E^G, ht=^I, il1=\EI, ind=^J, kbs=^H, kclr=\E[2J, 8590 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, khome=\E[H, 8591 kll=\E[70;1H, 8592 8593# Entries for <kf15> thru <kf28> refer to the shifted system pf keys. 8594# 8595# Entries for <kf29> thru <kf46> refer to the alternate keypad mode 8596# keys: = * / + 7 8 9 - 4 5 6 , 1 2 3 0 . ENTER 8597att605|AT&T 605 80 column 102key keyboard, 8598 am, eo, xon, 8599 cols#80, lines#24, lw#8, nlab#8, wsl#80, 8600 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 8601 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, clear=\E[H\E[J, 8602 cr=^M, cub1=^H, cud1=\E[B, cuf1=\E[C, 8603 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, dch=\E[%p1%dP, 8604 dch1=\E[P, dim=\E[2m, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, 8605 el=\E[K, el1=\E[1K, fsl=\E8, ht=^I, ich=\E[%p1%d@, ich1=\E[@, 8606 il1=\E[L, ind=^J, invis=\E[8m, 8607 is1=\E[8;0|\E[?\E[13;20l\E[?\E[12h, is2=\E[m\017, 8608 kLFT=\E[ A, kRIT=\E[ @, kbs=^H, kcbt=\E[Z, kclr=\E[2J, 8609 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[P, 8610 kdl1=\E[M, kend=\E[24;1H, kf1=\EOc, kf10=\ENp, kf11=\ENq, 8611 kf12=\ENr, kf13=\ENs, kf14=\ENt, kf15=\EOC, kf16=\EOD, 8612 kf17=\EOE, kf18=\EOF, kf19=\EOG, kf2=\EOd, kf20=\EOH, 8613 kf21=\EOI, kf22=\EOJ, kf23=\ENO, kf24=\ENP, kf25=\ENQ, 8614 kf26=\ENR, kf27=\ENS, kf28=\ENT, kf29=\EOP, kf3=\EOe, 8615 kf30=\EOQ, kf31=\EOR, kf32=\EOS, kf33=\EOw, kf34=\EOx, 8616 kf35=\EOy, kf36=\EOm, kf37=\EOt, kf38=\EOu, kf39=\EOv, 8617 kf4=\EOf, kf40=\EOl, kf41=\EOq, kf42=\EOr, kf43=\EOs, 8618 kf44=\EOp, kf45=\EOn, kf46=\EOM, kf5=\EOg, kf6=\EOh, 8619 kf7=\EOi, kf8=\EOj, kf9=\ENo, khome=\E[H, kich1=\E[@, 8620 kil1=\E[L, kind=\E[S, knp=\E[U, kpp=\E[V, ll=\E[24H, 8621 mc4=\E[?4i, mc5=\E[?5i, nel=\EE, 8622 pfx=\E[%p1%d;%p2%l%02dq F%p1%1d %p2%s, 8623 pln=\E[%p1%d;0;0;0q%p2%:-16.16s, rc=\E8, rev=\E[7m, 8624 rmacs=^O, rmir=\E[4l, rmln=\E[2p, rmso=\E[m, rmul=\E[m, 8625 rs2=\Ec\E[?3l, sc=\E7, sgr0=\E[m\017, smacs=\E)0\016, 8626 smir=\E[4h, smln=\E[p, smso=\E[7m, smul=\E[4m, 8627 tsl=\E7\E[25;%i%p1%dx, 8628att605-pc|ATT 605 in pc term mode, 8629 acsc=j\331k\277l\332m\300n\305q\304t\303u\264v\301w\302x\263, 8630 cbt=\E[Z, cub1=\E[D, cud1=\E[B, cuf1=\E[C, cuu1=\E[A, 8631 dch1=\E[P, dl1=\E[M, ich1=\E[@, il1=\E[L, kcbt=\E[Z, 8632 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[P, 8633 kdl1=\E[M, kend=\E[F, kf1=\E[M, kf10=\E[V, kf2=\E[N, 8634 kf3=\E[O, kf4=\E[P, kf5=\E[Q, kf6=\E[R, kf7=\E[S, kf8=\E[T, 8635 kf9=\E[U, khome=\E[H, kich1=\E[@, knp=\E[G, kpp=\E[I, 8636 rmsc=400\E[50;0|, smsc=250\E[?11l\E[50;1|, xoffc=g, 8637 xonc=e, use=att605, 8638att605-w|AT&T 605-w 132 column 102 key keyboard, 8639 cols#132, wsl#132, 8640 is1=\E[8;0|\E[?4;5;13;15l\E[13;20l\E[?3;7h\E[12h\E(B\E)0, 8641 use=att605, 8642# (att610: I added <rmam>/<smam> based on the init string. I also 8643# added <indn> and <rin> because the BSD file says the att615s have them, 8644# and the 615 is like a 610 with a big keyboard, and most of their other 8645# smart terminals support the same sequence -- esr) 8646att610|AT&T 610; 80 column; 98key keyboard, 8647 am, eslok, hs, mir, msgr, xenl, xon, 8648 cols#80, it#8, lh#2, lines#24, lw#8, nlab#8, wsl#80, 8649 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 8650 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, civis=\E[?25l, 8651 clear=\E[H\E[J, cnorm=\E[?25h\E[?12l, cr=^M, 8652 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 8653 cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, 8654 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 8655 cvvis=\E[?12;25h, dch=\E[%p1%dP, dch1=\E[P, dim=\E[2m, 8656 dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, el1=\E[1K, 8657 flash=\E[?5h$<200>\E[?5l, fsl=\E8, home=\E[H, ht=^I, 8658 ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L, ind=\ED, 8659 indn=\E[%p1%dS, invis=\E[8m, 8660 is1=\E[8;0|\E[?3;4;5;13;15l\E[13;20l\E[?7h\E[12h\E(B\E)0, 8661 is2=\E[m\017, is3=\E(B\E)0, kLFT=\E[ @, kRIT=\E[ A, kbs=^H, 8662 kcbt=\E[Z, kclr=\E[2J, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, 8663 kcuu1=\E[A, kf1=\EOc, kf10=\ENp, kf11=\ENq, kf12=\ENr, 8664 kf13=\ENs, kf14=\ENt, kf2=\EOd, kf3=\EOe, kf4=\EOf, kf5=\EOg, 8665 kf6=\EOh, kf7=\EOi, kf8=\EOj, kf9=\ENo, khome=\E[H, 8666 kind=\E[S, kri=\E[T, ll=\E[24H, mc4=\E[?4i, mc5=\E[?5i, 8667 nel=\EE, 8668 pfx=\E[%p1%d;%p2%l%02dq F%p1%1d %p2%s, 8669 pln=\E[%p1%d;0;0;0q%p2%:-16.16s, rc=\E8, rev=\E[7m, 8670 ri=\EM, rin=\E[%p1%dT, rmacs=^O, rmam=\E[?7l, rmir=\E[4l, 8671 rmln=\E[2p, rmso=\E[m, rmul=\E[m, rs2=\Ec\E[?3l, sc=\E7, 8672 sgr=\E[0%?%p6%t;1%;%?%p5%t;2%;%?%p2%t;4%;%?%p4%t;5%;%?%p3%p1%|%t;7%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 8673 sgr0=\E[m\017, smacs=^N, smam=\E[?7h, smir=\E[4h, 8674 smln=\E[p, smso=\E[7m, smul=\E[4m, tsl=\E7\E[25;%i%p1%dx, 8675att610-w|AT&T 610; 132 column; 98key keyboard, 8676 cols#132, wsl#132, 8677 is1=\E[8;0|\E[?4;5;13;15l\E[13;20l\E[?3;7h\E[12h, 8678 use=att610, 8679 8680att610-103k|AT&T 610; 80 column; 103key keyboard, 8681 kBEG=\ENB, kCAN=\EOW, kCMD=\EOU, kCPY=\END, kCRT=\EON, 8682 kDC=\ENF, kDL=\ENE, kEND=\ENN, kEOL=\EOA, kEXT=\EOK, 8683 kFND=\EOX, kHLP=\EOM, kMOV=\ENC, kMSG=\EOL, kNXT=\ENH, 8684 kOPT=\EOR, kPRT=\EOZ, kPRV=\ENG, kRDO=\EOT, kRES=\EOQ, 8685 kRPL=\EOY, kSAV=\EOO, kSPD=\EOP, kUND=\EOS, kbeg=\E9, 8686 kcan=\EOw, kclo=\EOV, kcmd=\EOu, kcpy=\ENd, kcrt=\EOn, 8687 kdch1=\ENf, kdl1=\ENe, kel=\EOa, kend=\E0, kent=^M, 8688 kext=\EOk, kf10@, kf11@, kf12@, kf13@, kf14@, kf9@, kfnd=\EOx, 8689 khlp=\EOm, kich1=\ENj, kmov=\ENc, kmrk=\ENi, kmsg=\EOl, 8690 knp=\E[U, knxt=\ENh, kopn=\EOv, kopt=\EOr, kpp=\E[V, 8691 kprt=\EOz, kprv=\ENg, krdo=\EOt, kref=\EOb, kres=\EOq, 8692 krfr=\ENa, krmir=\ENj, krpl=\EOy, krst=\EOB, ksav=\EOo, 8693 kslt=\ENI, kspd=\EOp, kund=\EOs, use=att610, 8694att610-103k-w|AT&T 610; 132 column; 103key keyboard, 8695 cols#132, wsl#132, 8696 is1=\E[8;0|\E[?4;5;13;15l\E[13;20l\E[?3;7h\E[12h, 8697 use=att610-103k, 8698att615|AT&T 615; 80 column; 98key keyboard, 8699 kLFT=\E[ A, kRIT=\E[ @, kf15=\EOC, kf16=\EOD, kf17=\EOE, 8700 kf18=\EOF, kf19=\EOG, kf20=\EOH, kf21=\EOI, kf22=\EOJ, 8701 kf23=\ENO, kf24=\ENP, kf25=\ENQ, kf26=\ENR, kf27=\ENS, 8702 kf28=\ENT, kf29=\EOP, kf30=\EOQ, kf31=\EOR, kf32=\EOS, 8703 kf33=\EOw, kf34=\EOx, kf35=\EOy, kf36=\EOm, kf37=\EOt, 8704 kf38=\EOu, kf39=\EOv, kf40=\EOl, kf41=\EOq, kf42=\EOr, 8705 kf43=\EOs, kf44=\EOp, kf45=\EOn, kf46=\EOM, use=att610, 8706att615-w|AT&T 615; 132 column; 98key keyboard, 8707 kLFT=\E[ A, kRIT=\E[ @, kf15=\EOC, kf16=\EOD, kf17=\EOE, 8708 kf18=\EOF, kf19=\EOG, kf20=\EOH, kf21=\EOI, kf22=\EOJ, 8709 kf23=\ENO, kf24=\ENP, kf25=\ENQ, kf26=\ENR, kf27=\ENS, 8710 kf28=\ENT, kf29=\EOP, kf30=\EOQ, kf31=\EOR, kf32=\EOS, 8711 kf33=\EOw, kf34=\EOx, kf35=\EOy, kf36=\EOm, kf37=\EOt, 8712 kf38=\EOu, kf39=\EOv, kf40=\EOl, kf41=\EOq, kf42=\EOr, 8713 kf43=\EOs, kf44=\EOp, kf45=\EOn, kf46=\EOM, use=att610-w, 8714att615-103k|AT&T 615; 80 column; 103key keyboard, 8715 kLFT=\E[ A, kRIT=\E[ @, use=att610-103k, 8716att615-103k-w|AT&T 615; 132 column; 103key keyboard, 8717 kLFT=\E[ A, kRIT=\E[ @, use=att610-103k-w, 8718# (att620: I added <rmam>/<smam> based on the init string and 8719# <rin>/<indn> from a BSD termcap -- esr) 8720att620|AT&T 620; 80 column; 98key keyboard, 8721 am, eslok, hs, mir, msgr, xenl, xon, 8722 cols#80, it#8, lh#2, lines#24, lw#8, nlab#8, wsl#80, 8723 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 8724 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, civis=\E[?25l, 8725 clear=\E[H\E[J, cnorm=\E[?25h\E[?12l, cr=^M, 8726 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 8727 cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, 8728 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 8729 cvvis=\E[?12;25h, dch=\E[%p1%dP, dch1=\E[P, dim=\E[2m, 8730 dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, el1=\E[1K, 8731 flash=\E[?5h$<200>\E[?5l, fsl=\E8, home=\E[H, ht=^I, 8732 ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L, ind=\ED, 8733 indn=\E[%p1%dS, invis=\E[8m, 8734 is1=\E[8;0|\E[?3;4;5;13;15l\E[13;20l\E[?7h\E[12h, 8735 is2=\E[m\017, is3=\E(B\E)0, kLFT=\E[ A, kRIT=\E[ @, kbs=^H, 8736 kcbt=\E[Z, kclr=\E[2J, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, 8737 kcuu1=\E[A, kf1=\EOc, kf10=\ENp, kf11=\ENq, kf12=\ENr, 8738 kf13=\ENs, kf14=\ENt, kf15=\EOC, kf16=\EOD, kf17=\EOE, 8739 kf18=\EOF, kf19=\EOG, kf2=\EOd, kf20=\EOH, kf21=\EOI, 8740 kf22=\EOJ, kf23=\ENO, kf24=\ENP, kf25=\ENQ, kf26=\ENR, 8741 kf27=\ENS, kf28=\ENT, kf29=\EOP, kf3=\EOe, kf30=\EOQ, 8742 kf31=\EOR, kf32=\EOS, kf33=\EOw, kf34=\EOx, kf35=\EOy, 8743 kf36=\EOm, kf37=\EOt, kf38=\EOu, kf39=\EOv, kf4=\EOf, 8744 kf40=\EOl, kf41=\EOq, kf42=\EOr, kf43=\EOs, kf44=\EOp, 8745 kf45=\EOn, kf46=\EOM, kf5=\EOg, kf6=\EOh, kf7=\EOi, kf8=\EOj, 8746 kf9=\ENo, khome=\E[H, kind=\E[S, kri=\E[T, ll=\E[24H, 8747 mc4=\E[?4i, mc5=\E[?5i, nel=\EE, 8748 pfx=\E[%p1%d;%p2%l%02dq F%p1%1d %p2%s, 8749 pln=\E[%p1%d;0;0;0q%p2%:-16.16s, rc=\E8, rev=\E[7m, 8750 ri=\EM, rin=\E[%p1%dT, rmacs=\E(B\017, rmam=\E[?7l, 8751 rmir=\E[4l, rmln=\E[2p, rmso=\E[m, rmul=\E[m, 8752 rs2=\Ec\E[?3l, sc=\E7, 8753 sgr=\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p4%t;5%;%?%p3%p1%|%t;7%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 8754 sgr0=\E[m\E(B\017, smacs=\E)0\016, smam=\E[?7h, 8755 smir=\E[4h, smln=\E[p, smso=\E[7m, smul=\E[4m, 8756 tsl=\E7\E[25;%i%p1%dx, 8757att620-w|AT&T 620; 132 column; 98key keyboard, 8758 cols#132, wsl#132, 8759 is1=\E[8;0|\E[?4;5;13;15l\E[13;20l\E[?3;7h\E[12h, 8760 use=att620, 8761att620-103k|AT&T 620; 80 column; 103key keyboard, 8762 kBEG=\ENB, kCAN=\EOW, kCMD=\EOU, kCPY=\END, kCRT=\EON, 8763 kDC=\ENF, kDL=\ENE, kEND=\ENN, kEOL=\EOA, kEXT=\EOK, 8764 kFND=\EOX, kHLP=\EOM, kMOV=\ENC, kMSG=\EOL, kNXT=\ENH, 8765 kOPT=\EOR, kPRT=\EOZ, kPRV=\ENG, kRDO=\EOT, kRES=\EOQ, 8766 kRPL=\EOY, kSAV=\EOO, kSPD=\EOP, kUND=\EOS, kbeg=\E9, 8767 kcan=\EOw, kclo=\EOV, kcmd=\EOu, kcpy=\ENd, kcrt=\EOn, 8768 kdch1=\ENf, kdl1=\ENe, kel=\EOa, kend=\E0, kent=^M, 8769 kext=\EOk, kf10@, kf11@, kf12@, kf13@, kf14@, kf15@, kf16@, kf17@, 8770 kf18@, kf19@, kf20@, kf21@, kf22@, kf23@, kf24@, kf25@, kf26@, kf27@, 8771 kf28@, kf29@, kf30@, kf31@, kf32@, kf33@, kf34@, kf35@, kf36@, kf37@, 8772 kf38@, kf39@, kf40@, kf41@, kf42@, kf43@, kf44@, kf45@, kf46@, kf9@, 8773 kfnd=\EOx, khlp=\EOm, kich1=\ENj, kmov=\ENc, kmrk=\ENi, 8774 kmsg=\EOl, knp=\E[U, knxt=\ENh, kopn=\EOv, kopt=\EOr, 8775 kpp=\E[V, kprt=\EOz, kprv=\ENg, krdo=\EOt, kref=\EOb, 8776 kres=\EOq, krfr=\ENa, krmir=\ENj, krpl=\EOy, krst=\EOB, 8777 ksav=\EOo, kslt=\ENI, kspd=\EOp, kund=\EOs, use=att620, 8778 8779att620-103k-w|AT&T 620; 132 column; 103key keyboard, 8780 cols#132, wsl#132, 8781 is1=\E[8;0|\E[?4;5;13;15l\E[13;20l\E[?3;7h\E[12h, 8782 use=att620-103k, 8783 8784# AT&T (formerly Teletype) 630 Multi-Tasking Graphics terminal 8785# The following SETUP modes are assumed for normal operation: 8786# Local_Echo=Off Gen_Flow=On Return=CR Received_Newline=LF 8787# Font_Size=Large Non-Layers_Window_Cols=80 8788# Non-Layers_Window_Rows=60 8789# Other SETUP modes may be set for operator convenience or communication 8790# requirements. Some capabilities assume a printer attached to the Aux EIA 8791# port. This termcap description is for the Fixed Non-Layers Window. No 8792# delays are specified; use "stty ixon -ixany" to enable DC3/DC1 flow control! 8793# (att630: added <ich1>, <blink> and <dim> from a BSD termcap file -- esr) 8794att630|AT&T 630 windowing terminal, 8795 OTbs, am, da, db, mir, msgr, npc, xon, 8796 cols#80, it#8, lines#60, lm#0, 8797 bel=^G, blink=\E[5m, cbt=\E[Z, clear=\E[H\E[J, cr=^M, 8798 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=\E[B, 8799 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 8800 cuu=\E[%p1%dA, cuu1=\E[A, dch=\E[%p1%dP, dch1=\E[P, 8801 dim=\E[2m, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, 8802 el1=\E[1K, home=\E[H, ht=^I, ich=\E[%p1%d@, ich1=\E[@, 8803 il=\E[%p1%dL, il1=\E[L, ind=\ED, indn=\E[%p1%dS, is2=\E[m, 8804 kbs=^H, kcbt=\E[Z, kclr=\E[2J, kcub1=\E[D, kcud1=\E[B, 8805 kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[P, kdl1=\E[M, kent=^M, 8806 kf10=\ENp, kf11=\ENq, kf12=\ENr, kf13=\ENs, kf14=\ENt, 8807 kf15=\ENu, kf16=\ENv, kf17=\ENw, kf18=\ENx, kf19=\ENy, 8808 kf20=\ENz, kf21=\EN{, kf22=\EN|, kf23=\EN}, kf24=\EN~, 8809 kf9=\ENo, khome=\E[H, kich1=\E[@, kil1=\E[L, mc4=\E[?4i, 8810 mc5=\E[?5i, nel=^M^J, pfx=\E[%p1%d;%p2%l%dq%p2%s, rc=\E8, 8811 rev=\E[7m, ri=\EM, rin=\E[%p1%dT, rmir=\E[4l, rmso=\E[m, 8812 rmul=\E[m, rs2=\Ec, sc=\E7, 8813 sgr=\E[0%?%p2%t;4%;%?%p1%p3%|%p4%|%p5%|%t;7%;m, 8814 sgr0=\E[m, smir=\E[4h, smso=\E[7m, smul=\E[4m, 8815att630-24|5630-24|5630DMD-24|630MTG-24|AT&T 630 windowing terminal 24 lines, 8816 lines#24, use=att630, 8817 8818# This is the att700 entry for 700 native emulation of the AT&T 700 8819# terminal. Comments are relative to changes from the 605V2 entry and 8820# att730 on which the entry is based. Comments show the terminfo 8821# capability name, termcap name, and description. 8822# 8823# Here is what's going onm in the init string: 8824# ESC [ 50;4| set 700 native mode (really is 605) 8825# x ESC [ 56;ps| set lines to 24: ps=0; 40: ps=1 (plus status line) 8826# ESC [ 53;0| set GenFlow to Xon/Xoff 8827# ESC [ 8 ;0| set CR on NL 8828# x ESC [ ? 3 l/h set workspace: 80 col(l); 132 col(h) 8829# ESC [ ? 4 l jump scroll 8830# ESC [ ? 5 l/h video: normal (l); reverse (h) 8831# ESC [ ?13 l Labels on 8832# ESC [ ?15 l parity check = no 8833# ESC [ 13 l monitor mode off 8834# ESC [ 20 l LF on NL (not CRLF on NL) 8835# ESC [ ? 7 h autowrap on 8836# ESC [ 12 h local echo off 8837# ESC ( B GO = ASCII 8838# ESC ) 0 G1 = Special Char & Line Drawing 8839# ESC [ ? 31 l Set 7 bit controls 8840# 8841# Note: Most terminals, especially the 600 family use Reverse Video for 8842# standout mode. DEC also uses reverse video. The VT100 uses bold in addition 8843# Assume we should stay with reverse video for 70.. However, the 605V2 exits 8844# standout mode with \E[m (all normal attributes). The 730 entry simply 8845# exits reverse video which would leave other current attributes intact. It 8846# was assumed the 730 entry to be more correct so rmso has changed. The 8847# 605V2 has no sequences to turn individual attributes off, thus its setting 8848# and the rmso/smso settings from the 730. 8849# 8850# Note: For the same reason as above in rmso I changed exit under-score mode 8851# to specifically turn off underscore, rather than return to all normal 8852# attributes 8853# 8854# Note: The following pkey_xmit is taken from the 605V2 which contained the 8855# capability as pfxl. It was changed here to pfx since pfxl 8856# will only compile successfully with Unix 4.0 tic. Also note that pfx only 8857# allows strings to be parameters and label values must be programmed as 8858# constant strings. Supposedly the pfxl of Version 4.0 allows both labels 8859# and strings to be parameters. The 605V2 pfx entry should be examined later 8860# in this regard. For reference the 730 pfxl entry is shown here for comparison 8861# 730 pfx entry: 8862# pfxl=\E[%?%p1%{25}%<%t%p1%e%p1%{24}%-%;%d;%p2%l%02d%?%p1%{25}%<%tq\s\s\s 8863# SYS\s\s\s\s\sF%p1%:-2d\s\s%e;0;3q%;%p2%s, 8864# 8865# (for 4.0 tic) 8866# pfxl=\E[%p1%d;%p2%l%02dq%?%p1%{9}%<%t F%p1%1d %;%p2%s, 8867# 8868# (for <4.0 tic) 8869# pfx=\E[%p1%d;%p2%l%02dq%?%p1%{9}%<%t F%p1%1d %;%p2%s, 8870# 8871# From the AT&T 705 Multi-tasking terminal user's guide Page 8-8,8-9 8872# 8873# Port1 Interface 8874# 8875# modular 10 pin Connector 8876# Left side Right side 8877# Pin 1 2 3 4 5 6 7 8 9 10 8878# 8879# Key (notch) at bottom 8880# 8881# Pin 1 DSR 8882# 3 DCD 8883# 4 DTR 8884# 5 Sig Ground 8885# 6 RD 8886# 7 SD 8887# 8 CTS 8888# 9 RTS 8889# 10 Frame Ground 8890# 8891# The manual is 189 pages and is loaded with details about the escape codes, 8892# etc..... Available from AT&T CIC 800-432-6600... 8893# ask for Document number 999-300-660.. 8894# 8895att700|AT&T 700 24x80 column display w/102key keyboard, 8896 am, eslok, hs, mir, msgr, xenl, xon, 8897 cols#80, it#8, lh#2, lines#24, lw#8, nlab#8, wsl#80, 8898 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 8899 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, civis=\E[?25l, 8900 clear=\E[H\E[J, cnorm=\E[?25h\E[?12l, cr=^M, 8901 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 8902 cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, 8903 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 8904 cvvis=\E[?12;25h, dch=\E[%p1%dP, dch1=\E[P, dim=\E[2m, 8905 dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, el1=\E[1K, 8906 enacs=\E(B\E)0, flash=\E[?5h$<200>\E[?5l, fln=4\,4, 8907 fsl=\E8, home=\E[H, ht=^I, hts=\EH, ich=\E[%p1%d@, 8908 il=\E[%p1%dL, il1=\E[L, ind=\ED, invis=\E[8m, 8909 is2=\E[50;4|\E[53;0|\E[8;0|\E[?4;13;15l\E[13;20l\E[?7h\E[12h\E(B\E)0\E[?31l\E[0m\017, 8910 is3=\E(B\E)0, kLFT=\E[ A, kRIT=\E[ @, kbs=^H, kcbt=\E[Z, 8911 kclr=\E[2J, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 8912 kdch1=\E[P, kdl1=\E[M, kend=\E[24;1H, kf1=\EOc, kf10=\ENp, 8913 kf11=\ENq, kf12=\ENr, kf13=\ENs, kf14=\ENt, kf15=\EOC, 8914 kf16=\EOD, kf17=\EOE, kf18=\EOF, kf19=\EOG, kf2=\EOd, 8915 kf20=\EOH, kf21=\EOI, kf22=\EOJ, kf23=\ENO, kf24=\ENP, 8916 kf25=\ENQ, kf26=\ENR, kf27=\ENS, kf28=\ENT, kf29=\EOq, 8917 kf3=\EOe, kf30=\EOr, kf31=\EOs, kf32=\EOt, kf33=\EOu, 8918 kf34=\EOv, kf35=\EOw, kf36=\EOx, kf37=\EOy, kf38=\EOu, 8919 kf39=\EOv, kf4=\EOf, kf40=\EOl, kf41=\EOq, kf42=\EOr, 8920 kf43=\EOs, kf44=\EOp, kf45=\EOn, kf46=\EOM, kf5=\EOg, 8921 kf6=\EOh, kf7=\EOi, kf8=\EOj, kf9=\ENo, khome=\E[H, 8922 kich1=\E[@, kil1=\E[L, knp=\E[U, kpp=\E[V, ll=\E[24H, 8923 mc0=\E[i, mc4=\E[?4i, mc5=\E[?5i, nel=\EE, 8924 pfx=\E[%p1%d;%p2%l%02dq%?%p1%{9}%<%t F%p1%1d %;%p2%s, 8925 pln=\E[%p1%d;0;0;0q%p2%:-16.16s, rc=\E8, 8926 rep=%p1%c\E[%p2%{1}%-%db, rev=\E[7m, ri=\EM, rmacs=^O, 8927 rmir=\E[4l, rmln=\E[2p, rmso=\E[27m, rmul=\E[24m, 8928 rmxon=\E[53;3|, rs1=\Ec\E[?3;5l\E[56;0|, sc=\E7, 8929 sgr=\E[0%?%p6%t;1%;%?%p5%t;2%;%?%p2%t;4%;%?%p4%t;5%;%?%p3%p1%|%t;7%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 8930 sgr0=\E[m\017, smacs=^N, smir=\E[4h, smln=\E[p, smso=\E[7m, 8931 smul=\E[4m, smxon=\E[53;0|, tbc=\E[3g, 8932 tsl=\E7\E[99;%i%p1%dx, 8933 8934# This entry was modified 3/13/90 by JWE. 8935# fixes include additions of <enacs>, correcting <rep>, and modification 8936# of <kHOM>. (See comments below) 8937# att730 has status line of 80 chars 8938# These were commented out: <indn=\E[%p1%dS>, <rin=\E[%p1%dT>, 8939# the <kf25> and up keys are used for shifted system Fkeys 8940# NOTE: JWE 3/13/90 The 98 key keyboard translation for shift/HOME is 8941# currently the same as <khome> (unshifted HOME or \E[H). On the 102, 102+1 8942# and 122 key keyboards, the 730's translation is \E[2J. For consistency 8943# <kHOM> has been commented out. The user can uncomment <kHOM> if using the 8944# 102, 102+1, or 122 key keyboards 8945# kHOM=\E[2J, 8946# (att730: I added <rmam>/<smam> based on the init string -- esr) 8947att730|AT&T 730 windowing terminal, 8948 am, da, db, eslok, hs, mir, msgr, npc, xenl, xon, 8949 cols#80, it#8, lh#2, lines#60, lm#0, lw#8, nlab#24, wsl#80, 8950 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 8951 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, civis=\E[?25l, 8952 clear=\E[H\E[J, cnorm=\E[?25h\E[?12l, cr=^M, 8953 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 8954 cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, 8955 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 8956 cvvis=\E[?12;25h, dch=\E[%p1%dP, dch1=\E[P, dim=\E[2m, 8957 dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, el1=\E[1K, 8958 enacs=\E(B\E)0, flash=\E[?5h$<200>\E[?5l, fsl=\E8, 8959 home=\E[H, ht=^I, ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L, 8960 ind=\ED, invis=\E[8m, 8961 is1=\E[8;0|\E[?3;4;5;13;15l\E[13;20l\E[?7h\E[12h\E(B\E)B, 8962 is2=\E[m\017, is3=\E(B\E)0, kLFT=\E[ @, kRIT=\E[ A, kbs=^H, 8963 kcbt=\E[Z, kclr=\E[2J, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, 8964 kcuu1=\E[A, kf1=\EOc, kf10=\ENp, kf11=\ENq, kf12=\ENr, 8965 kf13=\ENs, kf14=\ENt, kf15=\ENu, kf16=\ENv, kf17=\ENw, 8966 kf18=\ENx, kf19=\ENy, kf2=\EOd, kf20=\ENz, kf21=\EN{, 8967 kf22=\EN|, kf23=\EN}, kf24=\EN~, kf25=\EOC, kf26=\EOD, 8968 kf27=\EOE, kf28=\EOF, kf29=\EOG, kf3=\EOe, kf30=\EOH, 8969 kf31=\EOI, kf32=\EOJ, kf33=\ENO, kf34=\ENP, kf35=\ENQ, 8970 kf36=\ENR, kf37=\ENS, kf38=\ENT, kf39=\EOU, kf4=\EOf, 8971 kf40=\EOV, kf41=\EOW, kf42=\EOX, kf43=\EOY, kf44=\EOZ, 8972 kf45=\EO[, kf46=\EO\s, kf47=\EO], kf48=\EO\^, kf5=\EOg, 8973 kf6=\EOh, kf7=\EOi, kf8=\EOj, kf9=\ENo, khome=\E[H, 8974 kich1=\E[@, kil1=\E[L, kind=\E[S, kri=\E[T, 8975 mc0=\E[?19h\E[0i, mc4=\E[?4i, mc5=\E[?5i, nel=\EE, 8976 pfx=\E[%?%p1%{25}%<%t%p1%e%p1%{24}%-%;%d;%p2%l%02d%?%p1%{25}%<%tq SYS F%p1%:-2d %e;0;3q%;%p2%s, 8977 pfxl=\E[%p1%d;%p2%l%02d;0;0q%p3%:-16.16s%p2%s, 8978 pln=\E[%p1%d;0;0;0q%p2%:-16.16s, rc=\E8, 8979 rep=%p1%c\E[%p2%{1}%-%db, rev=\E[7m, ri=\EM, rmacs=^O, 8980 rmam=\E[?7l, rmir=\E[4l, rmln=\E[?13h, rmso=\E[27m, 8981 rmul=\E[24m, rmxon=\E[?21l, rs2=\Ec\E[?3l, sc=\E7, 8982 sgr=\E[0%?%p6%t;1%;%?%p5%t;2%;%?%p2%t;4%;%?%p4%t;5%;%?%p3%p1%|%t;7%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 8983 sgr0=\E[m\017, smacs=^N, smam=\E[?7h, smir=\E[4h, 8984 smln=\E[?13l, smso=\E[7m, smul=\E[4m, smxon=\E[?21h, 8985 swidm=\E#6, tsl=\E7\E[;%i%p1%dx, 8986att730-41|730MTG-41|AT&T 730-41 windowing terminal Version, 8987 lines#41, use=att730, 8988att730-24|730MTG-24|AT&T 730-24 windowing terminal Version, 8989 lines#24, use=att730, 8990att730r|730MTGr|AT&T 730 rev video windowing terminal Version, 8991 flash=\E[?5l$<200>\E[?5h, 8992 is1=\E[8;0|\E[?3;4;13;15l\E[?5h\E[13;20l\E[?7h\E[12h\E(B\E)B, 8993 use=att730, 8994att730r-41|730MTG-41r|AT&T 730r-41 rev video windowing terminal Version, 8995 lines#41, use=att730r, 8996att730r-24|730MTGr-24|AT&T 730r-24 rev video windowing terminal Version, 8997 lines#24, use=att730r, 8998 8999# The following represents the screen layout along with the associated 9000# bezel buttons for the 5430/pt505 terminal. The "kf" designations do 9001# not appear on the screen but are shown to reference the bezel buttons. 9002# The "CMD", "MAIL", and "REDRAW" buttons are shown in their approximate 9003# position relative to the screen. 9004# 9005# 9006# 9007# +----------------------------------------------------------------+ 9008# | | 9009# XXXX | kf0 kf24 | XXXX 9010# | | 9011# | | 9012# XXXX | kf1 kf23 | XXXX 9013# | | 9014# | | 9015# XXXX | kf2 kf22 | XXXX 9016# | | 9017# | | 9018# XXXX | kf3 kf21 | XXXX 9019# | | 9020# | | 9021# XXXX | kf4 kf20 | XXXX 9022# | | 9023# | | 9024# XXXX | kf5 kf19 | XXXX 9025# | | 9026# | | 9027# XXXX | kf6 kf18 | XXXX 9028# | | 9029# | | 9030# XXXX | | XXXX 9031# | | 9032# | | 9033# +----------------------------------------------------------------+ 9034# 9035# XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX 9036# 9037# Note: XXXX represents the screen buttons 9038# CMD REDRAW 9039# 9040# MAIL 9041# 9042# version 1 note: 9043# The character string sent by key 'kf26' may be user programmable 9044# to send either \E[16s, or \E[26s. 9045# The character string sent by key 'krfr' may be user programmable 9046# to send either \E[17s, or \E[27s. 9047# 9048# Depression of the "CMD" key sends \E! (kcmd) 9049# Depression of the "MAIL" key sends \E[26s (kf26) 9050# "REDRAW" same as "REFRESH" (krfr) 9051# 9052# "kf" functions adds carriage return to output string if terminal is in 9053# 'new line' mode. 9054# 9055# The following are functions not covered in the table above: 9056# 9057# Set keyboard character (SKC): \EPn1;Pn2w 9058# Pn1= 0 Back Space key 9059# Pn1= 1 Break key 9060# Pn2= Program char (hex) 9061# 9062# Screen Definition (SDF): \E[Pn1;Pn2;Pn3;Pn4;Pn5t 9063# Pn1= Window number (1-39) 9064# Pn2-Pn5= Y;X;Y;X coordinates 9065# 9066# Screen Selection (SSL): \E[Pnu 9067# Pn= Window number 9068# 9069# Set Terminal Modes (SM): \E[Pnh 9070# Pn= 3 Graphics mode 9071# Pn= > Cursor blink 9072# Pn= < Enter new line mode 9073# Pn= = Enter reverse insert/replace mode 9074# Pn= ? Enter no scroll mode 9075# 9076# Reset Terminal Mode (RM): \E[Pnl 9077# Pn= 3 Exit graphics mode 9078# Pn= > Exit cursor blink 9079# Pn= < Exit new line mode 9080# Pn= = Exit reverse insert/replace mode 9081# Pn= ? Exit no scroll mode 9082# 9083# Screen Status Report (SSR): \E[Pnp 9084# Pn= 0 Request current window number 9085# Pn= 1 Request current window dimensions 9086# 9087# Device Status Report (DSR): \E[6n Request cursor position 9088# 9089# Call Status Report (CSR): \E[Pnv 9090# Pn= 0 Call failed 9091# Pn= 1 Call successful 9092# 9093# Transparent Button String (TBS): \E[Pn1;Pn2;Pn3;{string 9094# Pn1= Button number to be loaded 9095# Pn2= Character count of "string" 9096# Pn3= Key mode being loaded: 9097# 0= Unshifted 9098# 1= Shifted 9099# 2= Control 9100# String= Text string (15 chars max) 9101# 9102# Screen Number Report (SNR): \E[Pnp 9103# Pn= Screen number 9104# 9105# Screen Dimension Report (SDR): \E[Pn1;Pn2r 9106# Pn1= Number of rows available in window 9107# Pn2= Number of columns available in window 9108# 9109# Cursor Position Report (CPR): \E[Pn1;Pn2R 9110# Pn1= "Y" Position of cursor 9111# Pn2= "X" Position of cursor 9112# 9113# Request Answer Back (RAB): \E[c 9114# 9115# Answer Back Response (ABR): \E[?;*;30;VSV 9116# *= 0 No printer available 9117# *= 2 Printer available 9118# V= Software version number 9119# SV= Software sub version number 9120# (printer-available field not documented in v1) 9121# 9122# Screen Alignment Aid: \En 9123# 9124# Bell (lower pitch): \E[x 9125# 9126# Dial Phone Number: \EPdstring\ 9127# string= Phone number to be dialed 9128# 9129# Set Phone Labels: \EPpstring\ 9130# string= Label for phone buttons 9131# 9132# Set Clock: \EPchour;minute;second\ 9133# 9134# Position Clock: \EPsY;X\ 9135# Y= "Y" coordinate 9136# X= "X" coordinate 9137# 9138# Delete Clock: \Epr\ 9139# 9140# Programming The Function Buttons: \EPfPn;string\ 9141# Pn= Button number (00-06, 18-24) 9142# (kf00-kf06, kf18-kf24) 9143# string= Text to sent on button depression 9144# 9145# The following in version 2 only: 9146# 9147# Request For Local Directory Data: \EPp12;\ 9148# 9149# Local Directory Data to host: \EPp11;LOCAL...DIRECTORY...DATA\ 9150# 9151# Request for Local Directory Data in print format: \EPp13;\ 9152# 9153# Enable 'Prt on Line' mode: \022 (DC2) 9154# 9155# Disable 'Prt on Line' mode: \024 (DC4) 9156# 9157 9158# 05-Aug-86: 9159# The following Terminfo entry describes functions which are supported by 9160# the AT&T 5430/pt505 terminal software version 2 and later. 9161att505|pt505|att5430|gs5430|AT&T Personal Terminal 505 or 5430 GETSET terminal, 9162 am, xon, 9163 cols#80, it#8, lines#24, 9164 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 9165 bel=^G, blink=\E[5m, bold=\E[1m, clear=\E[2J\E[H, 9166 cnorm=\E[>l, cr=^M, cub=\E[%p1%dD, cub1=\E[D, 9167 cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, 9168 cup=\E[%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 9169 cvvis=\E[>h, dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, 9170 dl1=\E[M, ed=\E[0J, el=\E[0K, el1=\E[2K, home=\E[H, ht=^I, 9171 il=\E[%p1%dL, il1=\E[L, ind=^J, 9172 is1=\EPr\\E[0u\E[2J\E[0;0H\E[m\E[3l\E[<l\E[4l\E[>l\E[=l\E[?l, 9173 kbs=^H, kcmd=\E!, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, 9174 kcuu1=\E[A, kf0=\E[00s, kf1=\E[01s, kf18=\E[18s, 9175 kf19=\E[19s, kf2=\E[02s, kf20=\E[20s, kf21=\E[21s, 9176 kf22=\E[22s, kf23=\E[23s, kf24=\E[24s, kf26=\E[26s, 9177 kf3=\E[03s, kf4=\E[04s, kf5=\E[05s, kf6=\E[06s, 9178 krfr=\E[27s, mc4=\E[4i, mc5=\E[5i, rc=\E8, rev=\E[7m, 9179 rmacs=\E[10m, rmam=\E[11;1j, rmir=\E[4l, rmso=\E[m, 9180 rmul=\E[m, rs1=\Ec, sc=\E7, sgr0=\E[m, smacs=\E[11m, 9181 smam=\E[11;0j, smir=\E[4h, smso=\E[1m, smul=\E[4m, 9182 9183# The following Terminfo entry describes functions which are supported by 9184# the AT&T 5430/pt505 terminal software version 1. 9185att505-24|pt505-24|gs5430-24|AT&T PT505 or 5430 GETSET version 1 24 lines, 9186 lines#24, 9187 mc4@, mc5@, rc@, rmam@, sc@, smam@, use=att505, 9188tt505-22|pt505-22|gs5430-22|AT&T PT505 or 5430 GETSET version 1 22 lines, 9189 lines#22, use=att505, 9190# 9191#### ------------------ TERMINFO FILE CAN BE SPLIT HERE --------------------- 9192# This cut mark helps make life less painful for people running ncurses tic 9193# on machines with relatively little RAM. The file can be broken in half here 9194# cleanly and compiled in sections -- no `use' references cross this cut 9195# going forward. 9196# 9197 9198#### Ampex (Dialogue) 9199# 9200# Yes, these are the same people who are better-known for making audio- and 9201# videotape. I'm told they are located in Redwood City, CA. 9202# 9203 9204# From: <cbosg!ucbvax!SRC:george> Fri Sep 11 22:38:32 1981 9205# (ampex80: some capabilities merged in from SCO's entry -- esr) 9206ampex80|a80|d80|dialogue|dialogue80|ampex dialogue 80, 9207 OTbs, am, bw, ul, 9208 cols#80, it#8, lines#24, 9209 bel=^G, cbt=\EI, clear=\E*$<75>, cr=^M, cub1=^H, cud1=^J, 9210 cuf1=^L, cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, 9211 dch1=\EW, dl1=\ER$<5*>, ed=\Ey, el=\Et, ht=^I, hts=\E1, 9212 ich1=\EQ, il1=\EE$<5*>, ind=^J, is2=\EA, rmso=\Ek, rmul=\Em, 9213 smso=\Ej, smul=\El, tbc=\E3, 9214# This entry was from somebody anonymous, Tue Aug 9 20:11:37 1983, who wrote: 9215ampex175|ampex d175, 9216 am, 9217 cols#80, lines#24, 9218 bel=^G, clear=\E+, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 9219 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW, 9220 dl1=\ER, ed=\Ey, el=\Et, home=^^, ich1=\EQ, il1=\EE, ind=^J, 9221 is2=\EX\EA\EF, kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, 9222 kdch1=\EW, kdl1=\ER, khome=^^, kich1=\EQ, kil1=\EE, ll=^^^K, 9223 rmcup=\EF, rmso=\Ek, rmul=\Em, smcup=\EN, smso=\Ej, smul=\El, 9224# No backspace key in the main QWERTY cluster. Fortunately, it has a 9225# NEWLINE/PAGE key just above RETURN that sends a strange single-character 9226# code. Given a suitable Unix (one that lets you set an echo-erase-as-BS-SP-BS 9227# mode), this key can be used as the erase key; I find I like this. Because 9228# some people and some systems may not, there is another termcap ("ampex175") 9229# that suppresses this little eccentricity by omitting the relevant capability. 9230ampex175-b|ampex d175 using left arrow for erase, 9231 kbs=^_, use=ampex175, 9232# From: Richard Bascove <atd!dsd!rcb@ucbvax.berkeley.edu> 9233# (ampex210: removed obsolete ":kn#10:" -- esr) 9234ampex210|a210|ampex a210, 9235 OTbs, am, hs, xenl, 9236 cols#80, it#8, lines#24, xmc#1, 9237 cbt=\EI, clear=\E*, cub1=^H, cuf1=^L, 9238 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW, 9239 dl1=\ER, ed=\Ey, el=\Et, flash=\EU\EX\EU\EX\EU\EX\EU\EX, 9240 fsl=\E.2, home=^^, ht=^I, ich1=\EQ, 9241 if=/usr/share/tabset/std, il1=\EE, invis@, 9242 is2=\EC\Eu\E'\E(\El\EA\E%\E{\E.2\EG0\Ed\En, kcub1=^H, 9243 kcud1=^V, kcuf1=^L, kcuu1=^K, kf0=^A0\r, kf1=^A1\r, 9244 kf2=^A2\r, kf3=^A3\r, kf4=^A4\r, kf5=^A5\r, kf6=^A6\r, 9245 kf7=^A7\r, kf8=^A8\r, kf9=^A9\r, khome=^^, 9246 tsl=\E.0\Eg\E}\Ef, use=adm+sgr, 9247# (ampex219: I added <rmam>/<smam> based on the init string, added <cvvis> 9248# from ampex219w, added <cnorm>=\E[?3l, irresistibly suggested by <cvvis>, 9249# and moved the padding to be *after* the caps -- esr) 9250ampex219|ampex-219|amp219|Ampex with Automargins, 9251 hs, xenl, 9252 cols#80, it#8, lines#24, 9253 bel=^G, blink=\E[5m$<2>, bold=\E[1m$<2>, cbt=\E[Z, 9254 clear=\E[H\E[2J$<50>, cnorm=\E[?3l, cr=^M, 9255 csr=%i\E[%p1%2d;%p2%2dr, cub1=^H, cud1=\E[B, 9256 cuf1=\E[C$<2>, cup=\E[%i%p1%d;%p2%dH$<5>, 9257 cuu1=\E[A$<2>, cvvis=\E[?3h, dim=\E[1m, ed=\E[J$<50>, 9258 el=\E[K$<3>, home=\E[H, ht=^I, ind=^J, 9259 is2=\E>\E[?1l\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, 9260 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kf0=\E[21~, 9261 kf1=\E[7~, kf2=\E[8~, kf3=\E[9~, kf4=\E[10~, kf5=\E[11~, 9262 kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, khome=\E[H, 9263 rev=\E[7m, ri=\EM$<5>, rmam=\E[?7l, rmkx=\E>, 9264 rmso=\E[m$<2>, rmul=\E[m$<2>, sgr0=\E[m$<2>, smam=\E[?7h, 9265 smkx=\E=, smso=\E[7m$<2>, smul=\E[4m$<2>, 9266ampex219w|ampex-219w|amp219w|Ampex 132 cols, 9267 cols#132, lines#24, 9268 bel=^G, cr=^M, cud1=^J, ind=^J, 9269 is2=\E>\E[?3h\E[?4l\E[?5l\E[?7h\E[?8h, use=ampex219, 9270# (ampex232: removed <if=/usr/share/tabset/ampex>, no file and no <hts> --esr) 9271ampex232|ampex-232|Ampex Model 232, 9272 am, 9273 cols#80, lines#24, xmc#1, 9274 cbt=\EI, civis=\E.0, clear=\E+, cnorm=\E.4, cub1=^H, cud1=^V, 9275 cuf1=^L, cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, 9276 dch1=\EW, dl1=\ER$<5*/>, ed=\EY, el=\ET, 9277 flash=\Eb$<200/>\Ed, ht=^I, ich1=\EQ, il1=\EE$<5*/>, 9278 invis@, is2=\Eg\El, kbs=^H, kcub1=^H, kcud1=^V, kcuf1=^L, 9279 kcuu1=^K, kf0=^A@\r, kf1=^AA\r, kf2=^AB\r, kf3=^AC\r, 9280 kf4=^AD\r, kf5=^AE\r, kf6=^AF\r, kf7=^AG\r, kf8=^AH\r, 9281 kf9=^AI\r, khome=^^, use=adm+sgr, 9282# (ampex: removed <if=/usr/share/tabset/amp-132>, no file and no <hts> -- esr) 9283ampex232w|Ampex Model 232 / 132 columns, 9284 cols#132, lines#24, 9285 is2=\E\034Eg\El, use=ampex232, 9286 9287#### Ann Arbor (aa) 9288# 9289# Ann Arbor made dream terminals for hackers -- large screen sizes and huge 9290# numbers of function keys. At least some used monitors in portrait mode, 9291# allowing up to 76-character screen heights! They were reachable at: 9292# 9293# Ann Arbor Terminals 9294# 6175 Jackson Road 9295# Ann Arbor, MI 48103 9296# (313)-663-8000 9297# 9298# But in 1996 the phone number reaches some kitschy retail shop, and Ann Arbor 9299# can't be found on the Web; I fear they're long dead. R.I.P. 9300# 9301 9302 9303# Originally from Mike O'Brien@Rand and Howard Katseff at Bell Labs. 9304# Highly modified 6/22 by Mike O'Brien. 9305# split out into several for the various screen sizes by dave-yost@rand 9306# Modifications made 3/82 by Mark Horton 9307# Modified by Tom Quarles at UCB for greater efficiency and more diversity 9308# status line moved to top of screen, <flash> removed 5/82 9309# Some unknown person at SCO then hacked the init strings to make them more 9310# efficient. 9311# 9312# assumes the following setup: 9313# A menu: 0000 1010 0001 0000 9314# B menu: 9600 0100 1000 0000 0000 1000 0000 17 19 9315# C menu: 56 66 0 0 9600 0110 1100 9316# D menu: 0110 1001 1 0 9317# 9318# Briefly, the settings are for the following modes: 9319# (values are for bit set/clear with * indicating our preference 9320# and the value used to test these termcaps) 9321# Note that many of these settings are irrelevent to the terminfo 9322# and are just set to the default mode of the terminal as shipped 9323# by the factory. 9324# 9325# A menu: 0000 1010 0001 0000 9326# Block/underline cursor* 9327# blinking/nonblinking cursor* 9328# key click/no key click* 9329# bell/no bell at column 72* 9330# 9331# key pad is cursor control*/key pad is numeric 9332# return and line feed/return for <cr> key * 9333# repeat after .5 sec*/no repeat 9334# repeat at 25/15 chars per sec. * 9335# 9336# hold data until pause pressed/process data unless pause pressed* 9337# slow scroll/no slow scroll* 9338# Hold in area/don't hold in area* 9339# functions keys have default*/function keys disabled on powerup 9340# 9341# show/don't show position of cursor during page transmit* 9342# unused 9343# unused 9344# unused 9345# 9346# B menu: 9600 0100 1000 0000 0000 1000 0000 17 19 9347# Baud rate (9600*) 9348# 9349# 2 bits of parity - 00=odd,01=even*,10=space,11=mark 9350# 1 stop bit*/2 stop bits 9351# parity error detection off*/on 9352# 9353# keyboard local/on line* 9354# half/full duplex* 9355# disable/do not disable keyboard after data transmission* 9356# 9357# transmit entire page/stop transmission at cursor* 9358# transfer/do not transfer protected characters* 9359# transmit all characters/transmit only selected characters* 9360# transmit all selected areas/transmit only 1 selected area* 9361# 9362# transmit/do not transmit line separators to host* 9363# transmit/do not transmit page tab stops tabs to host* 9364# transmit/do not transmit column tab stop tabs to host* 9365# transmit/do not transmit graphics control (underline,inverse..)* 9366# 9367# enable*/disable auto XON/XOFF control 9368# require/do not require receipt of a DC1 from host after each LF* 9369# pause key acts as a meta key/pause key is pause* 9370# unused 9371# 9372# unused 9373# unused 9374# unused 9375# unused 9376# 9377# XON character (17*) 9378# XOFF character (19*) 9379# 9380# C menu: 56 66 0 0 9600 0110 1100 9381# number of lines to print data on (printer) (56*) 9382# 9383# number of lines on a sheet of paper (printer) (66*) 9384# 9385# left margin (printer) (0*) 9386# 9387# number of pad chars on new line to printer (0*) 9388# 9389# printer baud rate (9600*) 9390# 9391# printer parity: 00=odd,01=even*,10=space,11=mark 9392# printer stop bits: 2*/1 9393# print/do not print guarded areas* 9394# 9395# new line is: 01=LF,10=CR,11=CRLF* 9396# unused 9397# unused 9398# 9399# D menu: 0110 1001 1 0 9400# LF is newline/LF is down one line, same column* 9401# wrap to preceding line if move left from col 1*/don't wrap 9402# wrap to next line if move right from col 80*/don't wrap 9403# backspace is/is not destructive* 9404# 9405# display*/ignore DEL character 9406# display will not/will scroll* 9407# page/column tab stops* 9408# erase everything*/erase unprotected only 9409# 9410# editing extent: 0=display,1=line*,2=field,3=area 9411# 9412# unused 9413# 9414 9415annarbor4080|aa4080|ann arbor 4080, 9416 OTbs, am, 9417 cols#80, lines#40, 9418 bel=^G, clear=\014$<2>, cr=^M, cub1=^H, cud1=^J, cuf1=^_, 9419 cup=\017%p2%{10}%/%{16}%*%p2%{10}%m%+%c%p1%?%p1%{19}%>%t%{12}%+%;%{64}%+%c, 9420 cuu1=^N, home=^K, ht=^I, hts=^]^P1, ind=^J, kbs=^^, kcub1=^H, 9421 kcud1=^J, kcuf1=^_, kcuu1=^N, khome=^K, tbc=^\^P^P, 9422 9423# Strange Ann Arbor terminal from BRL 9424aas1901|Ann Arbor K4080 w/S1901 mod, 9425 am, 9426 cols#80, lines#40, 9427 bel=^G, clear=^L, cr=^M, cub1=^H, cud1=^J, cuf1=^_, cuu1=^N, 9428 home=^K, ht=^I, ind=^J, kbs=^H, kcub1=^H, kcud1=^J, ll=^O\0c, 9429 nel=^M^J, 9430 9431# If you're using the GNU termcap library, add 9432# :cS=\E[%p1%d;%p2%d;%p3%d;%p4%dp: 9433# to these capabilities. This is the nonstandard GNU termcap scrolling 9434# capability, arguments are: 9435# 1. Total number of lines on the screen. 9436# 2. Number of lines above desired scroll region. 9437# 3. Number of lines below (outside of) desired scroll region. 9438# 4. Total number of lines on the screen, the same as the first parameter. 9439# The generic Ann Arbor entry is the only one that uses this. 9440aaa+unk|aaa-unk|ann arbor ambassador (internal - don't use this directly), 9441 OTbs, am, km, mc5i, mir, xon, 9442 cols#80, it#8, 9443 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, 9444 clear=\E[H\E[J$<156>, cr=^M, cub=\E[%p1%dD, cub1=^H, 9445 cud=\E[%p1%dB, cud1=^K, cuf=\E[%p1%dC, cuf1=\E[C, 9446 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 9447 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, 9448 el=\E[K$<5>, home=\E[H, hpa=\E[%p1%{1}%+%dG, ht=^I, 9449 hts=\EH, ich=\E[%p1%d@$<4*>, ich1=\E[@$<4>, il=\E[%p1%dL, 9450 il1=\E[L$<3>, ind=^K, invis=\E[8m, is1=\E[m\E7\E[H\E9\E8, 9451 is3=\E[1Q\E[>20;30l\EP`+x~M\E\\, kbs=^H, kcbt=\E[Z, 9452 kclr=\E[J, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 9453 kdch1=\E[P, kdl1=\E[M, kf1=\EOA, kf10=\EOJ, kf11=\EOK, 9454 kf12=\EOL, kf13=\EOM, kf14=\EON, kf15=\EOO, kf16=\EOP, 9455 kf17=\EOQ, kf18=\EOR, kf19=\EOS, kf2=\EOB, kf20=\EOT, 9456 kf21=\EOU, kf22=\EOV, kf23=\EOW, kf24=\EOX, kf3=\EOC, 9457 kf4=\EOD, kf5=\EOE, kf6=\EOF, kf7=\EOG, kf8=\EOH, kf9=\EOI, 9458 khome=\E[H, kich1=\E[@, kil1=\E[L, krmir=\E6, mc0=\E[0i, 9459 mc4=^C, mc5=\E[v, mc5p=\E[%p1%dv, rc=\E8, 9460 rep=%p1%c\E[%p2%{1}%-%db, rev=\E[7m, 9461 rmkx=\EP`>y~[[J`8xy~[[A`4xy~[[D`6xy~[[C`2xy~[[B\E\\, 9462 rmm=\E[>52l, rmso=\E[m, rmul=\E[m, sc=\E7, 9463 sgr=\E[%?%p1%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p6%t1;%;m, 9464 sgr0=\E[m, 9465 smkx=\EP`>z~[[J`8xz~[[A`4xz~[[D`6xz~[[C`2xz~[[B\E\\, 9466 smm=\E[>52h, smso=\E[7m, smul=\E[4m, tbc=\E[2g, 9467 vpa=\E[%p1%{1}%+%dd, 9468 9469aaa+rv|ann arbor ambassador in reverse video, 9470 blink=\E[5;7m, bold=\E[1;7m, invis=\E[7;8m, 9471 is1=\E[7m\E7\E[H\E9\E8, rev=\E[m, rmso=\E[7m, rmul=\E[7m, 9472 rs1=\E[H\E[7m\E[J$<156>, 9473 sgr=\E[%?%p1%p3%|%!%t7;%;%?%p2%t4;%;%?%p4%t5;%;%?%p6%t1;%;%?%p7%t8;%;m, 9474 sgr0=\E[7m\016, smso=\E[m, smul=\E[4;7m, 9475# Ambassador with the DEC option, for partial vt100 compatibility. 9476aaa+dec|ann arbor ambassador in dec vt100 mode, 9477 acsc=aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}, 9478 csr=\E[%i%p1%d;%p2%dr, enacs=\E(0, rmacs=^N, 9479 sgr=\E[%?%p1%p3%|%!%t7;%;%?%p2%t4;%;%?%p4%t5;%;%?%p6%t1;%;%?%p7%t8;%;m%?%p9%t\017%e\016%;, 9480 smacs=^O, 9481aaa-18|ann arbor ambassador/18 lines, 9482 lines#18, 9483 is2=\E7\E[60;0;0;18p\E8, 9484 rmcup=\E[60;0;0;18p\E[60;1H\E[K, smcup=\E[18;0;0;18p, 9485 use=aaa+unk, 9486aaa-18-rv|ann arbor ambassador/18 lines+reverse video, 9487 use=aaa+rv, use=aaa-18, 9488aaa-20|ann arbor ambassador/20 lines, 9489 lines#20, 9490 is2=\E7\E[60;0;0;20p\E8, 9491 rmcup=\E[60;0;0;20p\E[60;1H\E[K, smcup=\E[20;0;0;20p, 9492 use=aaa+unk, 9493aaa-22|ann arbor ambassador/22 lines, 9494 lines#22, 9495 is2=\E7\E[60;0;0;22p\E8, 9496 rmcup=\E[60;0;0;22p\E[60;1H\E[K, smcup=\E[22;0;0;22p, 9497 use=aaa+unk, 9498aaa-24|ann arbor ambassador/24 lines, 9499 lines#24, 9500 is2=\E7\E[60;0;0;24p\E8, 9501 rmcup=\E[60;0;0;24p\E[60;1H\E[K, smcup=\E[24;0;0;24p, 9502 use=aaa+unk, 9503aaa-24-rv|ann arbor ambassador/24 lines+reverse video, 9504 use=aaa+rv, use=aaa-24, 9505aaa-26|ann arbor ambassador/26 lines, 9506 lines#26, 9507 is2=\E7\E[60;0;0;26p\E8, 9508 rmcup=\E[60;0;0;26p\E[26;1H\E[K, 9509 smcup=\E[H\E[J$<156>\E[26;0;0;26p, use=aaa+unk, 9510aaa-28|ann arbor ambassador/28 lines, 9511 lines#28, 9512 is2=\E7\E[60;0;0;28p\E8, 9513 rmcup=\E[60;0;0;28p\E[28;1H\E[K, 9514 smcup=\E[H\E[J$<156>\E[28;0;0;28p, use=aaa+unk, 9515aaa-30-s|aaa-s|ann arbor ambassador/30 lines w/status, 9516 eslok, hs, 9517 lines#29, 9518 dsl=\E7\E[60;0;0;30p\E[1;1H\E[K\E[H\E8\r\n\E[K, 9519 fsl=\E[>51l, is2=\r\n\E[A\E7\E[60;1;0;30p\E8, 9520 rmcup=\E[60;1;0;30p\E[29;1H\E[K, 9521 smcup=\E[H\E[J$<156>\E[30;1;0;30p\E[30;1H\E[K, 9522 tsl=\E[>51h\E[1;%p1%dH\E[2K, use=aaa+unk, 9523aaa-30-s-rv|aaa-s-rv|ann arbor ambassador/30 lines+status+reverse video, 9524 use=aaa+rv, use=aaa-30-s, 9525aaa-s-ctxt|aaa-30-s-ctxt|ann arbor ambassador/30 lines+status+save context, 9526 rmcup=\E[60;1;0;30p\E[59;1H\E[K, 9527 smcup=\E[30;1H\E[K\E[30;1;0;30p, use=aaa-30-s, 9528aaa-s-rv-ctxt|aaa-30-s-rv-ct|ann arbor ambassador/30 lines+status+save context+reverse video, 9529 rmcup=\E[60;1;0;30p\E[59;1H\E[K, 9530 smcup=\E[30;1H\E[K\E[30;1;0;30p, use=aaa-30-s-rv, 9531aaa|aaa-30|ambas|ambassador|ann arbor ambassador/30 lines, 9532 lines#30, 9533 is2=\E7\E[60;0;0;30p\E8, 9534 rmcup=\E[60;0;0;30p\E[30;1H\E[K, 9535 smcup=\E[H\E[J$<156>\E[30;0;0;30p, use=aaa+unk, 9536aaa-30-rv|aaa-rv|ann arbor ambassador/30 lines in reverse video, 9537 use=aaa+rv, use=aaa-30, 9538aaa-30-ctxt|aaa-ctxt|ann arbor ambassador/30 lines; saving context, 9539 rmcup=\E[60;0;0;30p\E[60;1H\E[K, smcup=\E[30;0;0;30p, 9540 use=aaa-30, 9541aaa-30-rv-ctxt|aaa-rv-ctxt|ann arbor ambassador/30 lines reverse video; saving context, 9542 rmcup=\E[60;0;0;30p\E[60;1H\E[K, smcup=\E[30;0;0;30p, 9543 use=aaa+rv, use=aaa-30, 9544aaa-36|ann arbor ambassador/36 lines, 9545 lines#36, 9546 is2=\E7\E[60;0;0;36p\E8, 9547 rmcup=\E[60;0;0;36p\E[36;1H\E[K, 9548 smcup=\E[H\E[J$<156>\E[36;0;0;36p, use=aaa+unk, 9549aaa-36-rv|ann arbor ambassador/36 lines+reverse video, 9550 use=aaa+rv, use=aaa-36, 9551aaa-40|ann arbor ambassador/40 lines, 9552 lines#40, 9553 is2=\E7\E[60;0;0;40p\E8, 9554 rmcup=\E[60;0;0;40p\E[40;1H\E[K, 9555 smcup=\E[H\E[J$<156>\E[40;0;0;40p, use=aaa+unk, 9556aaa-40-rv|ann arbor ambassador/40 lines+reverse video, 9557 use=aaa+rv, use=aaa-40, 9558aaa-48|ann arbor ambassador/48 lines, 9559 lines#48, 9560 is2=\E7\E[60;0;0;48p\E8, 9561 rmcup=\E[60;0;0;48p\E[48;1H\E[K, 9562 smcup=\E[H\E[J$<156>\E[48;0;0;48p, use=aaa+unk, 9563aaa-48-rv|ann arbor ambassador/48 lines+reverse video, 9564 use=aaa+rv, use=aaa-48, 9565aaa-60-s|ann arbor ambassador/59 lines+status, 9566 eslok, hs, 9567 lines#59, 9568 dsl=\E7\E[60;0;0;60p\E[1;1H\E[K\E[H\E8\r\n\E[K, 9569 fsl=\E[>51l, is2=\r\n\E[A\E7\E[60;1;0;60p\E8, 9570 tsl=\E[>51h\E[1;%p1%dH\E[2K, use=aaa+unk, 9571aaa-60-s-rv|ann arbor ambassador/59 lines+status+reverse video, 9572 use=aaa+rv, use=aaa-60-s, 9573aaa-60-dec-rv|ann arbor ambassador/dec mode+59 lines+status+rev video, 9574 use=aaa+dec, use=aaa+rv, use=aaa-60-s, 9575aaa-60|ann arbor ambassador/60 lines, 9576 lines#60, 9577 is2=\E7\E[60;0;0;60p\E[1Q\E[m\E[>20;30l\E8, 9578 use=aaa+unk, 9579aaa-60-rv|ann arbor ambassador/60 lines+reverse video, 9580 use=aaa+rv, use=aaa-60, 9581aaa-db|ann arbor ambassador 30/destructive backspace, 9582 OTbs@, 9583 cub1=\E[D, is3=\E[1Q\E[m\E[>20l\E[>30h, use=aaa-30, 9584 9585guru|guru-33|guru+unk|ann arbor guru/33 lines 80 cols, 9586 lines#33, 9587 flash=\E[>59h$<100>\E[>59l, 9588 is2=\E7\E[255;0;0;33;80;80p\E8\E[J, is3=\E[>59l, 9589 rmcup=\E[255p\E[255;1H\E[K, smcup=\E[33p, use=aaa+unk, 9590guru+rv|guru changes for reverse video, 9591 flash=\E[>59l$<100>\E[>59h, is3=\E[>59h, 9592guru-rv|guru-33-rv|ann arbor guru/33 lines+reverse video, 9593 use=guru+rv, use=guru-33, 9594guru+s|guru status line, 9595 eslok, hs, 9596 dsl=\E7\E[;0p\E[1;1H\E[K\E[H\E8\r\n\E[K, fsl=\E[>51l, 9597 rmcup=\E[255;1p\E[255;1H\E[K, smcup=, 9598 tsl=\E[>51h\E[1;%p1%dH\E[2K, 9599guru-nctxt|guru with no saved context, 9600 smcup=\E[H\E[J$<156>\E[33p\E[255;1H\E[K, use=guru, 9601guru-s|guru-33-s|ann arbor guru/33 lines+status, 9602 lines#32, 9603 is2=\r\n\E[A\E7\E[255;1;0;33;80;80p\E8\E[J, 9604 smcup=\E[33;1p\E[255;1H\E[K, use=guru+s, use=guru+unk, 9605guru-24|ann arbor guru 24 lines, 9606 cols#80, lines#24, 9607 is2=\E7\E[255;0;0;24;80;80p\E8\E[J, smcup=\E[24p, 9608 use=guru+unk, 9609guru-44|ann arbor guru 44 lines, 9610 cols#97, lines#44, 9611 is2=\E7\E[255;0;0;44;97;100p\E8\E[J, smcup=\E[44p, 9612 use=guru+unk, 9613guru-44-s|ann arbor guru/44 lines+status, 9614 lines#43, 9615 is2=\r\n\E[A\E7\E[255;1;0;44;80;80p\E8\E[J, 9616 smcup=\E[44;1p\E[255;1H\E[K, use=guru+s, use=guru+unk, 9617guru-76|guru with 76 lines by 89 cols, 9618 cols#89, lines#76, 9619 is2=\E7\E[255;0;0;76;89;100p\E8\E[J, smcup=\E[76p, 9620 use=guru+unk, 9621guru-76-s|ann arbor guru/76 lines+status, 9622 cols#89, lines#75, 9623 is2=\r\n\E[A\E7\E[255;1;0;76;89;100p\E8\E[J, 9624 smcup=\E[76;1p\E[255;1H\E[K, use=guru+s, use=guru+unk, 9625guru-76-lp|guru-lp|guru with page bigger than line printer, 9626 cols#134, lines#76, 9627 is2=\E7\E[255;0;0;76;134;134p\E8\E[J, smcup=\E[76p, 9628 use=guru+unk, 9629guru-76-w|guru 76 lines by 178 cols, 9630 cols#178, lines#76, 9631 is2=\E7\E[255;0;0;76;178;178p\E8\E[J, smcup=\E[76p, 9632 use=guru+unk, 9633guru-76-w-s|ann arbor guru/76 lines+status+wide, 9634 cols#178, lines#75, 9635 is2=\r\n\E[A\E7\E[255;1;0;76;178;178p\E8\E[J, 9636 smcup=\E[76;1p\E[255;1H\E[K, use=guru+s, use=guru+unk, 9637guru-76-wm|guru 76 lines by 178 cols with 255 cols memory, 9638 cols#178, lines#76, 9639 is2=\E7\E[255;0;0;76;178;255p\E8\E[J, smcup=\E[76p, 9640 use=guru+unk, 9641aaa-rv-unk|ann arbor unknown type, 9642 lh#0, lw#0, nlab#0, 9643 blink=\E[5;7m, bold=\E[1;7m, home=\E[H, invis=\E[7;8m, 9644 is1=\E[7m\E7\E[H\E9\E8, rev=\E[m, rmso=\E[7m, rmul=\E[7m, 9645 rs1=\E[H\E[7m\E[J, 9646 sgr=\E[%?%p1%!%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p6%t1;%;%?%p7%t8;%;m, 9647 sgr0=\E[7m, smso=\E[m, smul=\E[4;7m, 9648 9649#### Applied Digital Data Systems (adds) 9650# 9651# ADDS itself is long gone. ADDS was bought by NCR, and the same group made 9652# ADDS and NCR terminals. When AT&T and NCR merged, the engineering for 9653# terminals was merged again. Then AT&T sold the terminal business to 9654# SunRiver, which later changed its name to Boundless Technologies. The 9655# engineers from Teletype, AT&T terminals, ADDS, and NCR (who are still there 9656# as of early 1995) are at: 9657# 9658# Boundless Technologies 9659# 100 Marcus Boulevard 9660# Hauppauge, NY 11788-3762 9661# Vox: (800)-231-5445 9662# Fax: (516)-342-7378 9663# Web: http://boundless.com 9664# 9665# Their voice mail used to describe the place as "SunRiver (formerly ADDS)". 9666# In 1995 Boundless acquired DEC's terminals business. 9667# 9668 9669# Regent: lowest common denominator, works on all regents. 9670# (regent: renamed ":bc:" to ":le:" -- esr) 9671regent|Adds Regent Series, 9672 OTbs, am, 9673 cols#80, lines#24, 9674 bel=^G, clear=^L, cr=^M, cub1=^U, cud1=^J, cuf1=^F, cuu1=^Z, 9675 home=\EY\s\s, ind=^J, ll=^A, 9676# Regent 100 has a bug where if computer sends escape when user is holding 9677# down shift key it gets confused, so we avoid escape. 9678regent100|Adds Regent 100, 9679 xmc#1, 9680 bel=^G, 9681 cup=\013%p1%' '%+%c\020%p2%{10}%/%{16}%*%p2%{10}%m%+%c, 9682 kf0=^B1\r, kf1=^B2\r, kf2=^B3\r, kf3=^B4\r, kf4=^B5\r, 9683 kf5=^B6\r, kf6=^B7\r, kf7=^B8\r, lf0=F1, lf1=F2, lf2=F3, 9684 lf3=F4, lf4=F5, lf5=F6, lf6=F7, lf7=F8, rmso=\E0@, rmul=\E0@, 9685 sgr0=\E0@, smso=\E0P, smul=\E0`, use=regent, 9686regent20|Adds Regent 20, 9687 bel=^G, cup=\EY%p1%{32}%+%c%p2%{32}%+%c, ed=\Ek, el=\EK, 9688 use=regent, 9689regent25|Adds Regent 25, 9690 bel=^G, kcub1=^U, kcud1=^J, kcuf1=^F, kcuu1=^Z, khome=^A, 9691 use=regent20, 9692regent40|Adds Regent 40, 9693 xmc#1, 9694 bel=^G, dl1=\El$<2*>, il1=\EM$<2*>, kf0=^B1\r, kf1=^B2\r, 9695 kf2=^B3\r, kf3=^B4\r, kf4=^B5\r, kf5=^B6\r, kf6=^B7\r, 9696 kf7=^B8\r, lf0=F1, lf1=F2, lf2=F3, lf3=F4, lf4=F5, lf5=F6, 9697 lf6=F7, lf7=F8, rmso=\E0@, rmul=\E0@, sgr0=\E0@, smso=\E0P, 9698 smul=\E0`, use=regent25, 9699regent40+|Adds Regent 40+, 9700 is2=\EB, use=regent40, 9701regent60|regent200|Adds Regent 60, 9702 dch1=\EE, is2=\EV\EB, kdch1=\EE, kich1=\EF, krmir=\EF, 9703 rmir=\EF, rmso=\ER\E0@\EV, smir=\EF, smso=\ER\E0P\EV, 9704 use=regent40+, 9705# From: <edward@onyx.berkeley.edu> Thu Jul 9 09:27:33 1981 9706# (viewpoint: added <kcuf1>, function key, and <dl1> capabilities -- esr) 9707viewpoint|addsviewpoint|adds viewpoint, 9708 OTbs, am, 9709 cols#80, lines#24, 9710 bel=^G, clear=^L, cnorm=\017\E0`, cr=^M, cub1=^H, cud1=^J, 9711 cuf1=^F, cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=^Z, 9712 cvvis=\017\E0P, dl1=\El, ed=\Ek$<16.1*>, el=\EK$<16>, 9713 ind=^J, is2=\017\E0`, kcub1=^U, kcud1=^J, kcuf1=^F, kcuu1=^Z, 9714 kf0=^B1, kf2=^B2, kf3=^B!, kf4=^B", kf5=^B#, khome=^A, ll=^A, 9715 rmso=^O, rmul=^O, sgr0=^O, smso=^N, smul=^N, 9716# Some viewpoints have bad ROMs that foo up on ^O 9717screwpoint|adds viewpoint with ^O bug, 9718 cvvis@, rmso@, rmul@, smso@, smul@, use=viewpoint, 9719 9720# From: Jay S. Rouman <jsr@dexter.mi.org> 5 Jul 92 9721# The <civis>/<cnorm>/<sgr>/<sgr0> strings were added by ESR from specs. 9722# Theory; the vp3a+ wants \E0%c to set highlights, where normal=01000000, 9723# underline=01100000, rev=01010000, blink=01000010,dim=01000001, 9724# invis=01000100 and %c is the logical or of desired attributes. 9725# There is also a `tag bit' enabling attributes, set by \E) and unset by \E(. 9726vp3a+|viewpoint3a+|adds viewpoint 3a+, 9727 am, bw, 9728 cols#80, it#8, lines#24, 9729 civis=^W, clear=\E*$<80>, cnorm=^X, cr=^M, cub1=^H, cud1=^J, 9730 cuf1=^L, cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, 9731 ed=\EY$<80>, el=\ET, home=^^, ht=^I, ind=^J, kbs=^H, kcub1=^H, 9732 kcud1=^J, kcuf1=^L, kcuu1=^K, khome=^^, nel=^M^J, rmso=\E(, 9733 sgr=\E0%{64}%?%p1%tQ%|%;%?%p2%t%{96}%|%;%?%p3%tP%|%;%?%p4%t%{2}%|%;%?%p5%t%{1}%|%;%?%p7%tD%|%;%c\E), 9734 sgr0=\E(, smso=\E0Q\E), 9735vp60|viewpoint60|addsvp60|adds viewpoint60, 9736 use=regent40, 9737# 9738# adds viewpoint 90 - from cornell 9739# Note: emacs sends ei occasionally to insure the terminal is out of 9740# insert mode. This unfortunately puts the viewpoint90 IN insert 9741# mode. A hack to get around this is <ich1=\EF\s\EF^U>. (Also, 9742# - :ei=:im=: must be present in the termcap translation.) 9743# - <xhp> indicates glitch that attributes stick to location 9744# - <msgr> means it's safe to move in standout mode 9745# - <clear=\EG\Ek>: clears screen and visual attributes without affecting 9746# the status line 9747# Function key and label capabilities merged in from SCO. 9748vp90|viewpoint90|adds viewpoint 90, 9749 OTbs, bw, msgr, xhp, 9750 cols#80, lines#24, 9751 clear=\EG\Ek, cub1=^H, cud1=^J, cuf1=^F, 9752 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=^Z, dch1=\EE, 9753 dl1=\El, ed=\Ek, el=\EK, home=\EY\s\s, ht=^I, 9754 ich1=\EF \EF\025, ind=^J, kbs=^H, kcub1=^U, kcud1=^J, 9755 kcuf1=^F, kcuu1=^Z, kf0=^B1\r, kf1=^B2\r, kf10=^B;\r, 9756 kf2=^B3\r, kf3=^B4\r, kf4=^B5\r, kf5=^B6\r, kf6=^B7\r, 9757 kf7=^B8\r, kf8=^B9\r, kf9=^B\:\r, khome=^A, lf0=F1, lf1=F2, 9758 lf10=F11, lf2=F3, lf3=F4, lf4=F5, lf5=F6, lf6=F7, lf7=F8, lf8=F9, 9759 lf9=F10, ll=^A, rmso=\ER\E0@\EV, rmul=\ER\E0@\EV, 9760 sgr0=\ER\E0@\EV, smso=\ER\E0Q\EV, smul=\ER\E0`\EV, 9761# Note: if return acts weird on a980, check internal switch #2 9762# on the top chip on the CONTROL pc board. 9763adds980|a980|adds consul 980, 9764 OTbs, am, 9765 cols#80, lines#24, 9766 bel=^G, clear=\014$<1>\013@, cr=^M, cub1=^H, cud1=^J, 9767 cuf1=\E^E01, cup=\013%p1%{64}%+%c\E\005%p2%2d, 9768 dl1=\E\017$<13>, il1=\E\016$<13>, ind=^J, kf0=\E0, kf1=\E1, 9769 kf2=\E2, kf3=\E3, kf4=\E4, kf5=\E5, kf6=\E6, kf7=\E7, kf8=\E8, 9770 kf9=\E9, rmso=^O, sgr0=^O, smso=^Y^^^N, 9771 9772#### C. Itoh Electronics 9773# 9774# As of 1995 these people no longer make terminals (they're still in the 9775# printer business). Their terminals were all clones of the DEC VT series. 9776# They're located in Orange County, CA. 9777# 9778 9779# CIT 80 - vt-52 emulator, the termcap has been modified to remove 9780# the delay times and do an auto tab set rather than the indirect 9781# file used in vt100. 9782cit80|cit-80|citoh 80, 9783 OTbs, am, 9784 cols#80, lines#24, 9785 clear=\E[H\EJ, cr=^M, cub1=^H, cuf1=\E[C, 9786 cup=\E[%i%p1%2d;%p2%2dH, cuu1=\E[A, ed=\EJ, el=\EK, ff=^L, 9787 ind=^J, is2=\E>, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, 9788 kcuu1=\EOA, rmkx=\E[?1l\E>, smkx=\E[?1h\E=, 9789# From: Tim Wood <mtxinu!sybase!tim> Fri Sep 27 09:39:12 PDT 1985 9790# (cit101: added <rmam>/<smam> based on init string, merged this with c101 -- esr) 9791cit101|citc|C.itoh fast vt100, 9792 OTbs, am, xenl, 9793 cols#80, lines#24, 9794 bel=^G, clear=\E[H\E[2J, cnorm=\E[V\E8, cub1=^H, cuf1=\E[C, 9795 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, cvvis=\E7\E[U, 9796 dch1=\E[P, dl1=\E[M, ed=\E[J, el=\E[K, 9797 flash=\E[?5h$<200/>\E[?5l, ich1=\E[@, il1=\E[L, 9798 is2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h\E[3g\E[>5g, 9799 kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, 9800 rmam=\E[?7l, rmkx=\E[?1l\E>, rmso=\E[m, rmul=\E[m, 9801 sgr0=\E[m, smam=\E[?7h, smkx=\E[?1h\E=, smso=\E[7m, 9802 smul=\E[4m, 9803# CIE Terminals CIT-101e from Geoff Kuenning <callan!geoff> via BRL 9804# The following termcap entry was created from the Callan cd100 entry. The 9805# last two lines (with the capabilities in caps) are used by RM-cobol to allow 9806# full selection of combinations of reverse video, underline, and blink. 9807# (cit101e: removed unknown :f0=\EOp:f1=\EOq:f2=\EOr:f3=\EOs:f4=\EOt:f5=\EOu:\ 9808# f6=\EOv:f7=\EOw:f8=\EOx:f9=\EOy:AB=\E[0;5m:AL=\E[m:AR=\E[0;7m:AS=\E[0;5;7m:\ 9809# :NB=\E[0;1;5m:NM=\E[0;1m:NR=\E[0;1;7m:NS=\E[0;1;5;7m: -- esr) 9810cit101e|C. Itoh CIT-101e, 9811 OTbs, OTpt, am, mir, msgr, 9812 cols#80, it#8, lines#24, 9813 acsc=, clear=\E[H\E[J, cnorm=, csr=\E[%i%p1%2d;%p2%2dr, 9814 cud1=\E[B, cuf1=\E[C, cup=\E[%i%p1%2d;%p2%2dH, cuu1=\E[A, 9815 cvvis=\E[?1l\E[?4l\E[?7h, dch1=\E[P, dl1=\E[M, ed=\E[J, 9816 el=\E[K, if=/usr/share/tabset/vt100, il1=\E[L, 9817 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kf0=\EOT, 9818 kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf5=\EOm, kf6=\EOl, 9819 kf7=\EOM, kf8=\EOn, rc=\E8, ri=\EM, rmacs=^O, rmir=\E[4l, 9820 rmkx=\E>, rmso=\E[m, rmul=\E[m, sc=\E7, smacs=^N, smir=\E[4h, 9821 smkx=\E=, smso=\E[7m, smul=\E[4m, 9822# From: David S. Lawyer, June 1997: 9823# The CIT 101-e was made in Japan in 1983-4 and imported by CIE 9824# Terminals in Irvine, CA. It was part of CITOH Electronics. In the 9825# late 1980's CIT Terminals went out of business. 9826# There is no need to use the initialization string is=... (by invoking 9827# tset or setterm etc.) provided that the terminal has been manually set 9828# up (and the setup saved with ^S) to be compatible with this termcap. To be 9829# compatible it should be in ANSI mode (not VT52). A set-up that 9830# works is to set all the manually setable stuff to factory defaults 9831# by pressing ^D in set-up mode. Then increse the brighness with the 9832# up-arrow key since the factory default will likely be dim on an old 9833# terminal. Then change any options you want (provided that they are 9834# compatible with the termcap). For my terminal I set: Screen 9835# Background: light; Keyclicks: silent; Auto wraparound: on; CRT saver: 9836# on. I also set up mine for parity (but you may not need it). Then 9837# save the setup with ^S. 9838# (cit101e-rv: added empty <rmcup> to suppress a tic warning. --esr) 9839cit101e-rv|Citoh CIT-101e (sets reverse video), 9840 am, eo, mir, msgr, xenl, xon, 9841 cols#80, it#8, lines#24, 9842 OTnl=\EM, bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, 9843 civis=\E[1v, clear=\E[H\E[J, cnorm=\E[0;3;4v, cr=^M, 9844 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 9845 cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, 9846 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 9847 cvvis=\E[3;5v, dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, 9848 dl1=\E[M, ed=\E[J, el=\E[K, flash=\E[?5l\E[?5h$<200/>, 9849 home=\E[H, hpa=\E[%i%p1%dG, ht=^I, hts=\EH, ich=\E[%p1%d@, 9850 ich1=\E[@, il=\E[%p1%dL, il1=\E[L, ind=^J, indn=\E[%p1%dS, 9851 is2=\E<\E>\E[?1l\E[?3l\E[?4l\E[?5h\E[?7h\E[?8h\E[3g\E[>5g\E(B\E[m\E[20l\E[1;24r\E[24;1H, 9852 kbs=\177, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 9853 kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, nel=\EE, rc=\E8, 9854 rev=\E[7m, ri=\EM, rin=\E[%p1%dT, rmcup=, rmir=\E[4l, 9855 rmso=\E[m, rmul=\E[m, rs1=\Ec\E[?7h\E[>5g, sc=\E7, 9856 sgr0=\E[m, smcup=\E[>5g\E[?7h\E[?5h, smir=\E[4h, 9857 smso=\E[7m, smul=\E[4m, tbc=\E[3g, u6=\E[%i%p1%d;%p2%dR, 9858 u7=\E[6n, u8=\E[?6c, u9=\E[c, 9859cit101e-n|CIT-101e w/o am, 9860 am@, 9861 cvvis=\E[?1l\E[?4l\E[?7l, kbs=^H, kcub1=^H, kcud1=^J, 9862 use=cit101e, 9863cit101e-132|CIT-101e with 132 cols, 9864 cols#132, 9865 kbs=^H, kcub1=^H, kcud1=^J, use=cit101e, 9866cit101e-n132|CIT-101e with 132 cols w/o am, 9867 am@, 9868 cols#132, 9869 cvvis=\E[?1l\E[?4l\E[?7l, kbs=^H, kcub1=^H, kcud1=^J, 9870 use=cit101e, 9871# CIE Terminals CIT-500 from BRL 9872# The following SET-UP modes are assumed for normal operation: 9873# GENERATE_XON/XOFF:YES DUPLEX:FULL NEWLINE:OFF 9874# AUTOWRAP:ON MODE:ANSI SCREEN_LENGTH:64_LINES 9875# DSPLY_CNTRL_CODES?NO PAGE_WIDTH:80 EDIT_MODE:OFF 9876# Other SET-UP modes may be set for operator convenience or communication 9877# requirements. 9878# Hardware tabs are assumed to be set every 8 columns; they can be set up 9879# by the "reset", "tset", or "tabs" utilities. No delays are specified; use 9880# "stty ixon -ixany" to enable DC3/DC1 flow control! 9881# (cit500: I added <rmam>/<smam> based on the init string -- esr) 9882cit500|CIE Terminals CIT-500, 9883 OTbs, OTpt, mir, msgr, xon, 9884 OTkn#10, cols#80, it#8, lines#64, vt#3, 9885 acsc=, bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, 9886 clear=\E[H\E[J, cr=^M, csr=\E[%i%p1%d;%p2%dr, 9887 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=^J, 9888 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 9889 cuu=\E[%p1%dA, cuu1=\EM, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, 9890 ed=\EJ, el=\EK, home=\E[H, ht=^I, hts=\EH, il=\E[%p1%dL, 9891 il1=\E[L, ind=^J, is2=\E<\E)0, kbs=^H, kcbt=\E[Z, kcub1=\EOD, 9892 kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kdch1=\E[P, kdl1=\E[M, 9893 ked=\EJ, kel=\EK, kf0=\EOP, kf1=\EOQ, kf2=\EOR, kf3=\EOS, 9894 kf4=\EOU, kf5=\EOV, kf6=\EOW, kf7=\EOX, kf8=\EOY, kf9=\EOZ, 9895 khome=\E[H, kich1=\E[4h, kil1=\E[L, krmir=\E[4l, lf0=PF1, 9896 lf1=PF2, lf2=PF3, lf3=PF4, lf4=F15, lf5=F16, lf6=F17, lf7=F18, 9897 lf8=F19, lf9=F20, ll=\E[64H, nel=\EE, rc=\E8, rev=\E[7m, 9898 ri=\EM, rmacs=^O, rmam=\E[?7l, rmir=\E[4l, rmkx=\E[?1l\E>, 9899 rmso=\E[m, rmul=\E[m, 9900 rs1=\E<\E2\E[20l\E[?6l\E[r\E[m\E[q\E(B\017\E)0\E>, 9901 sc=\E7, sgr0=\E[m, smacs=^N, smam=\E[?7h, smir=\E[4h, 9902 smkx=\E[?1h\E=, smso=\E[7m, smul=\E[4m, tbc=\E[3g, 9903 9904# C. Itoh printers begin here 9905citoh|ci8510|8510|c.itoh 8510a, 9906 cols#80, it#8, 9907 bold=\E!, cub1@, 9908 is2=\E(009\,017\,025\,033\,041\,049\,057\,065\,073., 9909 rep=\ER%p2%03d%p1%c, ri=\Er, rmul=\EY, sgr0=\E"\EY, 9910 smul=\EX, use=lpr, 9911citoh-pica|citoh in pica, 9912 is1=\EN, use=citoh, 9913citoh-elite|citoh in elite, 9914 cols#96, 9915 is1=\EE, 9916 is2=\E(009\,017\,025\,033\,041\,049\,057\,065\,073\,081\,089., 9917 use=citoh, 9918citoh-comp|citoh in compressed, 9919 cols#136, 9920 is1=\EQ, 9921 is2=\E(009\,017\,025\,033\,041\,049\,057\,065\,073\,081\,089\,097\,105\,113\,121\,129., 9922 use=citoh, 9923# citoh has infinite cols because we don't want lp ever inserting \n\t**. 9924citoh-prop|citoh-ps|ips|citoh in proportional spacing mode, 9925 cols#32767, 9926 is1=\EP, use=citoh, 9927citoh-6lpi|citoh in 6 lines per inch mode, 9928 is3=\EA, use=citoh, 9929citoh-8lpi|citoh in 8 lines per inch mode, 9930 lines#88, 9931 is3=\EB, use=citoh, 9932 9933#### Control Data (cdc) 9934# 9935 9936cdc456|cdc 456 terminal, 9937 OTbs, am, 9938 cols#80, lines#24, 9939 bel=^G, clear=^Y^X, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 9940 cup=\E1%p1%{32}%+%c%p2%{32}%+%c, cuu1=^Z, dl1=\EJ, ed=^X, 9941 el=^V, home=^Y, il1=\EL, ind=^J, 9942 9943# Assorted CDC terminals from BRL (improvements by DAG & Ferd Brundick) 9944cdc721|CDC Viking, 9945 OTbs, am, 9946 cols#80, lines#24, 9947 clear=^L, cuf1=^X, cup=\002%p2%{32}%+%c%p1%{32}%+%c, 9948 cuu1=^W, el=^K, home=^Y, kcub1=^H, kcud1=^J, kcuf1=^I, 9949 kcuu1=^W, khome=^Y, 9950cdc721ll|CDC Vikingll, 9951 OTbs, am, 9952 cols#132, lines#24, 9953 clear=^L, cuf1=^X, cup=\002%p2%{32}%+%c%p1%{32}%+%c, 9954 cuu1=^W, el=^K, home=^Y, kcub1=^H, kcud1=^J, kcuf1=^I, 9955 kcuu1=^W, khome=^Y, 9956# (cdc752: the BRL entry had :ll=\E1 ^Z: commented out 9957cdc752|CDC 752, 9958 OTbs, am, bw, xhp, 9959 cols#80, lines#24, 9960 bel=^G, clear=\030\E1\s\s, cr=^M, cub1=^H, cud1=^J, cuf1=^U, 9961 cup=\E1%p2%{32}%+%c%p1%{32}%+%c, cuu1=^Z, el=^V, 9962 home=\E1\s\s, ind=^J, ll=^Y, rs1=\E1 \030\002\003\017, 9963# CDC 756 9964# The following switch/key settings are assumed for normal operation: 9965# 96 chars SCROLL FULL duplex not BLOCK 9966# Other switches may be set according to communication requirements. 9967# Insert/delete-character cannot be used, as the whole display is affected. 9968# "so" & "se" are commented out until jove handles "sg" correctly. 9969cdc756|CDC 756, 9970 OTbs, am, bw, 9971 OTkn#10, cols#80, lines#24, 9972 bel=^G, clear=^Y^X, cr=^M, cub1=^H, cud1=^J, cuf1=^U, 9973 cup=\E1%p2%{32}%+%c%p1%{32}%+%c, cuu1=^Z, 9974 dl1=\EJ$<6*/>, ed=^X, el=^V, home=^Y, il1=\EL$<6*/>, ind=^J, 9975 kbs=^H, kcub1=^H, kcud1=^J, kcuf1=^U, kcuu1=^Z, kdch1=\EI, 9976 kdl1=\EL, ked=^X, kel=^V, kf0=\EA, kf1=\EB, kf2=\EC, kf3=\ED, 9977 kf4=\EE, kf5=\EF, kf6=\EG, kf7=\EH, kf8=\Ea, kf9=\Eb, khome=^Y, 9978 khts=^O, kich1=\EK, kil1=\EL, lf0=F1, lf1=F2, lf2=F3, lf3=F4, 9979 lf4=F5, lf5=F6, lf6=F7, lf7=F8, lf8=F9, lf9=F10, ll=^Y^Z, 9980 rs1=\031\030\002\003\017, 9981# 9982# CDC 721 from Robert Viduya, Ga. Tech. <ihnp4!gatech!gitpyr!robert> via BRL. 9983# 9984# Part of the long initialization string defines the "DOWN" key to the left 9985# of the tab key to send an ESC. The real ESC key is positioned way out 9986# in right field. 9987# 9988# The termcap won't work in 132 column mode due to the way it it moves the 9989# cursor. Termcap doesn't have the capability (as far as I could tell) to 9990# handle the 721 in 132 column mode. 9991# 9992# (cdc721: changed :ri: to :sr: -- esr) 9993cdc721-esc|Control Data 721, 9994 OTbs, OTpt, am, bw, msgr, xon, 9995 OTkn#10, cols#80, it#8, lines#30, 9996 bel=^G, blink=^N, cbt=^^^K, clear=^L, cub1=^H, cud1=^Z, 9997 cuf1=^X, cup=\002%p2%{32}%+%c%p1%{32}%+%c, cuu1=^W, 9998 dch1=^^N, dim=^\, dl1=^^Q, ed=^^P, el=^K, home=^Y, hts=^^^RW, 9999 ich1=^^O, il1=^^R, ind=\036W =\036U, invis=^^^R[, 10000 is2=\036\022B\003\036\035\017\022\025\035\036E\036\022H\036\022J\036\022L\036\022N\036\022P\036\022Q\036\022\036\022\^\036\022b\036\022i\036W =\036\022Z\036\011C1-` `!k/o, 10001 kbs=^H, kcub1=^H, kcud1=^Z, kcuf1=^X, kcuu1=^W, kf0=^^q, 10002 kf1=^^r, kf2=^^s, kf3=^^t, kf4=^^u, kf5=^^v, kf6=^^w, kf7=^^x, 10003 kf8=^^y, kf9=^^z, khome=^Y, ll=^B =, rev=^^D, 10004 ri=\036W =\036V, rmir=, rmkx=^^^Rl, rmso=^^E, rmul=^], 10005 sgr0=\017\025\035\036E\036\022\\, smir=, smkx=^^^Rk, 10006 smso=^^D, smul=^\, tbc=^^^RY, 10007 10008#### Getronics 10009# 10010# Getronics is a Dutch electronics company that at one time was called 10011# `Geveke' and made async terminals; but (according to the company itself!) 10012# they've lost all their documentation on the command set. The hardware 10013# documentation suggests the terminals were actually manufactured by a 10014# Taiwanese electronics company named Cal-Comp. There are known 10015# to have been at least two models, the 33 and the 50. 10016# 10017 10018# The 50 seems to be a top end vt220 clone, with the addition of a higher 10019# screen resolution, a larger screen, at least 1 page of memory above and 10020# below the screen, apparently pages of memory right and left of the screen 10021# which can be panned, and about 75 function keys (15 function keys x normal, 10022# shift, control, func A, func B). It also has more setup possibilities than 10023# the vt220. The monitor case is dated November 1978 and the keyboard case is 10024# May 1982. 10025# 10026# The vt100 emulation works as is. The entry below describes the rather 10027# non-conformant (but more featureful) ANSI mode. 10028# 10029# From: Stephen Peterson <stv@utrecht.ow.nl>, 27 May 1995 10030visa50|geveke visa 50 terminal in ansi 80 character mode, 10031 bw, mir, msgr, 10032 cols#80, lines#25, 10033 acsc=0_aaffggh jjkkllmmnnooqqssttuuvvwwxx, bel=^G, 10034 blink=\E[5m, bold=\E[1m, cbt=\E[Z, clear=\E[H\E[2J, cr=^M, 10035 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=\E[D, 10036 cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, 10037 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 10038 dch=\E[%p1%dX, dch1=\E[X, dim=\E[2m, dl=\E[%p1%dM, 10039 dl1=\E[M, ed=\E[J, el=\E[K, flash=\E[?5h\E[?5l, home=\E[H, 10040 hpa=\E[%i%p1%dG, ht=^I, ich=\E[%p1%d@, ich1=\E[@, 10041 il=\E[%p1%dL, il1=\E[L, ind=^J, invis=\E[8m, 10042 is2=\E0;2m\E[1;25r\E[25;1H\E[?3l\E[?7h\E[?8h, 10043 ka1=\E[f, ka3=\EOQ, kb2=\EOP, kbs=^H, kc1=\EOR, kc3=\EOS, 10044 kcub1=\E[D, kcud1=\E[A, kcuf1=\E[C, kcuu1=\E[A, kdch1=\177, 10045 kdl1=\EOS, kf0=\E010, kf1=\E001, kf10=\E011, kf2=\E002, 10046 kf3=\E003, kf4=\E004, kf5=\E005, kf6=\E006, kf7=\E007, 10047 kf8=\E008, kf9=\E009, khome=\E[f, lf2=A delete char, 10048 lf3=A insert line, lf4=A delete line, lf5=A clear, 10049 lf6=A ce of/cf gn, lf7=A print, lf8=A on-line, 10050 lf9=A funcl0=A send, nel=^M^J, rev=\E[7m, rmacs=\E[3l, 10051 rmam=\E[?7l, rmir=\E[4l, rmkx=\E>, rmso=\E[0;2m, 10052 rmul=\E[0m, sgr0=\E[0;2m, smacs=\E3h, smam=\E?7h, 10053 smir=\E[4h, smkx=\E=, smso=\E[2;7m, smul=\E[4m, tbc=\E[3g, 10054 vpa=\E[%i%p1%dd, 10055 10056#### Human Designed Systems (Concept) 10057# 10058# Human Designed Systems 10059# 400 Fehley Drive 10060# King of Prussia, PA 19406 10061# Vox: (610)-277-8300 10062# Fax: (610)-275-5739 10063# Net: support@hds.com 10064# 10065# John Martin <john@hds.com> is their termcap expert. They're mostly out of 10066# the character-terminal business now (1995) and making X terminals. In 10067# particular, the whole `Concept' line described here was discontinued long 10068# ago. 10069# 10070 10071# From: <vax135!hpk> Sat Jun 27 07:41:20 1981 10072# Extensive changes to c108 by arpavax:eric Feb 1982 10073# Some unknown person at SCO then translated it to terminfo. 10074# 10075# There seem to be a number of different versions of the C108 PROMS 10076# (with bug fixes in its Z-80 program). 10077# 10078# The first one that we had would lock out the keyboard of you 10079# sent lots of short lines (like /usr/dict/words) at 9600 baud. 10080# Try that on your C108 and see if it sends a ^S when you type it. 10081# If so, you have an old version of the PROMs. 10082# 10083# You should configure the C108 to send ^S/^Q before running this. 10084# It is much faster (at 9600 baud) than the c100 because the delays 10085# are not fixed. 10086# new status line display entries for c108-8p: 10087# <is3> - init str #3 - setup term for status display - 10088# set programmer mode, select window 2, define window at last 10089# line of memory, set bkgnd stat mesg there, select window 0. 10090# 10091# <tsl> - to status line - select window 2, home cursor, erase to 10092# end-of-window, 1/2 bright on, goto(line#0, col#?) 10093# 10094# <fsl> - from status line - 1/2 bright off, select window 0 10095# 10096# <dsl> - disable status display - set bkgnd status mesg with 10097# illegal window # 10098# 10099# There are probably more function keys that should be added but 10100# I don't know what they are. 10101# 10102# No delays needed on c108 because of ^S/^Q handshaking 10103# 10104c108|concept108|c108-8p|concept108-8p|concept 108 w/8 pages, 10105 is3=\EU\E z"\Ev\001\177 !p\E ;"\E z \Ev \001\177p\Ep\n, 10106 rmcup=\Ev \001\177p\Ep\r\n, use=c108-4p, 10107c108-4p|concept108-4p|concept 108 w/4 pages, 10108 OTbs, eslok, hs, xon, 10109 pb@, 10110 acsc=jEkTl\\mMqLxU, cnorm=\Ew, cr=^M, 10111 cup=\Ea%p1%?%p1%{95}%>%t\001%{96}%-%;%{32}%+%c%p2%?%p2%{95}%>%t\001%{96}%-%;%{32}%+%c, 10112 cvvis=\EW, dch1=\E 1$<16*>, dsl=\E ;\177, fsl=\Ee\E z\s, 10113 ind=^J, is1=\EK\E!\E F, 10114 is3=\EU\E z"\Ev\177 !p\E ;"\E z \Ev \001 p\Ep\n, 10115 rmacs=\Ej\s, rmcup=\Ev \001 p\Ep\r\n, smacs=\Ej!, 10116 smcup=\EU\Ev 8p\Ep\r\E\025, 10117 tsl=\E z"\E?\E\005\EE\Ea %+\s, use=c100, 10118c108-rv|c108-rv-8p|concept 108 w/8 pages in reverse video, 10119 rmcup=\Ev \002 p\Ep\r\n, smcup=\EU\Ev 8p\Ep\r, 10120 use=c108-rv-4p, 10121c108-rv-4p|concept108rv4p|concept 108 w/4 pages in reverse video, 10122 flash=\EK$<200>\Ek, is1=\Ek, rmso=\Ee, smso=\EE, 10123 use=c108-4p, 10124c108-w|c108-w-8p|concept108-w-8|concept108-w8p|concept 108 w/8 pages in wide mode, 10125 cols#132, 10126 is1=\E F\E", rmcup=\Ev ^A0\001D\Ep\r\n, 10127 smcup=\EU\Ev 8\001D\Ep\r, use=c108-8p, 10128 10129# Concept 100: 10130# These have only window relative cursor addressing, not screen 10131# relative. To get it to work right here, smcup/rmcup (which 10132# were invented for the concept) lock you into a one page 10133# window for screen style programs. 10134# 10135# To get out of the one page window, we use a clever trick: 10136# we set the window size to zero ("\Ev " in rmcup) which the 10137# terminal recognizes as an error and resets the window to all 10138# of memory. 10139# 10140# This trick works on c100 but does not on c108, sigh. 10141# 10142# Some tty drivers use cr3 for concept, others use nl3, hence 10143# the delays on cr and ind below. This padding is only needed at 10144# 9600 baud and up. One or the other is commented out depending on 10145# local conventions. 10146# 10147# 2 ms padding on <rmcup> isn't always enough. 6 works fine. Maybe 10148# less than 6 but more than 2 will work. 10149# 10150# Note: can't use function keys f7-f10 because they are 10151# indistinguishable from arrow keys (!), also, del char and 10152# clear eol use xon/xoff so they probably won't work very well. 10153# 10154# Also note that we don't define insrt/del char/delline/eop/send 10155# because they don't transmit unless we reset them - I figured 10156# it was a bad idea to clobber their definitions. 10157# 10158# The <mc5> sequence changes the escape character to ^^ so that 10159# escapes will be passed through to the printer. Only trouble 10160# is that ^^ won't be - ^^ was chosen to be unlikely. 10161# Unfortunately, if you're sending raster bits through to be 10162# plotted, any character you choose will be likely, so we lose. 10163# 10164# \EQ"\EY(^W (send anything from printer to host, for xon/xoff) 10165# cannot be # in is2 because it will hang a c100 with no printer 10166# if sent twice. 10167c100|concept100|concept|c104|c100-4p|hds concept 100, 10168 OTbs, am, eo, mir, ul, xenl, 10169 cols#80, lines#24, pb#9600, vt#8, 10170 bel=^G, blink=\EC, clear=\E?\E\005$<2*>, cr=$<9>\r, 10171 cub1=^H, cud1=^J, cuf1=\E=, 10172 cup=\Ea%p1%{32}%+%c%p2%{32}%+%c, cuu1=\E;, 10173 dch1=\E\021$<16*>, dim=\EE, dl1=\E\002$<3*>, 10174 ed=\E\005$<16*>, el=\E\025$<16>, flash=\Ek$<200>\EK, 10175 ht=\011$<8>, il1=\E\022$<3*>, ind=^J, invis=\EH, ip=$<16*>, 10176 is1=\EK, 10177 is2=\EU\Ef\E7\E5\E8\El\ENH\E\0\Eo&\0\Eo'\E\Eo!\0\E\007!\E\010A@ \E4#\:"\E\:a\E4#;"\E\:b\E4#<"\E\:c, 10178 is3=\Ev $<6>\Ep\n, kbs=^H, kcbt=\E', kctab=\E_, 10179 kcub1=\E>, kcud1=\E<, kcuf1=\E=, kcuu1=\E;, kdch1=\E^Q, 10180 kdl1=\E^B, ked=\E^C, kel=\E^S, kf1=\E5, kf2=\E6, kf3=\E7, 10181 kf4=\E8, kf5=\E9, kf6=\E\:a, kf7=\E\:b, kf8=\E\:c, khome=\E?, 10182 khts=\E], kich1=\E^P, kil1=\E^R, kind=\E[, knp=\E-, kpp=\E., 10183 kri=\E\\, krmir=\E\0, mc4=\036o \E\EQ!\EYP\027, 10184 mc5=\EQ"\EY(\027\EYD\Eo \036, prot=\EI, 10185 rep=\Er%p1%c%p2%{32}%+%c$<.2*>, rev=\ED, 10186 rmcup=\Ev $<6>\Ep\r\n, rmir=\E\s\s, rmkx=\Ex, 10187 rmso=\Ed, rmul=\Eg, sgr0=\EN@, 10188 smcup=\EU\Ev 8p\Ep\r\E\025$<16>, smir=\E^P, smkx=\EX, 10189 smso=\ED, smul=\EG, 10190c100-rv|c100-rv-4p|concept100-rv|c100 rev video, 10191 cnorm@, cvvis@, flash=\EK$<200>\Ek, is1=\Ek, rmso=\Ee, 10192 smso=\EE, use=c100, 10193oc100|oconcept|c100-1p|old 1 page concept 100, 10194 in, 10195 is3@, use=c100, 10196 10197# From: Walter Skorski <walt@genetics1.JMP.TJU.EDU>, 16-oct-1996. 10198# Lots of notes, originally inline, but ncurses doesn't grok that. 10199# 10200# am: not available in power on mode, but turned on with \E[=107;207h in 10201# is2=. Also, \E=124l in is2= could have been used to prevent needing 10202# to specify xenl:, but that would have rendered the last space on the 10203# last line useless. 10204# bw: Not available in power on mode, but turned on with \E[=107;207h in 10205# is2=. 10206# clear: Could be done with \E[2J alone, except that vi (and probably most 10207# other programs) assume that this also homes the cursor. 10208# dsl: Go to window 2, go to the beginning of the line, use a line feed to 10209# scroll the window, and go back to window 1. 10210# is2: the string may cause a warning to be issued by tic that it 10211# found a very long line and that it suspects that a comma is missing 10212# somewhere. This warning can be ignored (unless it comes up more than 10213# once). The initialization string contains the following commands: 10214# 10215# [Setup mode items changed from factory defaults:] 10216# \E)0 set alternate character set to 10217# graphics 10218# ^O set character set to default 10219# [In case it wasn't] 10220# \E[m turn off all attributes 10221# [In case they weren't off] 10222# \E[=107; cursor wrap and 10223# 207h character wrap on 10224# \E[90;3u set Fkey definitions to "transmit" 10225# defaults 10226# \E[92;3u set cursor key definitions to 10227# "transmit" defaults 10228# \E[43;1u set shift F13 to transmit... 10229# \177\E$P\177 10230# \E[44;1u set shift F14 to transmit... 10231# \177\E$Q\177 10232# \E[45;1u set shift F15 to transmit... 10233# \177\E$R\177 10234# \E[46;1u set shift F16 to transmit... 10235# \177\E$S\177 10236# \E[200;1u set shift up to transmit... 10237# \177\E$A\177 10238# \E[201;1u set shift down to transmit... 10239# \177\E$B\177 10240# \E[202;1u set shift right to transmit... 10241# \177\E$C\177 10242# \E[203;1u set shift left to transmit... 10243# \177\E$D\177 10244# \E[204;1u set shift home to transmit... 10245# \177\E$H\177 10246# \E[212;1u set backtab to transmit... 10247# \177\E$I\177 10248# \E[213;1u set shift backspace to transmit... 10249# \177\E$^H\177 10250# \E[214;1u set shift del to transmit... 10251# "\E$\177" 10252# [Necessary items not mentioned in setup mode:] 10253# \E[2!w move to window 2 10254# \E[25;25w define window as line 25 of memory 10255# \E[!w move to window 1 10256# \E[2*w show current line of window 2 as 10257# status line 10258# \E[2+x set meta key to use high bit 10259# \E[;3+} move underline to bottom of character 10260# 10261# All Fkeys are set to their default transmit definitions with \E[90;3u 10262# in is2=. IMPORTANT: to use this terminal definition, the "quit" stty 10263# setting MUST be redefined or deactivated, because the default is 10264# contained in almost all of this terminal's Fkey strings! If for some 10265# reason "quit" cannot be altered, the Fkeys can, but it would be 10266# necessary to change ^| to ^] in all of these definitions, and add 10267# \E[2;029!t to is2. 10268# lines: is set to 24 because this terminal refuses to treat the 25th 10269# line normally. 10270# ll: Not available in power on mode, but turned on with \E[=107;207h in 10271# is2=. 10272# lm: Pointless, given that this definition locks a single screen of 10273# memory into view, but what the hey... 10274# rmso: Could use \E[1;7!{ to turn off only bold and reverse (leaving any 10275# other attributes alone), but some programs expect this to turn off 10276# everything. 10277# rmul: Could use \E[4!{ to turn off only underline (leaving any other 10278# attributes alone), but some programs expect this to turn off 10279# everything. 10280# sgr: Attributes are set on this terminal with the string \E[ followed by 10281# a list of attribute code numbers (in decimal, separated by 10282# semicolons), followed by the character m. The attribute code 10283# numbers are: 10284# 1 for bold; 10285# 2 for dim (which is ignored in power on mode); 10286# 4 for underline; 10287# 5 for blinking; 10288# 7 for inverse; 10289# 8 for not displayable; and 10290# =99 for protected (except that there are strange side 10291# effects to protected characters which make them inadvisable). 10292# The mapping of terminfo parameters to attributes is as follows: 10293# %p1 (standout) = bold and inverse together; 10294# %p2 (underline) = underline; 10295# %p3 (reverse) = inverse; 10296# %p4 (blink) = blinking; 10297# %p5 (dim) is ignored; 10298# %p6 (bold) = bold; 10299# %p7 (invisible) = not displayable; 10300# %p8 (protected) is ignored; and 10301# %p9 (alt char set) = alt char set. 10302# The code to do this is: 10303# \E[0 OUTPUT \E[0 10304# %?%p1%p6%O IF (standout; bold) OR 10305# %t;1 THEN OUTPUT ;1 10306# %; ENDIF 10307# %?%p2 IF underline 10308# %t;4 THEN OUTPUT ;4 10309# %; ENDIF 10310# %?%p4 IF blink 10311# %t;5 THEN OUTPUT ;5 10312# %; ENDIF 10313# %?%p1%p3%O IF (standout; reverse) OR 10314# %t;7 THEN OUTPUT ;7 10315# %; ENDIF 10316# %?%p7 IF invisible 10317# %t;8 THEN OUTPUT ;8 10318# %; ENDIF 10319# m OUTPUT m 10320# %?%p9 IF altcharset 10321# %t^N THEN OUTPUT ^N 10322# %e^O ELSE OUTPUT ^O 10323# %; ENDIF 10324# sgr0: Everything is turned off (including alternate character set), since 10325# there is no way of knowing what it is that the program wants turned 10326# off. 10327# smul: The "underline" attribute is reconfigurable to an overline or 10328# strikethru, or (as done with \E[;3+} in is2=), to a line at the true 10329# bottom of the character cell. This was done to allow for more readable 10330# underlined characters, and to be able to distinguish between an 10331# underlined space, an underscore, and an underlined underscore. 10332# xenl: Terminal can be configured to not need this, but this "glitch" 10333# behavior is actually preferable with autowrap terminals. 10334# 10335# Parameters kf31= thru kf53= actually contain the strings sent by the shifted 10336# Fkeys. There are no parameters for shifted Fkeys in terminfo. The is2 10337# string modifies the 'O' in kf43 to kf46 to a '$'. 10338# 10339# kcbt was originally ^I but redefined in is2=. 10340# kHOM was \E[H originally but redefined in is2=, as were a number of 10341# other keys. 10342# kDC was originally \177 but redefined in is2=. 10343# 10344# kbs: Shift was also ^H originally but redefined as \E$^H in is2=. 10345# tsl: Go to window 2, then do an hpa=. 10346# 10347#------- flash=\E[8;3!}^G\E[3;3!} 10348#------- flash=\E[?5h$<100>\E[?5l 10349# There are two ways to flash the screen, both of which have their drawbacks. 10350# The first is to set the bell mode to video, transmit a bell character, and 10351# set the bell mode back - but to what? There is no way of knowing what the 10352# user's old bell setting was before we messed with it. Worse, the command to 10353# set the bell mode also sets the key click volume, and there is no way to say 10354# "leave that alone", or to know what it's set to, either. 10355# The second way to do a flash is to set the screen to inverse video, pad for a 10356# tenth of a second, and set it back - but like before, there's no way to know 10357# that the screen wasn't ALREADY in inverse video, or that the user may prefer 10358# it that way. The point is moot anyway, since vi (and probably other 10359# programs) assume that by defining flash=, you want the computer to use it 10360# INSTEAD of bel=, rather than as a secondary type of signal. 10361# 10362#------- cvvis=\E[+{ 10363# The is the power on setting, which is also as visible as the cursor 10364# gets. 10365#------- wind=\E[%i%p1%d;%p2%d;%p3%{1}%+%d;%p4%{1}%+%dw 10366# Windowing is possible, but not defined here because it is also used to 10367# emulate status line functions. Allowing a program to set a window could 10368# clobber the status line or render it unusable. There is additional memory, 10369# but screen scroll functions are destructive and do not make use of it. 10370# 10371#------- dim= Not available in power on mode. 10372# You have a choice of defining low intensity characters as "half bright" and 10373# high intensity as "normal", or defining low as "normal" and high as "bold". 10374# No matter which you choose, only one of either "half bright" or "bold" is 10375# available at any time, so taking the time to override the default is 10376# pointless. 10377# 10378#------- prot=\E[=0;99m 10379# Not defined, because it appears to have some strange side effects. 10380#------- pfkey=%?%p1%{24}%<%p1%{30}%>%p1%{54}%<%A%O%t\E[%p1%du\177%p2%s\177%; 10381#------- pfloc=%?%p1%{24}%<%p1%{30}%>%p1%{54}%<%A%O%t\E[%p1%du\177%p2%s\177%; 10382#------- pfx=%?%p1%{24}%<%p1%{30}%>%p1%{54}%<%A%O%t\E[%p1%d;1u\177%p2%s\177%; 10383# Available, but making them available to programs is inadvisable. 10384# The code to do this is: 10385# %?%p1%{24}%< IF ((key; 24) <; 10386# %p1%{30}%> ((key; 30) >; 10387# %p1%{54}%< (key; 54) < 10388# %A ) AND 10389# %O ) OR 10390# [that is, "IF key < 24 OR (key > 30 AND key < 54)",] 10391# %t\E[ THEN OUTPUT \E[ 10392# %p1%d OUTPUT (key) as decimal 10393# [next line applies to pfx only] 10394# ;1 OUTPUT ;1 10395# u OUTPUT u 10396# \177 OUTPUT \177 10397# %p2%s OUTPUT (string) as string 10398# \177 OUTPUT \177 10399# [DEL chosen as delimiter, but could be any character] 10400# [implied: ELSE do nothing] 10401# %; ENDIF 10402# 10403#------- rs2= 10404# Not defined since anything it might do could be done faster and easier with 10405# either Meta-Shift-Reset or the main power switch. 10406# 10407#------- smkx=\E[1!z 10408#------- rmkx=\E[!z 10409# These sequences apply to the cursor and setup keys only, not to the 10410# numeric keypad. But it doesn't matter anyway, since making these 10411# available to programs is inadvisable. 10412# For the key definitions below, all sequences beginning with \E$ are 10413# custom and programmed into the terminal via is2. \E$ also has no 10414# meaning to any other terminal. 10415# 10416#------- cmdch=\E[;%p1%d!t 10417# Available, but making it available to programs is inadvisable. 10418#------- smxon=\E[1*q 10419# Available, but making it available to programs is inadvisable. 10420# Terminal will send XON/XOFF on buffer overflow. 10421#------- rmxon=\E[*q 10422# Available, but making it available to programs is inadvisable. 10423# Terminal will not notify on buffer overflow. 10424#------- smm=\E[2+x 10425#------- rmm=\E[+x 10426# Available, but making them available to programs is inadvisable. 10427# 10428# Printing: 10429# It's not made clear in the manuals, but based on other ansi/vt type 10430# terminals, it's a good guess that this terminal is capable of both 10431# "transparent print" (which doesn't copy data to the screen, and 10432# therefore needs mc5i: specified to say so) and "auxilliary print" 10433# (which does duplicate printed data on the screen, in which case mc4= 10434# and mc5= should use the \E[?4i and \E[?5i strings instead). 10435 10436hds200|Human Designed Systems HDS200, 10437 am, bw, eslok, hs, km, mc5i, mir, msgr, xenl, xon, 10438 cols#80, it#8, lines#24, lm#0, 10439 acsc=``aaffggjjkkllmmnnooqqssttuuvvwwxx~~, bel=^G, 10440 blink=\E[0;5m, bold=\E[0;1m, cbt=\E[Z, civis=\E[6+{, 10441 clear=\E[H\E[J, cnorm=\E[+{, cr=^M, 10442 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=\E[D, 10443 cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, 10444 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 10445 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, 10446 dsl=\E[2!w\r\n\E[!w, ed=\E[J, el=\E[K, el1=\E[1K, 10447 fsl=\E[!w, home=\E[H, hpa=\E[%i%p1%dG, ht=^I, hts=\EH, 10448 ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L, ind=\ED, 10449 invis=\E[0;8m, 10450 is2=\E)0\017\E[m\E[=107;207h\E[90;3u\E[92;3u\E[43;1u\177\E$P\177\E[44;1u\177\E$Q\177\E[45;1u\177\E$R\177\E[46;1u\177\E$S\177\E[200;1u\177\E$A\177\E[201;1u\177\E$B\177\E[202;1u\177\E$C\177\E[203;1u\177\E$D\177\E[204;1u\177\E$H\177\E[212;1u\177\E$I\177\E[213;1u\177\E$\010\177\E[214;1u"\E$\177"\E[2!w\E[25;25w\E[!w\E[2*w\E[2+x\E[;3+}, 10451 kDC=\E$\177, kHOM=\E$H, kLFT=\E$D, kRIT=\E$C, kbs=^H, 10452 kcbt=\E$I, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 10453 kdch1=\177, kent=^M, kf1=^\001\r, kf10=^\010\r, 10454 kf11=^\011\r, kf12=^\012\r, kf13=\EOP, kf14=\EOQ, 10455 kf15=\EOR, kf16=\EOS, kf17=^\017\r, kf18=^\018\r, 10456 kf19=^\019\r, kf2=^\002\r, kf20=^\020\r, kf21=^\021\r, 10457 kf22=^\022\r, kf23=^\023\r, kf3=^\003\r, kf31=^\031\r, 10458 kf32=^\032\r, kf33=^\033\r, kf34=^\034\r, kf35=^\035\r, 10459 kf36=^\036\r, kf37=^\037\r, kf38=^\038\r, kf39=^\039\r, 10460 kf4=^\004\r, kf40=^\040\r, kf41=^\041\r, kf42=^\042\r, 10461 kf43=\E$P, kf44=\E$Q, kf45=\E$R, kf46=\E$S, kf47=^\047\r, 10462 kf48=^\048\r, kf49=^\049\r, kf5=^\005\r, kf50=^\050\r, 10463 kf51=^\051\r, kf52=^\052\r, kf53=^\053\r, kf6=^\006\r, 10464 kf7=^\007\r, kf8=^\008\r, kf9=^\009\r, khome=\E[H, 10465 kind=\E[T, knp=\E[U, kpp=\E[V, kri=\E[S, ll=\E[H\E[A, 10466 mc0=\E[i, mc4=\E[4i, mc5=\E[5i, nel=\E[E, rc=\E8, 10467 rev=\E[0;7m, ri=\EM, rmacs=^O, rmir=\E[4l, rmso=\E[m\017, 10468 rmul=\E[m\017, sc=\E7, 10469 sgr=\E[0%?%p1%p6%O%t;1%;%?%p2%t;4%;%?%p4%t;5%;%?%p1%p3%O%t;7%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 10470 sgr0=\E[m\017, smacs=^N, smir=\E[4h, smso=\E[0;1;7m, 10471 smul=\E[0;4m, tbc=\E[3g, tsl=\E[2!w\E[%i%p1%dG, 10472 vpa=\E[%i%p1%dd, 10473 10474# <ht> through <el> included to specify padding needed in raw mode. 10475# (avt-ns: added empty <acsc> to suppress a tic warning --esr) 10476avt-ns|concept avt no status line, 10477 OTbs, am, eo, mir, ul, xenl, xon, 10478 cols#80, it#8, lines#24, lm#192, 10479 acsc=, bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, 10480 clear=\E[H\E[J$<38>, cnorm=\E[=119l, cr=^M, 10481 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 10482 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 10483 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 10484 cvvis=\E[=119h, dch1=\E[P, dim=\E[1!{, dl=\E[%p1%dM$<4*>, 10485 dl1=\E[M$<4>, ed=\E[J$<96>, el=\E[K$<6>, home=\E[H, 10486 hpa=\E[%p1%{1}%+%dG, ht=\011$<4>, hts=\EH, ich=\E[%p1%d@, 10487 ich1=\E[@, il=\E[%p1%dL$<4*>, il1=\E[L$<4>, ind=\n$<8>, 10488 invis=\E[8m, ip=$<4>, is1=\E[=103l\E[=205l, 10489 is2=\E[1*q\E[2!t\E[7!t\E[=4;101;119;122l\E[=107;118;207h\E)1\E[1Q\EW\E[!y\E[!z\E>\E[0\:0\:32!r\E[0*w\E[w\E2\r\n\E[2;27!t, 10490 kbs=^H, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 10491 kdch1=\E^B\r, ked=\E^D\r, kf1=\EOP, kf2=\EOQ, kf3=\EOR, 10492 kf4=\EOS, khome=\E[H, kich1=\E^A\r, kil1=\E^C\r, ll=\E[24H, 10493 mc0=\E[0i, mc4=\E[4i, mc5=\E[5i, 10494 pfloc=\E[%p1%d;0u#%p2%s#, pfx=\E[%p1%d;1u#%p2%s#, 10495 prot=\E[99m, rc=\E8, rep=%p1%c\E[%p2%{1}%-%db, rev=\E[7m, 10496 ri=\EM$<4>, rmacs=\016$<1>, rmcup=\E[w\E2\r\n, 10497 rmir=\E[4l, rmkx=\E[!z\E[0;2u, rmso=\E[7!{, rmul=\E[4!{, 10498 sc=\E7, 10499 sgr=\E[%?%p1%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p6%t1;%;m, 10500 sgr0=\E[m, smacs=\017$<1>, smcup=\E[=4l\E[1;24w\E2\r, 10501 smir=\E[4h, smkx=\E[1!z\E[0;3u, smso=\E[7m, smul=\E[4m, 10502 tbc=\E[2g, vpa=\E[%p1%{1}%+%dd, 10503avt-rv-ns|concept avt in reverse video mode/no status line, 10504 flash=\E[=205l$<200>\E[=205h, is1=\E[=103l\E[=205h, 10505 use=avt-ns, 10506avt-w-ns|concept avt in 132 column mode/no status line, 10507 is1=\E[=103h\E[=205l, smcup=\E[H\E[1;24;1;132w, 10508 use=avt-ns, 10509avt-w-rv-ns|concept avt in 132 column mode/no status line/reverse video, 10510 flash=\E[=205l$<200>\E[=205h, is1=\E[=103h\E[=205h, 10511 smcup=\E[H\E[1;24;1;132w, use=avt-ns, 10512 10513# Concept AVT with status line. We get the status line using the 10514# "Background status line" feature of the terminal. We swipe the 10515# first line of memory in window 2 for the status line, keeping 10516# 191 lines of memory and 24 screen lines for regular use. 10517# The first line is used instead of the last so that this works 10518# on both 4 and 8 page AVTs. (Note the lm#191 or 192 - this 10519# assumes an 8 page AVT but lm isn't currently used anywhere.) 10520# 10521avt+s|concept avt status line changes, 10522 eslok, hs, 10523 lm#191, 10524 dsl=\E[0*w, fsl=\E[1;1!w, 10525 is3=\E[2w\E[2!w\E[1;1;1;80w\E[H\E[2*w\E[1!w\E2\r\n, 10526 rmcup=\E[2w\E2\r\n, smcup=\E[2;25w\E2\r, 10527 tsl=\E[2;1!w\E[;%p1%dH\E[2K, 10528avt|avt-s|concept-avt|avt w/80 columns, 10529 use=avt+s, use=avt-ns, 10530avt-rv|avt-rv-s|avt reverse video w/sl, 10531 flash=\E[=205l$<200>\E[=205h, is1=\E[=103l\E[=205h, 10532 use=avt+s, use=avt-ns, 10533avt-w|avt-w-s|concept avt 132 cols+status, 10534 is1=\E[=103h\E[=205l, smcup=\E[H\E[1;24;1;132w, 10535 use=avt+s, use=avt-ns, 10536avt-w-rv|avt-w-rv-s|avt wide+status+rv, 10537 flash=\E[=205l$<200>\E[=205h, is1=\E[=103h\E[=205h, 10538 smcup=\E[H\E[1;24;1;132w, use=avt+s, use=avt-ns, 10539 10540#### Contel Business Systems. 10541# 10542 10543# Contel c300 and c320 terminals. 10544contel300|contel320|c300|Contel Business Systems C-300 or C-320, 10545 am, in, xon, 10546 cols#80, lines#24, xmc#1, 10547 bel=^G, clear=\EK, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 10548 cup=\EX%p1%{32}%+%c\EY%p2%{32}%+%c, cuu1=\EA, 10549 dch1=\EO$<5.5*>, dl1=\EM$<5.5*>, ed=\EJ$<5.5*>, 10550 el=\EI$<5.5>, flash=\020\002$<200/>\020\003, home=\EH, 10551 hts=\E1, ich1=\EN, il1=\EL$<5.5*>, ind=^J, ip=$<5.5*>, 10552 kbs=^H, kf0=\ERJ, kf1=\ERA, kf2=\ERB, kf3=\ERC, kf4=\ERD, 10553 kf5=\ERE, kf6=\ERF, kf7=\ERG, kf8=\ERH, kf9=\ERI, ll=\EH\EA, 10554 rmso=\E!\0, sgr0=\E!\0, smso=\E!\r, tbc=\E3, 10555# Contel c301 and c321 terminals. 10556contel301|contel321|c301|c321|Contel Business Systems C-301 or C-321, 10557 flash@, ich1@, ip@, rmso=\E!\0$<20>, smso=\E!\r$<20>, 10558 use=contel300, 10559 10560#### Data General (dg) 10561# 10562# According to James Carlson <carlson@xylogics.com> writing in January 1995, 10563# the terminals group at Data General was shut down in 1991; all these 10564# terminals have thus been discontinued. 10565# 10566# DG terminals have function keys that respond to the SHIFT and CTRL keys, 10567# e.g., SHIFT-F1 generates a different code from F1. To number the keys 10568# sequentially, first the unmodified key codes are listed as F1 through F15. 10569# Then their SHIFT versions are listed as F16 through F30, their CTRL versions 10570# are listed as F31 through F45, and their CTRL-SHIFT versions are listed as 10571# F46 through F60. This is done in the private "includes" below whose names 10572# start with "dgkeys+". 10573# 10574# DG terminals generally support 8 bit characters. For each of these terminals 10575# two descriptions are supplied: 10576# 1) A default description for 8 bits/character communications, which 10577# uses the default DG international character set and keyboard codes. 10578# 2) A description with suffix "-7b" for 7 bits/character communications. 10579# This description must use the NON-DEFAULT native keyboard language. 10580 10581# Unmodified fkeys (kf1-kf11), Shift fkeys (kf12-kf22), Ctrl fkeys (kf23-kf33), 10582# Ctrl/Shift fdkeys (kf34-kf44). 10583 10584dgkeys+8b|Private entry describing DG terminal 8-bit ANSI mode special keys, 10585 ka1=\233020z, ka3=\233021z, kc1=\233022z, kc3=\233023z, 10586 kclr=\2332J, kcub1=\233D, kcud1=\233B, kcuf1=\233C, 10587 kcuu1=\233A, kel=\233K, kf1=\233001z, kf10=\233010z, 10588 kf11=\233011z, kf12=\233012z, kf13=\233013z, 10589 kf14=\233014z, kf15=\233000z, kf16=\233101z, 10590 kf17=\233102z, kf18=\233103z, kf19=\233104z, 10591 kf2=\233002z, kf20=\233105z, kf21=\233106z, 10592 kf22=\233107z, kf23=\233108z, kf24=\233109z, 10593 kf25=\233110z, kf26=\233111z, kf27=\233112z, 10594 kf28=\233113z, kf29=\233114z, kf3=\233003z, 10595 kf30=\233100z, kf31=\233201z, kf32=\233202z, 10596 kf33=\233203z, kf34=\233204z, kf35=\233205z, 10597 kf36=\233206z, kf37=\233207z, kf38=\233208z, 10598 kf39=\233209z, kf4=\233004z, kf40=\233210z, 10599 kf41=\233211z, kf42=\233212z, kf43=\233213z, 10600 kf44=\233214z, kf45=\233200z, kf46=\233301z, 10601 kf47=\233302z, kf48=\233303z, kf49=\233304z, 10602 kf5=\233005z, kf50=\233305z, kf51=\233306z, 10603 kf52=\233307z, kf53=\233308z, kf54=\233309z, 10604 kf55=\233310z, kf56=\233311z, kf57=\233312z, 10605 kf58=\233313z, kf59=\233314z, kf6=\233006z, 10606 kf60=\233300z, kf7=\233007z, kf8=\233008z, kf9=\233009z, 10607 khome=\233H, kprt=\233i, 10608 10609dgkeys+7b|Private entry describing DG terminal 7-bit ANSI mode special keys, 10610 ka1=\E[020z, ka3=\E[021z, kc1=\E[022z, kc3=\E[023z, 10611 kclr=\E[2J, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 10612 kel=\E[K, kf1=\E[001z, kf10=\E[010z, kf11=\E[011z, 10613 kf12=\E[012z, kf13=\E[013z, kf14=\E[014z, kf15=\E[000z, 10614 kf16=\E[101z, kf17=\E[102z, kf18=\E[103z, kf19=\E[104z, 10615 kf2=\E[002z, kf20=\E[105z, kf21=\E[106z, kf22=\E[107z, 10616 kf23=\E[108z, kf24=\E[109z, kf25=\E[110z, kf26=\E[111z, 10617 kf27=\E[112z, kf28=\E[113z, kf29=\E[114z, kf3=\E[003z, 10618 kf30=\E[100z, kf31=\E[201z, kf32=\E[202z, kf33=\E[203z, 10619 kf34=\E[204z, kf35=\E[205z, kf36=\E[206z, kf37=\E[207z, 10620 kf38=\E[208z, kf39=\E[209z, kf4=\E[004z, kf40=\E[210z, 10621 kf41=\E[211z, kf42=\E[212z, kf43=\E[213z, kf44=\E[214z, 10622 kf45=\E[200z, kf46=\E[301z, kf47=\E[302z, kf48=\E[303z, 10623 kf49=\E[304z, kf5=\E[005z, kf50=\E[305z, kf51=\E[306z, 10624 kf52=\E[307z, kf53=\E[308z, kf54=\E[309z, kf55=\E[310z, 10625 kf56=\E[311z, kf57=\E[312z, kf58=\E[313z, kf59=\E[314z, 10626 kf6=\E[006z, kf60=\E[300z, kf7=\E[007z, kf8=\E[008z, 10627 kf9=\E[009z, khome=\E[H, kprt=\E[i, 10628 10629dgkeys+11|Private entry describing 11 minimal-subset DG mode special keys, 10630 kclr=^L, kcub1=^Y, kcud1=^Z, kcuf1=^X, kcuu1=^W, kel=^K, 10631 kf1=^^q, kf10=^^z, kf11=^^{, kf12=^^a, kf13=^^b, kf14=^^c, 10632 kf15=^^d, kf16=^^e, kf17=^^f, kf18=^^g, kf19=^^h, kf2=^^r, 10633 kf20=^^i, kf21=^^j, kf22=^^k, kf23=^^1, kf24=^^2, kf25=^^3, 10634 kf26=^^4, kf27=^^5, kf28=^^6, kf29=^^7, kf3=^^s, kf30=^^8, 10635 kf31=^^9, kf32=^^\:, kf33=^^;, kf34=^^!, kf35=^^", kf36=^^#, 10636 kf37=^^$, kf38=^^%%, kf39=^^&, kf4=^^t, kf40=^^', kf41=^^(, 10637 kf42=^^), kf43=^^*, kf44=^^+, kf5=^^u, kf6=^^v, kf7=^^w, 10638 kf8=^^x, kf9=^^y, khome=^H, 10639 10640dgkeys+15|Private entry describing 15 DG mode special keys, 10641 kHOM=^^^H, kLFT=^^^Y, kRIT=^^^X, ka1=^^\\, ka3=^^], kc1=^^\^, 10642 kc3=^^_, kf1=^^q, kf10=^^z, kf11=^^{, kf12=^^|, kf13=^^}, 10643 kf14=^^~, kf15=^^p, kf16=^^a, kf17=^^b, kf18=^^c, kf19=^^d, 10644 kf2=^^r, kf20=^^e, kf21=^^f, kf22=^^g, kf23=^^h, kf24=^^i, 10645 kf25=^^j, kf26=^^k, kf27=^^l, kf28=^^m, kf29=^^n, kf3=^^s, 10646 kf30=^^`, kf31=^^1, kf32=^^2, kf33=^^3, kf34=^^4, kf35=^^5, 10647 kf36=^^6, kf37=^^7, kf38=^^8, kf39=^^9, kf4=^^t, kf40=^^\:, 10648 kf41=^^;, kf42=^^<, kf43=^^=, kf44=^^>, kf45=^^0, kf46=^^!, 10649 kf47=^^", kf48=^^#, kf49=^^$, kf5=^^u, kf50=^^%%, kf51=^^&, 10650 kf52=^^', kf53=^^(, kf54=^^), kf55=^^*, kf56=^^+, kf57=^^\,, 10651 kf58=^^-, kf59=^^., kf6=^^v, kf60=^^\s, kf7=^^w, kf8=^^x, 10652 kf9=^^y, 10653 10654# Data General color terminals use the "Tektronix" color model. The total 10655# number of colors varies with the terminal model, as does support for 10656# attributes used in conjunction with color. 10657 10658# Removed u7, u8 definitions since they conflict with tack: 10659# Preserve user-defined colors in at least some cases. 10660# u7=^^Fh, 10661# Default is ACM mode. 10662# u8=^^F}20^^Fi^^F}21, 10663# 10664dgunix+fixed|Fixed color info for DG D430C terminals in DG-UNIX mode, 10665 bce, 10666 colors#16, ncv#53, pairs#256, 10667 op=\036Ad\036Bd, 10668 setab=\036B%p1%?%p1%{8}%<%t%{2}%&%?%p1%{1}%&%t%{4}%|%;%?%p1%{4}%&%t%{1}%|%;%;%{48}%+%c, 10669 setaf=\036A%p1%?%p1%{8}%<%t%{2}%&%?%p1%{1}%&%t%{4}%|%;%?%p1%{4}%&%t%{1}%|%;%;%{48}%+%c, 10670 setb=\036B%p1%{48}%+%c, setf=\036A%p1%{48}%+%c, 10671 10672dg+fixed|Fixed color info for DG D430C terminals in DG mode, 10673 use=dgunix+fixed, 10674 10675# Video attributes are coordinated using static variables set by "sgr", then 10676# checked by "op", "seta[bf]", and "set[bf]" to refresh the attribute settings. 10677# (D=dim, U=underline, B=blink, R=reverse.) 10678dg+color8|Color info for Data General D220 and D230C terminals in ANSI mode, 10679 bce, 10680 colors#8, ncv#16, pairs#64, 10681 op=\E[%?%gD%t2;%;%?%gU%t4;%;%?%gB%t5;%;%?%gR%t7;%;m, 10682 setab=\E[4%p1%d%?%gD%t;2%;%?%gU%t;4%;%?%gB%t;5%;%?%gR%t;7%;m, 10683 setaf=\E[3%p1%d%?%gD%t;2%;%?%gU%t;4%;%?%gB%t;5%;%?%gR%t;7%;m, 10684 setb=\E[4%p1%{2}%&%?%p1%{1}%&%t%{4}%|%;%?%p1%{4}%&%t%{1}%|%;%d%?%gD%t;2%;%?%gU%t;4%;%?%gB%t;5%;%?%gR%t;7%;m, 10685 setf=\E[3%p1%{2}%&%?%p1%{1}%&%t%{4}%|%;%?%p1%{4}%&%t%{1}%|%;%d%?%gD%t;2%;%?%gU%t;4%;%?%gB%t;5%;%?%gR%t;7%;m, 10686 10687dg+color|Color info for Data General D470C terminals in ANSI mode, 10688 colors#16, ncv#53, pairs#256, 10689 setab=\E[%?%p1%{8}%<%t4%p1%e=%p1%{2}%&%?%p1%{1}%&%t%{4}%|%;%?%p1%{4}%&%t%{1}%|%;%;%d%?%gD%t;2%;%?%gU%t;4%;%?%gB%t;5%;%?%gR%t;7%;m, 10690 setaf=\E[%?%p1%{8}%<%t3%p1%e<%p1%{2}%&%?%p1%{1}%&%t%{4}%|%;%?%p1%{4}%&%t%{1}%|%;%;%d%?%gD%t;2%;%?%gU%t;4%;%?%gB%t;5%;%?%gR%t;7%;m, 10691 setb=\E[%?%p1%{8}%<%t4%e=%;%p1%{2}%&%?%p1%{1}%&%t%{4}%|%;%?%p1%{4}%&%t%{1}%|%;%d%?%gD%t;2%;%?%gU%t;4%;%?%gB%t;5%;%?%gR%t;7%;m, 10692 setf=\E[%?%p1%{8}%<%t3%e<%;%p1%{2}%&%?%p1%{1}%&%t%{4}%|%;%?%p1%{4}%&%t%{1}%|%;%d%?%gD%t;2%;%?%gU%t;4%;%?%gB%t;5%;%?%gR%t;7%;m, 10693 use=dg+color8, 10694 10695dgmode+color8|Color info for Data General D220/D230C terminals in DG mode, 10696 bce, 10697 colors#8, ncv#16, pairs#64, 10698 op=\036Ad\036Bd, 10699 setab=\036B%p1%{2}%&%?%p1%{1}%&%t%{4}%|%;%?%p1%{4}%&%t%{1}%|%;%{48}%+%c, 10700 setaf=\036A%p1%{2}%&%?%p1%{1}%&%t%{4}%|%;%?%p1%{4}%&%t%{1}%|%;%{48}%+%c, 10701 setb=\036B%p1%{48}%+%c, setf=\036A%p1%{48}%+%c, 10702 10703dgmode+color|Color info for Data General D470C terminals in DG mode, 10704 colors#16, pairs#256, 10705 setab=\036B%p1%?%p1%{8}%<%t%{2}%&%?%p1%{1}%&%t%{4}%|%;%?%p1%{4}%&%t%{1}%|%;%;%{48}%+%c, 10706 setaf=\036A%p1%?%p1%{8}%<%t%{2}%&%?%p1%{1}%&%t%{4}%|%;%?%p1%{4}%&%t%{1}%|%;%;%{48}%+%c, 10707 use=dgmode+color8, 10708 10709dgunix+ccc|Configurable color info for DG D430C terminals in DG-UNIX mode, 10710 bce, ccc, 10711 colors#52, ncv#53, pairs#26, 10712 initp=\036RG0%p1%02X%p2%{256}%*%{1001}%/%02X%p3%{256}%*%{1001}%/%02X%p4%{256}%*%{1001}%/%02X%p5%{256}%*%{1001}%/%02X%p6%{256}%*%{1001}%/%02X%p7%{256}%*%{1001}%/%02X, 10713 oc=\036RG01A00FF00000000\036RG01B00000000FF00\036RG01C007F00000000\036RG01D000000007F00, 10714 op=\036RF4831A\036RF2E31B\036RF1D31C\036RF3F31D, 10715 scp=\036RG2%p1%02X, 10716 10717# Colors are in the order: normal, reverse, dim, dim + reverse. 10718dg+ccc|Configurable color info for DG D430C terminals in DG mode, 10719 bce, ccc, 10720 colors#52, ncv#53, pairs#26, 10721 initp=\036RG0%p1%{16}%/%{48}%+%c%p1%{16}%m%{48}%+%c%p2%{256}%*%{1001}%/%Pa%ga%{16}%/%{48}%+%c%ga%{16}%m%{48}%+%c%p3%{256}%*%{1001}%/%Pa%ga%{16}%/%{48}%+%c%ga%{16}%m%{48}%+%c%p4%{256}%*%{1001}%/%Pa%ga%{16}%/%{48}%+%c%ga%{16}%m%{48}%+%c%p5%{256}%*%{1001}%/%Pa%ga%{16}%/%{48}%+%c%ga%{16}%m%{48}%+%c%p6%{256}%*%{1001}%/%Pa%ga%{16}%/%{48}%+%c%ga%{16}%m%{48}%+%c%p7%{256}%*%{1001}%/%Pa%ga%{16}%/%{48}%+%c%ga%{16}%m%{48}%+%c, 10722 oc=\036RG01\:00??00000000\036RG01;00000000??00\036RG01<007?00000000\036RG01=000000007?00, 10723 op=\036RF4831\:\036RF2>31;\036RF1=31<\036RF3?31=, 10724 scp=\036RG2%p1%{16}%/%{48}%+%c%p1%{16}%m%{48}%+%c, 10725 10726# The generic DG terminal type (an 8-bit-clean subset of the 6053) 10727# Initialization string 1 sets: 10728# ^R - vertical scrolling enabled 10729# ^C - blinking enabled 10730dg-generic|Generic Data General terminal in DG mode, 10731 am, bw, msgr, xon, 10732 cols#80, lines#24, 10733 bel=^G, blink=^N, clear=^L, cr=^M, cub1=^Y, cud1=^Z, cuf1=^X, 10734 cup=\020%p2%c%p1%c, cuu1=^W, dim=^\, el=^K, ind=^J, is1=^R^C, 10735 mc0=^Q, nel=^J, rmso=^], rmul=^U, sgr0=^O^U^], smso=^\, 10736 smul=^T, use=dgkeys+11, 10737 10738# According to the 4.4BSD termcap file, the dg200 <cup> should be the 10739# termcap equivalent of \020%p2%{128}%+%c%p1%{128}%+%c (in termcap 10740# notation that's "^P%r%+\200%+\200"). Those \200s are suspicious, 10741# maybe they were originally nuls (which would fit). 10742 10743dg200|data general dasher 200, 10744 OTbs, am, bw, 10745 cols#80, lines#24, 10746 bel=^G, clear=^L, cr=^M, cub1=^Y, cud1=^Z, cuf1=^X, 10747 cup=\020%p2%c%p1%c, cuu1=^W, el=^K, home=^H, ind=^J, 10748 kcub1=^Y, kcud1=^Z, kcuf1=^X, kcuu1=^W, kf0=^^z, kf1=^^q, 10749 kf2=^^r, kf3=^^s, kf4=^^t, kf5=^^u, kf6=^^v, kf7=^^w, kf8=^^x, 10750 kf9=^^y, khome=^H, lf0=f10, nel=^J, rmso=^^E, rmul=^U, 10751 smso=^^D, smul=^T, 10752 10753# Data General 210/211 (and 410?) from Lee Pearson (umich!lp) via BRL 10754dg210|dg-ansi|Data General 210/211, 10755 am, 10756 cols#80, lines#24, 10757 OTnl=\E[B, clear=\E[2J, cud1=\E[B, cup=\E[%i%p1%d;%p2%dH, 10758 cuu1=\E[A, ed=\E[J, el=\E[K, home=\E[H, kcub1=\E[D, 10759 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, khome=\E[H, 10760 nel=\r\E[H\E[A\n, rmso=\E[0;m, rmul=\E[0;m, smso=\E[7;m, 10761 smul=\E[4;m, 10762# From: Peter N. Wan <ihnp4!gatech!gacsr!wan> 10763# courtesy of Carlos Rucalde of Vantage Software, Inc. 10764# (dg211: this had <cup=\020%r%.%>., which was an ancient termcap hangover. 10765# I suspect the d200 function keys actually work on the dg211, check it out.) 10766dg211|Data General d211, 10767 cnorm=^L, cvvis=^L^R, ht=^I, ind@, kbs=^Y, kf0@, kf1@, kf2@, kf3@, 10768 kf4@, kf5@, kf6@, kf7@, kf8@, kf9@, lf0@, nel=^M^Z, rmcup=^L, 10769 rmso=\036E$<\0/>, smcup=^L^R, smso=\036D$<5/>, use=dg200, 10770 10771# dg450 from Cornell (not official) 10772dg450|dg6134|data general 6134, 10773 cub1@, cuf1=^X, use=dg200, 10774 10775# Not official... 10776# Note: lesser Dasher terminals will not work with vi because vi insists upon 10777# having a command to move straight down from any position on the bottom line 10778# and scroll the screen up, or a direct vertical scroll command. The 460 and 10779# above have both, the D210/211, for instance, has neither. We must use ANSI 10780# mode rather than DG mode because standard UNIX tty drivers assume that ^H is 10781# backspace on all terminals. This is not so in DG mode. 10782# (dg460-ansi: removed obsolete ":kn#6:"; also removed ":mu=\EW:", on the 10783# grounds that there is no matching ":ml:" 10784# fixed garbled ":k9=\E[00\:z:" capability -- esr) 10785dg460-ansi|Data General Dasher 460 in ANSI-mode, 10786 OTbs, am, msgr, ul, 10787 cols#80, it#8, lines#24, 10788 OTnl=\ED, blink=\E[5m, clear=\E[2J, cub1=^H, cud1=\E[B, 10789 cuf1=\E[C, cup=\E[%i%p1%2d;%p2%2dH, cuu1=\E[A, dch1=\E[P, 10790 dim=\E[2m, dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, ht=^I, 10791 ich1=\E[@, il1=\E[L, ind=\E[S, is2=^^F@, kbs=\E[D, 10792 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 10793 kf0=\E[001z, kf1=\E[002z, kf2=\E[003z, kf3=\E[004z, 10794 kf4=\E[005z, kf5=\E[006z, kf6=\E[007z, kf7=\E[008z, 10795 kf8=\E[009z, kf9=\E[010z, khome=\E[H, lf0=f1, lf1=f2, lf2=f3, 10796 lf3=f4, lf4=f5, lf5=f6, lf6=f7, lf7=f8, lf9=f10, rev=\E[7m, 10797 ri=\E[T, rmso=\E[m, rmul=\E[05, sgr0=\E[m, smso=\E[7m, 10798 smul=\E[4m, 10799# From: Wayne Throop <mcnc!rti-sel!rtp47!throopw> (not official) 10800# Data General 605x 10801# Ought to work for a Model 6242, Type D210 as well as a 605x. 10802# Note that the cursor-down key transmits ^Z. Job control users, beware! 10803# This also matches a posted description of something called a `Dasher 100' 10804# so there's a dg100 alias here. 10805# (dg6053: the 4.4BSD file had <cub1=^H>, <cud1=^J>, <cuf1=^S>. -- esr) 10806dg6053-old|dg100|data general 6053, 10807 OTbs, am, bw, ul, 10808 cols#80, lines#24, 10809 OTbc=^Y, bel=^G, clear=^L, cnorm=^L, cr=^M, cub1=^Y, cud1=^Z, 10810 cuf1=^X, cup=\020%p2%c%p1%c, cuu1=^W, cvvis=^L^R, el=^K, 10811 home=^H, ht=^I, is2=^R, kbs=^Y, kcub1=^Y, kcud1=^Z, kcuf1=^X, 10812 kcuu1=^W, kf0=^^q, kf1=^^r, kf2=^^s, kf3=^^t, kf4=^^u, kf5=^^v, 10813 kf6=^^w, kf7=^^x, kf8=^^y, kf9=^^z, khome=^H, rmcup=^L, 10814 rmso=\0^^E, rmul=^U, smcup=^L^R, smso=\0\0\0\0\0\036D, 10815 smul=^T, 10816 10817# (Some performance can be gained over the generic DG terminal type) 10818dg6053|6053|6053-dg|dg605x|605x|605x-dg|d2|d2-dg|Data General DASHER 6053, 10819 xon@, 10820 home=^P\0\0, ll=^P\0^W, use=dg-generic, 10821 10822# Like 6053, but adds reverse video and more keypad and function keys. 10823d200|d200-dg|Data General DASHER D200, 10824 bold=^^D^T, home@, ll@, rev=^^D, rmso=^^E^], 10825 sgr=\036%?%p1%p3%|%p6%|%tD%eE%;%?%p2%p6%|%t\024%e\025%;%?%p4%t\016%e\017%;%?%p1%p5%|%t\034%e\035%;, 10826 sgr0=\017\025\035\036E, smso=^^D^\, use=dgkeys+15, 10827 use=dg6053, 10828 10829# DASHER D210 series terminals in ANSI mode. 10830# Reverse video, no insert/delete character/line, 7 bits/character only. 10831# 10832# Initialization string 1 sets: 10833# <0 - scrolling enabled 10834# <1 - blink enabled 10835# <4 - print characters regardless of attributes 10836d210|d214|Data General DASHER D210 series, 10837 am, bw, msgr, xon, 10838 cols#80, lines#24, 10839 bel=^G, blink=\E[5m, bold=\E[4;7m, clear=\E[2J, cr=^M, 10840 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=\E[B, 10841 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 10842 cuu=\E[%p1%dA, cuu1=\E[A, dim=\E[2m, ed=\E[J, el=\E[K, 10843 el1=\E[1K, home=\E[H, ind=^J, is1=\E[<0;<1;<4l, 10844 ll=\E[H\E[A, nel=^J, rev=\E[7m, rmso=\E[m, rmul=\E[m, 10845 sgr=\E[%?%p1%p3%|%p6%|%t7;%;%?%p4%t5;%;%?%p2%p6%|%t4;%;%?%p1%p5%|%t2;%;m, 10846 sgr0=\E[m, smso=\E[2;7m, smul=\E[4m, use=dgkeys+7b, 10847 10848# DASHER D210 series terminals in DG mode. 10849# Like D200, but adds clear to end-of-screen and needs XON/XOFF. 10850d210-dg|d214-dg|Data General DASHER D210 series in DG mode, 10851 xon, 10852 ed=^^FF, use=d200-dg, 10853 10854# DASHER D211 series terminals in ANSI mode. 10855# Like the D210, but with 8-bit characters and local printer support. 10856# 10857# Initialization string 2 sets: 10858# \E[2;1;1;1v 10859# 2;1 - 8 bit operations 10860# 1;1 - 8 bit (international) keyboard language 10861# \E(B - default primary character set (U.S. ASCII) 10862# \E)4 - default secondary character set (international) 10863# ^O - primary character set 10864# 10865d211|d215|Data General DASHER D211 series, 10866 km, 10867 is2=\E[2;1;1;1v\E(B\E)4\017, mc0=\E[i, use=dgkeys+8b, 10868 use=d210, 10869 10870# Initialization string 2 sets: 10871# \E[2;0;1;0v 10872# 2;0 - 7 bit operations 10873# 1;0 - 7 bit (native) keyboard language 10874# \E(0 - default character set (the keyboard native language) 10875# ^O - primary character set 10876d211-7b|d215-7b|Data General DASHER D211 series in 7 bit mode, 10877 km@, 10878 is2=\E[2;0;1;0v\E(0\017, use=dgkeys+7b, use=d211, 10879 10880# Like the D210 series, but adds support for 8-bit characters. 10881# 10882# Reset string 2 sets: 10883# ^^N - secondary character set 10884# ^^FS0> - 8 bit international character set 10885# ^^O - primary character set 10886# ^^FS00 - default character set (matching the native keyboard language) 10887# 10888d211-dg|d215-dg|Data General DASHER D211 series in DG mode, 10889 km, 10890 rs2=\036N\036FS0>\036O\036FS00, use=d210-dg, 10891 10892d216-dg|d216e-dg|d216+dg|d216e+dg|d217-dg|Data General DASHER D216 series in DG mode, 10893 use=d211-dg, 10894 10895# Enhanced DG mode with changes to be more UNIX compatible. 10896d216-unix|d216e-unix|d216+|d216e+|Data General DASHER D216+ in DG-UNIX mode, 10897 mc5i, 10898 it#8, 10899 acsc=a\177j$k"l!m#n)q+t'u&v(w%x*, blink=^^PI, 10900 clear=^^PH, cub1=^^PD, cud1=^^PB, cuf1=^^PC, cuu1=^^PA, 10901 el=^^PE, home=^^PF, hpa=\020%p1%c\177, ht=^I, ind=^J, 10902 is1=\022\003\036P@1, is3=\036Fz0, kHOM=^^Pf, kLFT=^^Pd, 10903 kPRT=^^P1, kRIT=^^Pc, kclr=^^PH, kcub1=^^PD, kcud1=^^PB, 10904 kcuf1=^^PC, kcuu1=^^PA, kel=^^PE, khome=^^PF, kprt=^^P0, 10905 mc0=\036F?9, mc4=^^Fa, mc5=^^F`, rmacs=\036FS00, 10906 rs2=\036N\036FS0E\036O\036FS00, 10907 sgr=\036%?%p1%p3%|%p6%|%tD%eE%;%?%p2%p6%|%t\024%e\025%;\036P%?%p4%tI%eJ%;%?%p1%p5%|%t\034%e\035%;\036FS%?%p9%t11%e00%;, 10908 sgr0=\036PJ\025\035\036E\036FS00, smacs=\036FS11, 10909 vpa=\020\177%p1%c, use=dgkeys+15, use=d216-dg, 10910d216-unix-25|d216+25|Data General DASHER D216+ in DG-UNIX mode with 25 lines, 10911 lines#25, 10912 is3=\036Fz2, use=d216+, 10913 10914d217-unix|Data General DASHER D217 in DG-UNIX mode, 10915 use=d216-unix, 10916d217-unix-25|Data General DASHER D217 in DG-UNIX mode with 25 lines, 10917 use=d216-unix-25, 10918 10919# DASHER D220 color terminal in ANSI mode. 10920# Like the D470C but with fewer colors and screen editing features. 10921# 10922# Initialization string 1 sets: 10923# \E[<0;<1;<4l 10924# <0 - scrolling enabled 10925# <1 - blink enabled 10926# <4 - print characters regardless of attributes 10927# \E[m - all attributes off 10928# Reset string 1 sets: 10929# \Ec - initial mode defaults (RIS) 10930# 10931d220|Data General DASHER D220, 10932 mc5i@, 10933 dl@, dl1@, il@, il1@, is1=\E[<0;<1;<4l\E[m, mc4@, mc5@, rs1=\Ec, 10934 use=dg+color8, use=d470c, 10935 10936d220-7b|Data General DASHER D220 in 7 bit mode, 10937 mc5i@, 10938 dl@, dl1@, il@, il1@, is1=\E[<0;<1;<4l\E[m, mc4@, mc5@, rs1=\Ec, 10939 use=dg+color8, use=d470c-7b, 10940 10941# Initialization string 3 sets: 10942# - default cursor (solid rectangle) 10943# Reset string 2 sets: 10944# ^^N - secondary character set 10945# ^^FS0> - 8 bit international character set 10946# ^^O - primary character set 10947# ^^FS00 - default character set (matching the native keyboard language) 10948# 10949d220-dg|Data General DASHER D220 color terminal in DG mode, 10950 mc5i@, 10951 dl1@, home@, il1@, is2@, is3=\036FQ2, ll@, mc4@, mc5@, rs1@, 10952 rs2=\036N\036FS0>\036O\036FS00, use=dgmode+color8, 10953 use=d470c-dg, 10954 10955# DASHER D230C color terminal in ANSI mode. 10956# Like the D220 but with minor ANSI compatibility improvements. 10957# 10958d230c|d230|Data General DASHER D230C, 10959 blink=\E[5;50m, bold=\E[4;7;50m, dim=\E[2;50m, nel=^M^J, 10960 rev=\E[7;50m, rmkx=\E[2;1v, rmso=\E[50m, rmul=\E[50m, 10961 sgr=\E[50%?%p1%p3%|%p6%|%t;7%{1}%e%{0}%;%PR%?%p4%t;5%{1}%e%{0}%;%PB%?%p2%p6%|%t;4%{1}%e%{0}%;%PU%?%p1%p5%|%t;2%{1}%e%{0}%;%PDm\E)%?%p9%t6\016%e4\017%;, 10962 sgr0=\E[50m\E)4\017, smkx=\E[2;0v, smso=\E[2;7;50m, 10963 smul=\E[4;50m, use=dgkeys+7b, use=d220, 10964 10965d230c-dg|d230-dg|Data General DASHER D230C in DG mode, 10966 use=d220-dg, 10967 10968# DASHER D400/D450 series terminals. 10969# These add intelligent features like insert/delete to the D200 series. 10970# 10971# Initialization string 2 sets: 10972# ^^FQ2 - default cursor (solid rectangle) 10973# ^^FW - character protection disabled 10974# ^^FJ - normal (80 column) mode 10975# ^^F\^ - horizontal scrolling enabled (for alignment) 10976# ^^FX004? - margins at columns 0 and 79 10977# ^^F] - horizontal scrolling disabled 10978# ^^O - primary character set 10979# ^^FS00 - default character set (the keyboard native language) 10980# - (should reset scrolling regions, but that glitches the screen) 10981# Reset string 1 sets: 10982# ^^FA - all terminal defaults except scroll rate 10983# Reset string 2 sets: 10984# ^^F] - horizontal scrolling disabled 10985# ^^FT0 - jump scrolling 10986# 10987d400|d400-dg|d450|d450-dg|Data General DASHER D400/D450 series, 10988 mc5i, 10989 acsc=j$k"l!m#n)q+t'u&v(w%x*, civis=\036FQ0, 10990 cnorm=\036FQ2, dch1=^^K, dl1=^^FI, 10991 enacs=\036N\036FS11\036O, home=^^FG, hpa=\020%p1%c\177, 10992 ich1=^^J, il1=^^FH, 10993 is2=\036FQ2\036FW\036FJ\036F\^\036FX004?\036F]\036O\036FS00, 10994 ll=\036FG\027, mc4=^^Fa, mc5=^^F`, ri=^^I, rmacs=^^O, 10995 rs1=^^FA, rs2=\036F]\036FT0, 10996 sgr=\036%?%p1%p3%|%p6%|%tD%eE%;%?%p2%p6%|%t\024%e\025%;%?%p4%t\016%e\017%;%?%p1%p5%|%t\034%e\035%;\036%?%p9%tN%eO%;, 10997 sgr0=\017\025\035\036E\036O, smacs=^^N, 10998 vpa=\020\177%p1%c, use=d210-dg, 10999 11000# DASHER D410/D460 series terminals in ANSI mode. 11001# These add a large number of intelligent terminal features. 11002# 11003# Initialization string 1 sets: 11004# \E[<0;<1;<2;<4l 11005# <0 - scrolling enabled 11006# <1 - blink enabled 11007# <2 - horizontal scrolling enabled (for alignment) 11008# <4 - print characters regardless of attributes 11009# \E[5;0v - normal (80 column) mode 11010# \E[1;1;80w - margins at columns 1 and 80 11011# \E[1;6;<2h 11012# 1 - print all characters even if protected 11013# 6 - character protection disabled 11014# <2 - horizontal scrolling disabled 11015# - (should reset scrolling regions, but that glitches the screen) 11016# 11017# Initialization string 2 sets: 11018# \E[3;2;2;1;1;1v 11019# 3;2 - default cursor (solid rectangle) 11020# 2;1 - 8 bit operations 11021# 1;1 - international keyboard language 11022# \E(B - default primary character set (U.S. ASCII) 11023# \E)4 - default secondary character set (international) 11024# ^O - primary character set 11025# 11026# Reset string 1 sets: 11027# \Ec - initial mode defaults (RIS) 11028# \E[<2h - horizontal scrolling disabled 11029# 11030# Reset string 2 sets: 11031# \E[4;0;2;1;1;1v 11032# 4;0 - jump scrolling 11033# 2;1 - 8 bit operations 11034# 1;1 - 8 bit (international) keyboard language 11035# \E(B - default primary character set (U.S. ASCII) 11036# \E)4 - default secondary character set (international) 11037# 11038d410|d411|d460|d461|Data General DASHER D410/D460 series, 11039 mc5i, 11040 acsc=j$k"l!m#n)q+t'u&v(w%x*, civis=\E[3;0v, 11041 cnorm=\E[3;2v, dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, 11042 dl1=\E[M, ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, il1=\E[L, 11043 is1=\E[<0;<1;<2;<4l\E[5;0v\E[1;1;80w\E[1;6;<2h, 11044 is2=\E[3;2;2;1;1;1v\E(B\E)4\017, mc4=\E[4i, mc5=\E[5i, 11045 ri=\EM, rmacs=\E)4\017, rs1=\Ec\E[<2h, 11046 rs2=\E[4;0;2;1;1;1v\E(B\E)4, 11047 sgr=\E[%?%p1%p3%|%p6%|%t7;%;%?%p4%t5;%;%?%p2%p6%|%t4;%;%?%p1%p5%|%t2;%;m\E)%?%p9%t6\016%e4\017%;, 11048 sgr0=\E[m\E)4\017, smacs=\E)6\016, use=d211, 11049 11050# Initialization string 2 sets: 11051# \E[3;2;2;0;1;0v 11052# 3;2 - default cursor (solid rectangle) 11053# 2;0 - 7 bit operations 11054# 1;0 - 7 bit (native) keyboard language 11055# \E(0 - default character set (the keyboard native language) 11056# ^O - primary character set 11057# 11058# Reset string 2 sets: 11059# \E[4;0;2;0;1;0v 11060# 4;0 - jump scrolling 11061# 2;0 - 7 bit operations 11062# 1;0 - 7 bit (native) keyboard language 11063# \E(0 - default character set (the keyboard native language) 11064# 11065d410-7b|d411-7b|d460-7b|d461-7b|Data General DASHER D410/D460 series in 7 bit mode, 11066 km@, 11067 enacs=\E)6, is2=\E[3;2;2;0;1;0v\E(0\017, rmacs=^O, 11068 rs2=\E[4;0;2;0;1;0v\E(0, 11069 sgr=\E[%?%p1%p3%|%p6%|%t7;%;%?%p4%t5;%;%?%p2%p6%|%t4;%;%?%p1%p5%|%t2;%;m%?%p9%t\016%e\017%;, 11070 sgr0=\E[m\017, smacs=^N, use=dgkeys+7b, use=d410, 11071 11072d410-dg|d460-dg|d411-dg|d461-dg|Data General DASHER D410/D460 series in DG mode, 11073 km, 11074 enacs@, rmacs=\036FS00, 11075 sgr=\036%?%p1%p3%|%p6%|%tD%eE%;%?%p2%p6%|%t\024%e\025%;%?%p4%t\016%e\017%;%?%p1%p5%|%t\034%e\035%;\036FS%?%p9%t11%e00%;, 11076 sgr0=\017\025\035\036E\036FS00, smacs=\036FS11, 11077 use=d400-dg, 11078 11079# DASHER D410/D460 series terminals in wide (126 columns) ANSI mode. 11080# 11081# Initialization string 1 sets: 11082# \E[<0;<1;<2;<4l 11083# <0 - scrolling enabled 11084# <1 - blink enabled 11085# <2 - horizontal scrolling enabled (for alignment) 11086# <4 - print characters regardless of attributes 11087# \E[5;1v - compressed (135 column) mode 11088# \E[1;1;126 - margins at columns 1 and 126 11089# \E[1;6;<2h 11090# 1 - print all characters even if protected 11091# 6 - character protection disabled 11092# <2 - horizontal scrolling disabled 11093# - (should reset scrolling regions, but that glitches the screen) 11094# 11095# Reset string 1 sets: 11096# \Ec - initial mode defaults (RIS) 11097# \E[5;1v - compressed (135 column) mode 11098# \E[1;1;126w - margins at columns 1 and 126 11099# \E[<2h - horizontal scrolling disabled 11100# 11101d410-w|d411-w|d460-w|d461-w|Data General DASHER D410/D460 series in wide mode, 11102 cols#126, 11103 is1=\E[<0;<1;<2;<4l\E[5;1v\E[1;1;126w\E[1;6;<2h, 11104 rs1=\Ec\E[5;1v\E[1;1;126w\E[<2h, use=d410, 11105 11106d410-7b-w|d411-7b-w|d460-7b-w|d461-7b-w|Data General DASHER D410/D460 series in wide 7 bit mode, 11107 cols#126, 11108 is1=\E[<0;<1;<2;<4l\E[5;1v\E[1;1;126w\E[1;6;<2h, 11109 rs1=\Ec\E[5;1v\E[1;1;126w\E[<2h, use=d410-7b, 11110 11111d412-dg|d462-dg|d462e-dg|d412+dg|d462+dg|d413-dg|d463-dg|Data General DASHER D412/D462 series in DG mode, 11112 use=d410-dg, 11113 11114# These add intelligent features like scrolling regions. 11115d412-unix|d462-unix|d412+|d462+|Data General DASHER D412+/D462+ series in Unix mode, 11116 civis=\036FQ0, clear=^^FE, cnorm=\036FQ5, 11117 cup=\036FP%p2%2.2X%p1%2.2X, dch1=^^K, dl1=^^FI, 11118 home=^^FG, hpa=\036FP%p1%2.2XFF, ich1=^^J, il1=^^FH, 11119 is2=\036FQ5\036FW\036FJ\036F\^\036FX004F\036O\036FS00, 11120 ll=\036FG\036PA, mc0=^A, rc=\036F}11, ri=^^I, 11121 rs1=\036FA\036FT0, rs2=\036P@1, sc=\036F}10, 11122 vpa=\036FPFF%p1%2.2X, 11123 wind=\036FB%?%p1%t%p1%2.2X0%;%p2%p1%-%{1}%+%2.2X0%?%{23}%p2%>%t000%;\036FX%p3%2.2X%p4%2.2X, 11124 use=d216+, 11125d412-unix-w|d462-unix-w|d412+w|d462+w|Data General DASHER D412+/D462+ series in wide Unix mode, 11126 cols#132, 11127 is2=\036FQ5\036FW\036FK\036F\^\036FX0083\036O\036FS00, 11128 rs2=\036P@1\036FK\036FX0083, 11129 wind=\036FB%?%p1%t%p1%2.2X1%;%p2%p1%-%{1}%+%2.2X1%?%{23}%p2%>%t001%;\036FX%p3%2.2X%p4%2.2X, 11130 use=d412-unix, 11131d412-unix-25|d462-unix-25|d412+25|d462+25|Data General DASHER D412+/D462+ series in Unix mode with 25 lines, 11132 lines#25, 11133 is3=\036Fz2, 11134 wind=\036FB%?%p1%t%p1%2.2X0%;%p2%p1%-%{1}%+%2.2X0%?%{24}%p2%>%t000%;\036FX%p3%2.2X%p4%2.2X, 11135 use=d462+, 11136d412-unix-s|d462-unix-s|d412+s|d462+s|Data General DASHER D412+/D462+ in Unix mode with status line, 11137 eslok, hs, 11138 clear=\036FG\036PH, fsl=\036F}01\022, 11139 is3=\036Fz2\036F}00\036FB180000\036F}01, ll@, 11140 tsl=\036F}00\036FP%p1%2.2X18\036PG, 11141 wind=\036FB%?%p1%t%p1%2.2X0%;%p2%p1%-%{1}%+%2.2X0%?%{23}%p2%>%t%{23}%p2%-%2.2X0%;000\036FX%p3%2.2X%p4%2.2X, 11142 use=d462+, 11143 11144# Relative cursor motions are confined to the current window, 11145# which is not what the scrolling region specification expects. 11146# Thus, relative vertical cursor positioning must be deleted. 11147d412-unix-sr|d462-unix-sr|d412+sr|d462+sr|Data General DASHER D412+/D462+ in Unix mode with scrolling region, 11148 csr=\036FB%?%p1%t%p1%2.2X0%;%p2%p1%-%{1}%+%2.2X0%?%{23}%p2%>%t000%;, 11149 cud1@, cuu1@, ll@, use=d462+, 11150 11151d413-unix|d463-unix|Data General DASHER D413/D463 series in DG-UNIX mode, 11152 use=d412-unix, 11153d413-unix-w|d463-unix-w|Data General DASHER D413/D463 series in wide DG-UNIX mode, 11154 use=d412-unix-w, 11155d413-unix-25|d463-unix-25|Data General DASHER D413/D463 series in DG-UNIX mode with 25 lines, 11156 use=d412-unix-25, 11157d413-unix-s|d463-unix-s|Data General DASHER D413/D463 in DG-UNIX mode with status line, 11158 use=d412-unix-s, 11159d413-unix-sr|d463-unix-sr|Data General DASHER D413/D463 in DG-UNIX mode with scrolling region, 11160 use=d412-unix-sr, 11161 11162d414-unix|d464-unix|Data General D414/D464 in DG-UNIX mode, 11163 use=d413-unix, 11164d414-unix-w|d464-unix-w|Data General D414/D464 in wide DG-UNIX mode, 11165 use=d413-unix-w, 11166d414-unix-25|d464-unix-25|Data General D414/D464 in DG-UNIX mode with 25 lines, 11167 use=d413-unix-25, 11168d414-unix-s|d464-unix-s|Data General D414/D464 in DG-UNIX mode with status line, 11169 use=d413-unix-s, 11170d414-unix-sr|d464-unix-sr|Data General D414/D464 in DG-UNIX mode with scrolling region, 11171 use=d413-unix-sr, 11172 11173d430c-dg|d430-dg|Data General D430C in DG mode, 11174 use=d413-dg, use=dg+fixed, 11175d430c-dg-ccc|d430-dg-ccc|Data General D430C in DG mode with configurable colors, 11176 use=d413-dg, use=dg+ccc, 11177 11178d430c-unix|d430-unix|Data General D430C in DG-UNIX mode, 11179 use=d413-unix, use=dgunix+fixed, 11180d430c-unix-w|d430-unix-w|Data General D430C in wide DG-UNIX mode, 11181 use=d413-unix-w, use=dgunix+fixed, 11182d430c-unix-25|d430-unix-25|Data General D430C in DG-UNIX mode with 25 lines, 11183 use=d413-unix-25, use=dgunix+fixed, 11184d430c-unix-s|d430-unix-s|Data General D430C in DG-UNIX mode with status line, 11185 use=d413-unix-s, use=dgunix+fixed, 11186d430c-unix-sr|d430-unix-sr|Data General D430C in DG-UNIX mode with scrolling region, 11187 use=d413-unix-sr, use=dgunix+fixed, 11188d430c-unix-ccc|d430-unix-ccc|Data General D430C in DG-UNIX mode with configurable colors, 11189 use=d413-unix, use=dgunix+ccc, 11190d430c-unix-w-ccc|d430-unix-w-ccc|Data General D430C in wide DG-UNIX mode with configurable colors, 11191 use=d413-unix-w, use=dgunix+ccc, 11192d430c-unix-25-ccc|d430-unix-25-ccc|Data General D430C in DG-UNIX mode with 25 lines and configurable colors, 11193 use=d413-unix-25, use=dgunix+ccc, 11194d430c-unix-s-ccc|d430-unix-s-ccc|Data General D430C in DG-UNIX mode with status line and configurable colors, 11195 use=d413-unix-s, use=dgunix+ccc, 11196d430c-unix-sr-ccc|d430-unix-sr-ccc|Data General D430C in DG-UNIX mode with scrolling region and configurable colors, 11197 use=d413-unix-sr, use=dgunix+ccc, 11198 11199# DASHER D470C color terminal in ANSI mode. 11200# Like the D460 but with 16 colors and without a compressed mode. 11201# 11202# Initialization string 1 sets: 11203# \E[<0;<1;<2;<4l 11204# <0 - scrolling enabled 11205# <1 - blink enabled 11206# <2 - horizontal scrolling enabled (for alignment) 11207# <4 - print characters regardless of attributes 11208# \E[1;1;80w - margins at columns 1 and 80 11209# \E[1;6;<2h 11210# 1 - print all characters even if protected 11211# 6 - character protection disabled 11212# <2 - horizontal scrolling disabled 11213# - (should reset scrolling regions, but that glitches the screen) 11214# 11215d470c|d470|Data General DASHER D470C, 11216 is1=\E[<0;<1;<2;<4l\E[1;1;80w\E[1;6;<2h, 11217 sgr=\E[%?%p1%p3%|%p6%|%t7;%{1}%e%{0}%;%PR%?%p4%t5;%{1}%e%{0}%;%PB%?%p2%p6%|%t4;%{1}%e%{0}%;%PU%?%p1%p5%|%t2;%{1}%e%{0}%;%PDm\E)%?%p9%t6\016%e4\017%;, 11218 use=dg+color, use=d460, 11219 11220d470c-7b|d470-7b|Data General DASHER D470C in 7 bit mode, 11221 is1=\E[<0;<1;<2;<4l\E[1;1;80w\E[1;6;<2h, 11222 sgr=\E[%?%p1%p3%|%p6%|%t7;%{1}%e%{0}%;%PR%?%p4%t5;%{1}%e%{0}%;%PB%?%p2%p6%|%t4;%{1}%e%{0}%;%PU%?%p1%p5%|%t2;%{1}%e%{0}%;%PDm%?%p9%t\016%e\017%;, 11223 use=dg+color, use=d460-7b, 11224 11225# Initialization string 2 sets: 11226# ^^FQ2 - default cursor (solid rectangle) 11227# ^^FW - character protection disabled 11228# ^^F\^ - horizontal scrolling enabled (for alignment) 11229# ^^FX004? - margins at columns 0 and 79 11230# ^^F] - horizontal scrolling disabled 11231# ^^O - primary character set 11232# ^^FS00 - default character set (the keyboard native language) 11233# - (should reset scrolling regions, but that glitches the screen) 11234# 11235d470c-dg|d470-dg|Data General DASHER D470C in DG mode, 11236 is2=\036FQ2\036FW\036F\^\036FX004?\036F]\036O\036FS00, 11237 use=dgmode+color, use=d460-dg, 11238 11239# DASHER D555 terminal in ANSI mode. 11240# Like a D411, but has an integrated phone. 11241d555|Data General DASHER D555, 11242 use=d411, 11243d555-7b|Data General DASHER D555 in 7-bit mode, 11244 use=d411-7b, 11245d555-w|Data General DASHER D555 in wide mode, 11246 use=d411-w, 11247d555-7b-w|Data General DASHER D555 in wide 7-bit mode, 11248 use=d411-7b-w, 11249d555-dg|Data General DASHER D555 series in DG mode, 11250 use=d411-dg, 11251 11252# DASHER D577 terminal in ANSI mode. 11253# Like a D411, but acts as a keyboard for serial printers ("KSR" modes). 11254d577|Data General DASHER D577, 11255 use=d411, 11256d577-7b|Data General DASHER D577 in 7-bit mode, 11257 use=d411-7b, 11258d577-w|Data General DASHER D577 in wide mode, 11259 use=d411-w, 11260d577-7b-w|Data General DASHER D577 in wide 7-bit mode, 11261 use=d411-7b-w, 11262 11263d577-dg|d578-dg|Data General DASHER D577/D578 series in DG mode, 11264 use=d411-dg, 11265 11266# DASHER D578 terminal. 11267# Like a D577, but without compressed mode; like a D470C in this respect. 11268# 11269# Initialization string 1 sets: 11270# \E[<0;<1;<2;<4l 11271# <0 - scrolling enabled 11272# <1 - blink enabled 11273# <2 - horizontal scrolling enabled (for alignment) 11274# <4 - print characters regardless of attributes 11275# \E[1;1;80w - margins at columns 1 and 80 11276# \E[1;6;<2h 11277# 1 - print all characters even if protected 11278# 6 - character protection disabled 11279# <2 - horizontal scrolling disabled 11280# - (should reset scrolling regions, but that glitches the screen) 11281# 11282d578|Data General DASHER D578, 11283 is1=\E[<0;<1;<2;<4l\E[1;1;80w\E[1;6;<2h, use=d577, 11284d578-7b|Data General DASHER D578 in 7-bit mode, 11285 is1=\E[<0;<1;<2;<4l\E[1;1;80w\E[1;6;<2h, use=d577-7b, 11286 11287#### Datamedia (dm) 11288# 11289# Datamedia was headquartered in Nashua, New Hampshire until it went 11290# out of business in 1993, but the ID plates on the terminals referred 11291# to the factory in Pennsauken, NJ. The factory was sold to a PCB board 11292# manufacturer which threw out all information about the terminals. 11293# 11294 11295cs10|colorscan|Datamedia Color Scan 10, 11296 msgr, 11297 cols#80, lines#24, 11298 bel=^G, clear=\E[H\E[J, cr=^M, cub1=^H, cud1=^J, cuf1=\E[C, 11299 cup=\E[%i%p1%02d;%p2%02dH, cuu1=\E[A, ed=\E[J, el=\E[K, 11300 ind=^J, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 11301 kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, rmso=\E[m, rmul=\E[m, 11302 sgr0=\E[m, smso=\E[7m, smul=\E[4m, 11303cs10-w|Datamedia Color Scan 10 with 132 columns, 11304 cols#132, 11305 cup=\E[%i%p1%02d;%p2%03dH, use=cs10, 11306 11307# (dm1520: removed obsolete ":ma=^\ ^_^P^YH:" -- esr) 11308dm1520|dm1521|datamedia 1520, 11309 OTbs, am, xenl, 11310 cols#80, it#8, lines#24, 11311 bel=^G, clear=^L, cr=^M, cub1=^H, cud1=^J, cuf1=^\, 11312 cup=\036%p2%{32}%+%c%p1%{32}%+%c, cuu1=^_, ed=^K, el=^], 11313 home=^Y, ht=^I, ind=^J, kcub1=^H, kcud1=^J, kcuf1=^\, kcuu1=^_, 11314 khome=^Y, 11315# dm2500: this terminal has both <ich> and <smir>. Applications using 11316# termcap/terminfo directly (rather than through ncurses) might be confused. 11317dm2500|datamedia2500|datamedia 2500, 11318 OTbs, OTnc, 11319 cols#80, lines#24, 11320 bel=^G, clear=^^^^\177, cub1=^H, cud1=^J, cuf1=^\, 11321 cup=\014%p2%{96}%^%c%p1%{96}%^%c, cuu1=^Z, 11322 dch1=\020\010\030\035$<10*>, 11323 dl1=\020\032\030\035$<10*>, el=^W, home=^B, 11324 ich1=\020\034\030\035$<10*>, 11325 il1=\020\n\030\035\030\035$<15>, ind=^J, pad=\377, 11326 rmdc=^X^], rmir=\377\377\030\035$<10>, rmso=^X^], 11327 smdc=^P, smir=^P, smso=^N, 11328# dmchat is like DM2500, but DOES need "all that padding" (jcm 1/31/82) 11329# also, has a meta-key. 11330# From: <goldberger@su-csli.arpa> 11331# (dmchat: ":MT:" changed to ":km:" -- esr) 11332dmchat|dmchat version of datamedia 2500, 11333 km, 11334 dl1=\020\032\030\035$<2/>, 11335 il1=\020\n\030\035\030\035$<1*/>, use=dm2500, 11336# (dm3025: ":MT:" changed to ":km:" -- esr) 11337dm3025|datamedia 3025a, 11338 OTbs, km, 11339 cols#80, it#8, lines#24, 11340 bel=^G, clear=\EM$<2>, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 11341 cup=\EY%p2%{32}%+%c%p1%{32}%+%c, cuu1=\EA, 11342 dch1=\010$<6>, dl1=\EP\EA\EQ$<130>, ed=\EJ$<2>, el=\EK, 11343 home=\EH, ht=^I, il1=\EP\n\EQ$<130>, ind=^J, ip=$<6>, 11344 is2=\EQ\EU\EV, rmdc=\EQ, rmir=\EQ, rmso=\EO0, smdc=\EP, 11345 smir=\EP, smso=\EO1, 11346dm3045|datamedia 3045a, 11347 OTbs, am, eo, km@, ul, xenl, 11348 dch1=\EB$<6>, dl1@, il1@, is2=\EU\EV, kcuf1=\EC, kcuu1=\EA, 11349 kf0=\Ey\r, kf1=\Ep\r, kf2=\Eq\r, kf3=\Er\r, kf4=\Es\r, 11350 kf5=\Et\r, kf6=\Eu\r, kf7=\Ev\r, kf8=\Ew\r, kf9=\Ex\r, 11351 khome=\EH, pad=\177, rmdc@, rmir=\EP, rmso@, smdc@, smso@, 11352 use=dm3025, 11353# Datamedia DT80 soft switches: 11354# 1 0=Jump 1=Smooth 11355# Autorepeat 0=off 1=on 11356# Screen 0=Dark 1=light 11357# Cursor 0=u/l 1=block 11358# 11359# 2 Margin Bell 0=off 1=on 11360# Keyclick 0=off 1=on 11361# Ansi/VT52 0=VT52 1=Ansi 11362# Xon/Xoff 0=Off 1=On 11363# 11364# 3 Shift3 0=Hash 1=UK Pound 11365# Wrap 0=Off 1=On 11366# Newline 0=Off 1=On 11367# Interlace 0=Off 1=On 11368# 11369# 4 Parity 0=Odd 1=Even 11370# Parity 0=Off 1=On 11371# Bits/Char 0=7 1=8 11372# Power 0=60Hz 1=50Hz 11373# 11374# 5 Line Interface 0=EIA 1=Loop 11375# Aux Interface 0=EIA 1=Loop 11376# Local Copy 0=Off 1=On 11377# Spare 11378# 11379# 6 Aux Parity 0=Odd 1=Even 11380# Aux Parity 0=Off 1=On 11381# Aux Bits/Char 0=7 1=8 11382# CRT Saver 0=Off 1=On 11383# dm80/1 is a vt100 lookalike, but it doesn't seem to need any padding. 11384dm80|dmdt80|dt80|datamedia dt80/1, 11385 clear=\E[2J\E[H, cud1=^J, cuf1=\E[C, 11386 cup=%i\E[%p1%d;%p2%dH, cuu1=\E[A, ed=\E[J, el=\E[K, 11387 home=\E[H, mc0=\E[0i, mc4=\E[4i, mc5=\E[5i, ri=\EM, 11388 rmso=\E[m, rmul=\E[m, sgr0=\E[m, smso=\E[7m, smul=\E[4m, 11389 use=vt100, 11390# except in 132 column mode, where it needs a little padding. 11391# This is still less padding than the vt100, and you can always turn on 11392# the ^S/^Q handshaking, so you can use vt100 flavors for things like 11393# reverse video. 11394dm80w|dmdt80w|dt80w|datamedia dt80/1 in 132 char mode, 11395 cols#132, 11396 clear=\E[H\E[2J$<50/>, cud1=^J, 11397 cup=\E[%i%p1%d;%p2%dH$<5/>, cuu1=\E[A$<5/>, 11398 ed=\E[0J$<20/>, el=\E[0K$<20/>, use=dm80, 11399# From: Adam Thompson <athompso@pangea.ca> Sept 10 1995 11400dt80-sas|Datamedia DT803/DTX for SAS usage, 11401 am, bw, 11402 cols#80, lines#24, 11403 acsc=``a1fxgqh0jYk?lZm@nEooppqDrrsstCu4vAwBx3yyzz{{||}}~~, 11404 bel=^G, clear=^L, cr=^M, 11405 csr=\E=%p1%{32}%+%c%{32}%c\E#1\E=%p2%{32}%+%c%{32}%c\E#2, 11406 cub1=^H, cud1=\EB, cuf1=^\, 11407 cup=\E=%p2%{32}%+%c%p1%{32}%+%c, cuu1=^_, dl1=\EM, ed=^K, 11408 el=^], ff=^L, home=^Y, ht=^I, hts=\E'1, il1=\EL, ind=\EB, 11409 is2=\E)0\E<\EP\E'0\E$2, kclr=^L, kcub1=^H, kcud1=^J, 11410 kcuf1=^\, kcuu1=^_, ked=^K, kel=^], khome=^Y, mc4=^O, mc5=^N, 11411 rev=\E$2\004, ri=\EI, rmacs=\EG, rmso=^X, sgr0=^X, smacs=\EF, 11412 smso=\E$2\004, tbc=\E'0, 11413 11414# Datamedia Excel 62, 64 from Gould/SEL UTX/32 via BRL 11415# These aren't end-all Excel termcaps; but do insert/delete char/line 11416# and name some of the extra function keys. (Mike Feldman ccvaxa!feldman) 11417# The naming convention has been bent somewhat, with the use of E? (where 11418# E is for 'Excel') as # a name. This was done to distinguish the entries 11419# from the other Datamedias in use here, and yet to associate a model of 11420# the Excel terminals with the regular datamedia terminals that share 11421# major characteristics. 11422excel62|excel64|datamedia Excel 62, 11423 dch1=\E[P, kbs=^H, kcub1=^H, kcud1=^J, kf5=\EOu, kf6=\EOv, 11424 kf7=\EOw, kf8=\EOx, kf9=\EOy, rmir=\E[4l, smir=\E[4h, 11425 use=dt80, 11426excel62-w|excel64-w|datamedia Excel 62 in 132 char mode, 11427 dch1=\E[P, kbs=^H, kcub1=^H, kcud1=^J, kf5=\EOu, kf6=\EOv, 11428 kf7=\EOw, kf8=\EOx, kf9=\EOy, rmir=\E[4l, smir=\E[4h, 11429 use=dt80w, 11430excel62-rv|excel64-rv|datamedia Excel 62 in reverse video mode, 11431 dch1=\E[P, flash=\E[?5l\E[?5h, kbs=^H, kcub1=^H, kcud1=^J, 11432 kf5=\EOu, kf6=\EOv, kf7=\EOw, kf8=\EOx, kf9=\EOy, rmir=\E[4l, 11433 smir=\E[4h, use=dt80, 11434 11435#### Falco 11436# 11437# Falco Data Products 11438# 440 Potrero Avenue 11439# Sunnyvale, CA 940864-196 11440# Vox: (800)-325-2648 11441# Fax: (408)-745-7860 11442# Net: techsup@charm.sys.falco.com 11443# 11444# Current Falco models as of 1995 are generally ANSI-compatible and support 11445# emulations of DEC VT-series, Wyse, and Televideo types. 11446# 11447 11448# Test version for Falco ts-1. See <arpavax.hickman@ucb> for info 11449# This terminal was released around 1983 and was discontinued long ago. 11450# The standout and underline highlights are the same. 11451falco|ts1|ts-1|falco ts-1, 11452 OTbs, am, 11453 cols#80, it#8, lines#24, 11454 bel=^G, clear=\E*, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 11455 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW, 11456 dl1=\ER, ed=\EY, el=\ET\EG0\010, home=^^, ht=^I, il1=\EE, 11457 ind=^J, is2=\Eu\E3, kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, 11458 kf0=^A0\r, rmir=\Er, rmso=\Eg0, rmul=\Eg0, sgr0=\Eg0, 11459 smir=\Eq, smso=\Eg1, smul=\Eg1, 11460falco-p|ts1p|ts-1p|falco ts-1 with paging option, 11461 OTbs, am, da, db, mir, msgr, ul, 11462 cols#80, it#8, lines#24, 11463 bel=^G, cbt=\EI, clear=\E*, cr=^M, cub1=^H, cud1=\E[B, 11464 cuf1=\E[C, cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=\E[A, 11465 dch1=\EW, dl1=\ER, ed=\EY, el=\ET\EG0\010\Eg0, ht=^I, 11466 il1=\EE, ind=^J, is2=\EZ\E3\E_c, kcub1=\E[D, kcud1=\E[B, 11467 kcuf1=\E[C, kcuu1=\E[A, khome=\E[H, rmcup=\E_b, rmir=\Er, 11468 rmso=\Eg0, rmul=\Eg0, sgr0=\Eg0, smcup=\E_d, smir=\Eq, 11469 smso=\Eg4, smul=\Eg1, 11470# (ts100: I added <rmam>/<smam> based on the init string -- esr) 11471ts100|ts100-sp|falco ts100-sp, 11472 am, mir, msgr, xenl, xon, 11473 cols#80, it#8, lines#24, vt#3, 11474 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 11475 bel=^G, blink=\E[5m$<2>, bold=\E[1m$<2>, 11476 clear=\E[H\E[J$<50>, cr=^M, csr=\E[%i%p1%d;%p2%dr, 11477 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=^J, 11478 cuf=\E[%p1%dC, cuf1=\E[C$<2>, 11479 cup=\E[%i%p1%d;%p2%dH$<5>, cuu=\E[%p1%dA, 11480 cuu1=\E[A$<2>, dch1=\E~W, dl1=\E~R, ed=\E[J$<50>, 11481 el=\E[K$<3>, el1=\E[1K$<3>, enacs=\E(B\E)0, home=\E[H, 11482 ht=^I, hts=\EH, ich1=\E~Q, il1=\E~E, ind=^J, is1=\E~)\E~ea, 11483 ka1=\EOq, ka3=\EOs, kb2=\EOr, kbs=^H, kc1=\EOp, kc3=\EOn, 11484 kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kent=\EOM, 11485 kf0=\EOy, kf1=\EOP, kf10=\EOx, kf2=\EOQ, kf3=\EOR, kf4=\EOS, 11486 kf5=\EOt, kf6=\EOu, kf7=\EOv, kf8=\EOl, kf9=\EOw, rc=\E8, 11487 rev=\E[7m$<2>, ri=\EM$<5>, rmacs=^O, rmam=\E[?7l, 11488 rmkx=\E[?1l\E>, rmso=\E[m$<2>, rmul=\E[m$<2>, 11489 rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sc=\E7, 11490 sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;, 11491 sgr0=\E[m\017$<2>, smacs=^N, smam=\E[?7h, smkx=\E[?1h\E=, 11492 smso=\E[1;7m$<2>, smul=\E[4m$<2>, tbc=\E[3g, 11493ts100-ctxt|falco ts-100 saving context, 11494 rmcup=\E~_b, smcup=\E~_d\E[2J, use=ts100, 11495 11496#### Florida Computer Graphics 11497# 11498 11499# Florida Computer Graphics Beacon System, using terminal emulator program 11500# "host.com", as provided by FCG. This description is for an early release 11501# of the "host" program. Known bug: <ed> clears the whole screen, so it's 11502# commented out. 11503 11504# From: David Bryant <cbosg!djb> 1/7/83 11505beacon|FCG Beacon System, 11506 am, da, db, 11507 cols#80, lines#32, 11508 bel=\ESTART\r\E37\r\EEND\r$<1>, 11509 blink=\ESTART\r\E61\,1\r\EEND\r, clear=\EZ$<10>, cr=^M, 11510 cub1=^H, cud1=^J, cuf1=\EV, 11511 cup=\E=%p1%{32}%+%c%p2%{32}%+%c$<20>, cuu1=\EU, 11512 dch1=\EW, dl1=\ER, el=\ET, home=\EH$<10>, ich1=\EQ, il1=\EE, 11513 ind=^J, rev=\ESTART\r\E59\,1\r\EEND\r, rmcup=, 11514 rmso=\ESTART\r\E70\,0\r\EEND\r$<20>, 11515 rmul=\ESTART\r\E60\,0\r\EEND\r, 11516 sgr0=\ESTART\r\E78\r\E70\,0\r\EEND\r$<20>, 11517 smcup=\ESTART\r\E2\,0\r\E12\r\EEND\r$<10>, 11518 smso=\ESTART\r\E70\,6\r\EEND\r$<20>, 11519 smul=\ESTART\r\E60\,1\r\EEND\r, 11520 11521#### Fluke 11522# 11523 11524# The f1720a differences from ANSI: no auto margin, destructive 11525# tabs, # of lines, funny highlighting and underlining 11526f1720|f1720a|fluke 1720A, 11527 xt, 11528 cols#80, lines#16, xmc#1, 11529 bel=^G, clear=\E[H\E[2J, cr=^M, cub1=^H, cud1=\E[B, 11530 cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, ed=\E[J, 11531 el=\E[K, ind=\ED, is2=\E[H\E[2J, kcub1=^_, kcud1=^], 11532 kcuf1=^^, kcuu1=^\, ri=\EM, rmso=\E[m, rmul=\E[m, sgr0=\E[m, 11533 smso=\E[7m, smul=\E[4m, 11534 11535#### Liberty Electronics (Freedom) 11536# 11537# Liberty Electronics 11538# 48089 Fremont Blvd 11539# Fremont CA 94538 11540# Vox: (510)-623-6000 11541# Fax: (510)-623-7021 11542 11543# From: <faletti@berkeley.edu> 11544# (f100: added empty <acsc> to suppress a tic warning; 11545# made this relative to adm+sgr -- note that <invis> isn't 11546# known to work for f100 but does on the f110. --esr) 11547f100|freedom|freedom100|freedom model 100, 11548 OTbs, am, bw, hs, mir, msgr, xon, 11549 cols#80, lines#24, 11550 acsc=, bel=^G, cbt=\EI, clear=^Z, cr=^M, cub1=^H, cud1=^J, 11551 cuf1=^L, cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, 11552 dch1=\EW, dl1=\ER$<11.5*>, dsl=\Eg\Ef\r, ed=\EY, el=\ET, 11553 flash=\Eb$<200>\Ed, fsl=^M, home=^^, hpa=\E]%p1%{32}%+%c, 11554 ht=^I, hts=\E1, il1=\EE$<8.5*>, ind=^J, ip=$<6>, 11555 is2=\Eg\Ef\r\Ed, kbs=^H, kcbt=\EI, kcub1=^H, kcud1=^V, 11556 kcuf1=^L, kcuu1=^K, kf1=^A@\r, kf10=^AI\r, kf2=^AA\r, 11557 kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, 11558 kf8=^AG\r, kf9=^AH\r, khome=^^, ri=\Ej, rmacs=\E$, rmir=\Er, 11559 smacs=\E%%, smir=\Eq, tbc=\E3, tsl=\Eg\Ef, 11560 vpa=\E[%p1%{32}%+%c, use=adm+sgr, 11561f100-rv|freedom-rv|freedom 100 in reverse video, 11562 flash=\Ed$<200>\Eb, is2=\Eg\Ef\r\Eb, use=f100, 11563# The f110 and f200 have problems with vi(1). They use the ^V 11564# code for the down cursor key. When kcud1 is defined in terminfo 11565# as ^V, the Control Character Quoting capability (^V in insert mode) 11566# is lost! It cannot be remapped in vi because it is necessary to enter 11567# a ^V to to quote the ^V that is being remapped!!! 11568# 11569# f110/f200 users will have to decide whether 11570# to lose the down cursor key or the quoting capability. We will opt 11571# initially for leaving the quoting capability out, since use of VI 11572# is not generally applicable to most interactive applications 11573# (f110: added <ht>, <khome> & <kcbt> from f100 -- esr) 11574f110|freedom110|Liberty Freedom 110, 11575 bw@, eslok, 11576 it#8, wsl#80, 11577 blink=\EG2, bold=\EG0, civis=\E.1, cnorm=\E.2, cud1=^V, 11578 cvvis=\E.2, dim=\EG@, dl1=\ER, dsl=\Ef\r, 11579 flash=\Eb$<200/>\Ed, il1=\EE, ip@, is2@, kclr=^^, kdch1=\EW, 11580 kdl1=\ER, ked=\EY, kel=\ET, kf0=^AI\r, kf10@, kich1=\EQ, 11581 kil1=\EE, mc4=\Ea, mc5=\E`, ri=\EJ, rmacs=\E%%, rmir=\Er\EO, 11582 smacs=\E$, smir=\EO\Eq, smso=\EG<, tsl=\Ef, use=f100, 11583f110-14|Liberty Freedom 110 14inch, 11584 dch1@, use=f110, 11585f110-w|Liberty Freedom 110 - 132 cols, 11586 cols#132, use=f110, 11587f110-14w|Liberty Freedom 110 14in/132 cols, 11588 cols#132, 11589 dch1@, use=f110, 11590# (f200: added <acsc> to suppress tic warnings re <smacs>/<rmacs> --esr) 11591f200|freedom200|Liberty Freedom 200, 11592 OTbs, am, eslok, hs, mir, msgr, xon, 11593 cols#80, it#8, lines#24, wsl#80, 11594 acsc=, bel=^G, blink=\EG2, bold=\EG0, cbt=\EI, civis=\E.0, 11595 clear=^Z, cnorm=\E.1, cr=^M, 11596 csr=\Em0%p1%{32}%+%c%p2%{32}%+%c, cub1=^H, cud1=^V, 11597 cuf1=^L, cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, 11598 cvvis=\E.1, dch1=\EW, dim=\EG@, dl1=\ER, dsl=\Ef\r, ed=\EY, 11599 el=\ET, flash=\Eo$<200/>\En, fsl=^M, home=^^, 11600 hpa=\E]%p1%{32}%+%c, hts=\E1, il1=\EE, ind=^J, kbs=^H, 11601 kclr=^^, kcub1=^H, kcud1=^V, kcuf1=^L, kcuu1=^K, kdch1=\EW, 11602 kdl1=\ER, ked=\EY, kel=\ET, kf0=^AI\r, kf1=^A@\r, kf2=^AA\r, 11603 kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, 11604 kf8=^AG\r, kf9=^AH\r, kich1=\EQ, kil1=\EE, mc4=\Ea, mc5=\E`, 11605 ri=\EJ, rmacs=\E%%, rmir=\Er, smacs=\E$, smir=\Eq, smso=\EG<, 11606 tbc=\E3, tsl=\Ef, vpa=\E[%p1%{32}%+%c, use=adm+sgr, 11607f200-w|Liberty Freedom 200 - 132 cols, 11608 cols#132, use=f200, 11609# The f200 has the ability to reprogram the down cursor key. The key is 11610# reprogrammed to ^J (linefeed). This value is remembered in non-volatile RAM, 11611# so powering the terminal off and on will not cause the change to be lost. 11612f200vi|Liberty Freedom 200 for vi, 11613 flash=\Eb$<200/>\Ed, kcud1=^J, use=f200, 11614f200vi-w|Liberty Freedom 200 - 132 cols for vi, 11615 cols#132, use=f200vi, 11616 11617#### GraphOn (go) 11618# 11619# Graphon Corporation 11620# 544 Division Street 11621# Campbell, CA 95008 11622# Vox: (408)-370-4080 11623# Fax: (408)-370-5047 11624# Net: troy@graphon.com (Troy Morrison) 11625# 11626# 11627# The go140 and go225 have been discontinued. GraphOn now makes X terminals, 11628# including one odd hybrid that starts out life on power-up as a character 11629# terminal, than can be switched to X graphics mode (driven over the serial 11630# line) by an escape sequence. No info on this beast yet. 11631# (go140: I added <rmam>/<smam> based on the init string -- esr) 11632go140|graphon go-140, 11633 OTbs, 11634 cols#80, it#8, lines#24, 11635 clear=\E[H\E[2J$<10/>, cub1=^H, cuf1=\E[C, 11636 cup=\E[%i%p1%2d;%p2%2dH, cuu1=\E[A, dch1=\E[P, dl1=\E[M, 11637 ed=\E[J$<10/>, el=\E[K, ht=^I, 11638 if=/usr/share/tabset/vt100, il1=\E[L, 11639 is2=\E<\E=\E[?3l\E[?7l\E(B\E[J\E7\E[;r\E8\E[m\E[q, 11640 kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kf1=\EOP, 11641 kf2=\EOQ, kf3=\EOR, kf4=\EOS, khome=\E[H, ri=\EM, 11642 rmam=\E[?7l, rmir=\E[4l, rmkx=\E[?1l\E>, rmso=\E[m, 11643 rmul=\E[m, sgr0=\E[m, smam=\E[?7h, smir=\E[4h, 11644 smkx=\E[?1h\E=, smso=\E[7m, smul=\E[4m, 11645go140w|graphon go-140 in 132 column mode, 11646 am, 11647 cols#132, 11648 is2=\E<\E=\E[?3h\E[?7h\E(B\E[J\E7\E[;r\E8\E[m\E[q, 11649 use=go140, 11650# Hacked up vt200 termcap to handle GO-225/VT220 11651# From: <edm@nwnexus.WA.COM> 11652# (go225: I added <rmam>/<smam> based on the init string -- esr) 11653go225|go-225|Graphon 225, 11654 OTbs, am, mir, xenl, 11655 cols#80, it#8, lines#25, vt#3, 11656 blink=\E[5m, bold=\E[1m, clear=\E[H\E[J, 11657 csr=\E[%i%p1%d;%p2%dr, cub1=^H, cud1=^J, cuf1=\E[C, 11658 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, dch1=\E[P, dl1=\E[M, 11659 ed=\E[J, el=\E[K, home=\E[H, ht=^I, il1=\E[L, ind=\ED, 11660 is2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, kbs=^H, 11661 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kf1=\EOP, 11662 kf2=\EOQ, kf3=\EOR, kf4=\EOS, khome=\E[H, rc=\E8, rev=\E[7m, 11663 rf=/usr/share/tabset/vt100, ri=\EM, rmam=\E[?7l, 11664 rmcup=\E[!p\E[?7h\E[2;1;1#w, rmir=\E[4l, rmkx=\E>, 11665 rmso=\E[27m, rmul=\E[24m, rs1=\E[!p\E[?7h\E[2;1;1#w, 11666 sc=\E7, sgr0=\E[m, smam=\E[?7h, smcup=\E[2;0#w\E[1;25r, 11667 smir=\E[4h, smkx=\E=, smso=\E[7m, smul=\E[4m, 11668 11669#### Harris (Beehive) 11670# 11671# Bletch. These guys shared the Terminal Brain Damage laurels with Hazeltine. 11672# Their terminal group is ancient history now (1995) though the parent 11673# company is still in business. 11674# 11675 11676# Beehive documentation is undated and marked Preliminary and has no figures 11677# so we must have early Superbee2 (Model 600, according to phone conversation 11678# with mfr.). It has proved reliable except for some missing padding 11679# (notably after \EK and <nl> at bottom of screen). 11680# 11681# The key idea is that AEP mode is poison for <cup> & that US's in 11682# the local memory should be avoided like the plague. That means 11683# that the 2048 character local buffer is used as 25 lines of 80 11684# characters, period. No scrolling local memory, folks. It also 11685# appears that we cannot use naked INS LINE feature since it uses 11686# US. The sbi fakes <il1> with an 80-space insert that may be too 11687# slow at low speeds; also spaces get converted to \040 which is 11688# too long for some programs (not vi). DEL LINE is ok but slow. 11689# 11690# The <nl> string is designed for last line of screen ONLY; cup to 11691# 25th line corrects the motion inherent in scrolling to Page 1. 11692# 11693# There is one understood bug. It is that the screen appears to 11694# pop to a new (blank) page after a <nel>, or leave a half-line 11695# ellipsis to a quad that is the extra 48 memory locations. The 11696# data received is dumped into memory but not displayed. Not to 11697# worry if <cup> is being used; the lines not displayed will be, 11698# whenever the cursor is moved up there. Since <cup> is addressed 11699# relative to MEMORY of window, nothing is lost; but beware of 11700# relative cursor motion (<cuu1>,<cud1>,<cuf1>,<cub1>). Recommended, 11701# therefore, is setenv MORE -c . 11702# 11703# WARNING: Not all features tested. 11704# 11705# Timings are assembled from 3 sources. Some timings may reflect 11706# SB2/Model 300 that were used if more conservative. 11707# Tested on a Model 600 at 1200 and 9600 bd. 11708# 11709# The BACKSPACEkb option is cute. The NEWLINE key, so cleverly 11710# placed on the keyboard and useless because of AEP, is made 11711# into a backspace key. In use ESC must be pressed twice (to send) 11712# and sending ^C must be prefixed by ESC to avoid that weird 11713# transmit mode associated with ENTER key. 11714# 11715# IF TERMINAL EVER GOES CATATONIC with the cursor buzzing across 11716# the screen, then it has dropped into ENTER mode; hit 11717# RESET--ONLINE--!tset. 11718# 11719# As delivered this machine has a FATAL feature that will throw 11720# it into that strange transmit state (SPOW) if the space bar is 11721# hit after a CR is received, but before receiving a LF (or a 11722# few others). 11723# 11724# The circuits MUST be modified to eliminate the SPOW latch. 11725# This is done by strapping on chip A46 of the I/O board; cut 11726# the p.c. connection to Pin 5 and strap Pin 5 to Pin 8 of that 11727# chip. This mod has been checked out on a Mod 600 of Superbee II. 11728# With this modification absurdly high timings on cr are 11729# unnecessary. 11730# 11731# NOTE WELL that the rear panel switch should be set to CR/LF, 11732# not AEP! 11733# 11734sb1|beehive superbee, 11735 OTbs, am, bw, da, db, mir, ul, xsb, 11736 cols#80, lines#25, xmc#1, 11737 bel=^G, cbt=\E`$<650>, clear=\EH$<1>\EJ$<3>, cr=$<1>\r, 11738 cub1=^H, cud1=^J, cuf1=\EC$<3>, cup=\EF%p2%03d%p1%03d, 11739 cuu1=\EA$<3>, dch1=\EP$<3>, dl1=\EM$<100>, ed=\EJ$<3>, 11740 el=\EK$<3>, home=\EH$<1>, ht=^I, hts=\E1, 11741 il1=\EN\EL$<3>\EQ \EP$<3> \EO\ER\EA$<3>, 11742 ind=^J, is2=\EE$<3>\EX\EZ\EO\Eb\Eg\ER, kbs=^_, kcub1=\ED, 11743 kcud1=\EB, kcuf1=\EC, kcuu1=\EA, kdl1=\EM, ked=\EJ, kel=\EK, 11744 kf0=\E2, kf1=\Ep, kf2=\Eq, kf3=\Er, kf4=\Es, kf5=\Et, kf6=\Eu, 11745 kf7=\Ev, kf8=\Ew, kf9=\E1, khome=\EH, kich1=\EQ\EO, 11746 krmir=\ER, lf0=TAB CLEAR, lf9=TAB SET, rmcup=, rmir=\ER, 11747 rmso=\E_3, rmul=\E_3, sgr0=\E_3, smcup=\EO, smir=\EQ\EO, 11748 smso=\E_1, smul=\E_0, tbc=\E3, 11749sbi|superbee|beehive superbee at Indiana U., 11750 xsb, 11751 cr=\r$<1>, il1=1\EN\EL$<9>\EQ \EP$<9> \EO\ER\EA, 11752 use=sb1, 11753# Alternate (older) description of Superbee - f1=escape, f2=^C. 11754# Note: there are at least 3 kinds of superbees in the world. The sb1 11755# holds onto escapes and botches ^C's. The sb2 is the best of the 3. 11756# The sb3 puts garbage on the bottom of the screen when you scroll with 11757# the switch in the back set to CRLF instead of AEP. This description 11758# is tested on the sb2 but should work on all with either switch setting. 11759# The f1/f2 business is for the sb1 and the <xsb> can be taken out for 11760# the other two if you want to try to hit that tiny escape key. 11761# This description is tricky: being able to use cup depends on there being 11762# 2048 bytes of memory and the hairy <nl> string. 11763superbee-xsb|beehive super bee, 11764 am, da, db, xsb, 11765 cols#80, it#8, lines#25, 11766 clear=\EH\EJ$<3>, cnorm=^J, cr=\r$<1000>, cub1=^H, cud1=^J, 11767 cuf1=\EC, cup=\EF%p2%3d%p1%3d, cuu1=\EA$<3>, 11768 dch1=\EP$<3>, dl1=\EM$<100>, ed=\EJ$<3>, el=\EK$<3>, 11769 home=\EH, ht=^I, hts=\E1, 11770 ind=\n\0\0\0\n\0\0\0\EA\EK\0\0\0\ET\ET, is2=\EH\EJ, 11771 kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, kf1=\Ep, kf2=\Eq, 11772 kf3=\Er, kf4=\Es, kf5=\Et, kf6=\Eu, kf7=\Ev, kf8=\Ew, 11773 khome=\EH, rmso=\E_3, sgr0=\E_3, smso=\E_1, tbc=\E3, 11774# This loses on lines > 80 chars long, use at your own risk 11775superbeeic|super bee with insert char, 11776 ich1=, rmir=\ER, smir=\EQ, use=superbee-xsb, 11777sb2|sb3|fixed superbee, 11778 xsb@, use=superbee, 11779 11780#### Beehive Medical Electronics 11781# 11782# Steve Seymour <srseymour@mindspring.com> writes (Wed, 03 Feb 1999): 11783# Regarding your question though; Beehive terminals weren't made by Harris. 11784# They were made by Beehive Medical Electronics in Utah. They went out of 11785# business in the early '80s. 11786# 11787# (OK, then, I don't know why a couple of these say "harris beehive".) 11788# 11789 11790# Reports are that most of these Beehive entries (except superbee) have not 11791# been tested and do not work right. <rmso> is a trouble spot. Be warned. 11792 11793# (bee: <ich1> was empty, which is obviously bogus -- esr) 11794beehive|bee|harris beehive, 11795 OTbs, am, mir, 11796 cols#80, lines#24, 11797 cbt=\E>, clear=\EE, cub1=^H, cud1=\EB, cuf1=\EC, 11798 cup=\EF%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, dch1=\EP, 11799 dl1=\EM, ed=\EJ, el=\EK, home=\EH, il1=\EL, kbs=^H, kcbt=\E>, 11800 kclr=\EE, kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, 11801 kdch1=\EP, kdl1=\EM, kel=\EK, khome=\EH, kich1=\EQ, kil1=\EL, 11802 krmir=\E@, rmir=\E@, rmso=\Ed@, rmul=\Ed@, sgr0=\Ed@, 11803 smir=\EQ, smso=\EdP, smul=\Ed`, 11804# set tab is ^F, clear (one) tab is ^V, no way to clear all tabs. 11805# good grief - does this entry make :sg:/:ug: when it doesn't have to? 11806# look at those spaces in <rmso>/<smso>. Seems strange to me... 11807# (beehive: <if=/usr/share/tabset/beehive> removed, no such file. If you 11808# really care, cook up one using ^F -- esr) 11809beehive3|bh3m|beehiveIIIm|harris beehive 3m, 11810 OTbs, am, 11811 cols#80, it#8, lines#20, 11812 bel=^G, clear=^E^R, cr=^M, cub1=^H, cud1=^J, cuf1=^L, cuu1=^K, 11813 dl1=\021$<350>, ed=^R, el=^P, home=^E, ht=^I, hts=^F, 11814 il1=\023$<160>, ind=^J, ll=^E^K, rmso=\s^_, smso=^]\s, 11815beehive4|bh4|beehive 4, 11816 am, 11817 cols#80, lines#24, 11818 bel=^G, clear=\EE, cr=^M, cub1=\ED, cud1=^J, cuf1=\EC, 11819 cuu1=\EA, ed=\EJ, el=\EK, home=\EH, ind=^J, 11820# There was an early Australian kit-built computer called a "Microbee". 11821# It's not clear whether this is for one of those or for a relative 11822# of the Beehive. 11823microb|microbee|micro bee series, 11824 OTbs, am, 11825 cols#80, it#8, lines#24, 11826 bel=^G, clear=\EE, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 11827 cup=\EF%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, ed=\EJ, 11828 el=\EK, ht=^I, ind=^J, kcub1=\ED, kcud1=\EB, kcuf1=\EC, 11829 kcuu1=\EA, kf1=\Ep, kf2=\Eq, kf3=\Er, kf4=\Es, kf5=\Et, 11830 kf6=\Eu, kf7=\Ev, kf8=\Ew, kf9=\Ex, khome=\EH, rmso=\Ed@, 11831 rmul=\Ed@, sgr0=\Ed@, smso=\s\EdP, smul=\Ed`, 11832 11833# 8675, 8686, and bee from Cyrus Rahman 11834# (8675: changed k10, k11...k16 to k;, F1...F6 -- esr) 11835ha8675|harris 8675, 11836 is2=\ES\E#\E*\Eh\Em\E?\E1\E9\E@\EX\EU, kf1=^F, 11837 kf10=\Ed, kf11=^W, kf12=\ER, kf13=\EE, kf14=\EI, kf15=\Ei, 11838 kf16=\Eg, kf2=^P, kf3=^N, kf4=^V, kf5=^J, kf6=^T, kf7=^H, 11839 kf8=\177, kf9=\Ee, use=bee, 11840# (8686: changed k10, k11...k16 to k;, F1...F6; fixed broken continuation 11841# in :is: -- esr) 11842ha8686|harris 8686, 11843 is2=\ES\E#\E*\Eh\Em\E?\E1\E9\E@\EX\EU\E"*Z01\E"8F35021B7C83#\E"8F45021B7D83#\E"8F55021B7E83#\E"8F65021B7F83#\E"8F75021B7383#\E"8F851BD7#\E"8F95021B7083#\E"8FA5021B7183#\E"8FB5021B7283#, 11844 kf1=\002\Ep\003, kf10=\Ej, kf11=\EW, kf12=\002\E{\003, 11845 kf13=\002\E|\003, kf14=\002\E}\003, kf15=\002\E~\003, 11846 kf16=\002\E\177\003, kf2=\002\Eq\003, kf3=\002\Er\003, 11847 kf4=\002\Es\003, kf5=\E3, kf6=\EI, kf7=\ER, kf8=\EJ, kf9=\E(, 11848 use=bee, 11849 11850#### Hazeltine 11851# 11852# Hazeltine appears to be out of the terminal business as of 1995. These 11853# guys were co-owners of the Terminal Brain Damage Hall Of Fame along with 11854# Harris. They have a hazeltine.com domain (but no web page there ) and can 11855# be reached at: 11856# 11857# Hazeltine 11858# 450 East Pulaski Road 11859# Greenlawn, New York 11740 11860# 11861# As late as 1993, manuals for the terminal product line could still be 11862# purchased from: 11863# 11864# TRW Customer Service Division 11865# 15 Law Drive 11866# P.O. Box 2076 11867# Fairfield, NJ 07007-2078 11868# 11869# They're now (1998) a subsidiary of General Electric, operating under the 11870# marque "GEC-Marconi Hazeltine" and doing military avionics. Web page 11871# at <http://www.gec.com/cpd/1ncpd.htm#1.55>. 11872# 11873 11874# Since <cuf1> is blank, when you want to erase something you 11875# are out of luck. You will have to do ^L's a lot to 11876# redraw the screen. h1000 is untested. It doesn't work in 11877# vi - this terminal is too dumb for even vi. (The code is 11878# there but it isn't debugged for this case.) 11879hz1000|hazeltine 1000, 11880 OTbs, 11881 cols#80, lines#12, 11882 bel=^G, clear=^L, cr=^M, cub1=^H, cud1=^J, cuf1=\s, home=^K, 11883 ind=^J, 11884# From: <cbosg!ucbvax!pur-ee!cincy!chris> Thu Aug 20 09:09:18 1981 11885hz1420|hazeltine 1420, 11886 OTbs, am, 11887 cols#80, lines#24, 11888 bel=^G, clear=\E^\, cr=^M, cub1=^H, cud1=^J, cuf1=^P, 11889 cup=\E\021%p2%c%p1%{32}%+%c, cuu1=\E^L, dl1=\E^S, 11890 ed=\E^X, el=\E^O, ht=^N, il1=\E^Z, ind=^J, rmso=\E^Y, 11891 smso=\E^_, 11892# New "safe" cursor movement (11/87) from <cgs@umd5.umd.edu>. Prevents 11893# freakout with out-of-range args and tn3270. No hz since it needs to 11894# receive tildes. 11895hz1500|hazeltine 1500, 11896 OTbs, am, hz, 11897 cols#80, lines#24, 11898 bel=^G, clear=~^\, cr=^M, cub1=^H, cud1=~^K, cuf1=^P, 11899 cup=~\021%p2%p2%?%{30}%>%t%{32}%+%;%{96}%+%c%p1%{96}%+%c, 11900 cuu1=~^L, dl1=~\023$<40>, ed=~\030$<10>, el=~^O, home=~^R, 11901 il1=~\032$<40>, ind=^J, kcub1=^H, kcud1=^J, kcuf1=^P, 11902 kcuu1=~^L, khome=~^R, rmso=~^Y, smso=~^_, 11903# h1510 assumed to be in sane escape mode. Else use h1500. 11904# (h1510: early versions of this entry apparently had "<rmso=\E^_>, 11905# <smso=\E^Y>, but these caps were commented out in 8.3; also, 11906# removed incorrect and overridden ":do=^J:" -- esr) 11907hz1510|hazeltine 1510, 11908 OTbs, am, 11909 cols#80, lines#24, 11910 bel=^G, clear=\E^\, cr=^M, cub1=^H, cud1=\E^K, cuf1=^P, 11911 cup=\E\021%p2%c%p1%c, cuu1=\E^L, dl1=\E^S, ed=\E^X, 11912 el=\E^O, il1=\E^Z, ind=^J, 11913# Hazeltine 1520 11914# The following switch settings are assumed for normal operation: 11915# FULL CR U/L_CASE ESCAPE 11916# FORMAT_OFF EOM_A_OFF EOM_B_OFF WRAPAROUND_ON 11917# Other switches may be set for operator convenience or communication 11918# requirements. 11919hz1520|Hazeltine 1520, 11920 OTbs, am, bw, msgr, 11921 cols#80, lines#24, 11922 bel=^G, bold=\E^_, clear=\E^\, cr=^M, cub1=^H, cud1=^J, 11923 cuf1=^P, cup=\E\021%p2%c%p1%c, cuu1=\E^L, dl1=\E^S, 11924 ed=\E^X, el=\E^O, home=\E^R, il1=\E^Z, ind=^J, kbs=^H, 11925 kclr=\E^\, kcub1=^H, kcud1=\E^K, kcuf1=^P, kcuu1=\E^L, 11926 kdl1=\E^S, ked=\E^X, kel=\E^O, khome=\E^R, kil1=\E^Z, 11927 rmso=\E^Y, rs1=\E$\E\005\E?\E\031, sgr0=\E^Y, smso=\E^_, 11928# This version works with the escape switch off 11929# (h1520: removed incorrect and overridden ":do=^J:" -- esr) 11930hz1520-noesc|hazeltine 1520, 11931 am, hz, 11932 cols#80, lines#24, 11933 bel=^G, clear=~^\, cr=^M, cub1=^H, cud1=~^K, cuf1=^P, 11934 cup=~\021%p2%c%p1%c$<1>, cuu1=~^L, dl1=~^S, ed=~^X, el=~^O, 11935 home=~^R, il1=~^Z, ind=^J, rmso=~^Y, smso=~^_, 11936# Note: the h1552 appears to be the first Hazeltine terminal which 11937# is not braindamaged. It has tildes and backprimes and everything! 11938# Be sure the auto lf/cr switch is set to cr. 11939hz1552|hazeltine 1552, 11940 OTbs, 11941 cud1=^J, dl1=\EO, il1=\EE, kf1=\EP, kf2=\EQ, kf3=\ER, lf1=blue, 11942 lf2=red, lf3=green, use=vt52, 11943hz1552-rv|hazeltine 1552 reverse video, 11944 cud1=^J, rmso=\ET, smso=\ES, use=hz1552, 11945# Note: h2000 won't work well because of a clash between upper case and ~'s. 11946hz2000|hazeltine 2000, 11947 OTbs, OTnc, am, 11948 cols#74, lines#27, 11949 bel=^G, clear=~\034$<6>, cub1=^H, cud1=^J, 11950 cup=~\021%p2%c%p1%c, dl1=~\023$<6>, home=~^R, 11951 il1=~\032$<6>, ind=^J, pad=\177, 11952# Date: Fri Jul 23 10:27:53 1982. Some unknown person wrote: 11953# I tested this termcap entry for the Hazeltine Esprit with vi. It seems 11954# to work ok. There is one problem though if one types a lot of garbage 11955# characters very fast vi seems not able to keep up and hangs while trying 11956# to insert. That's in insert mode while trying to insert in the middle of 11957# a line. It might be because the Esprit doesn't have insert char and delete 11958# char as a built in function. Vi has to delete to end of line and then 11959# redraw the rest of the line. 11960esprit|Hazeltine Esprit I, 11961 OTbs, am, bw, 11962 cols#80, lines#24, 11963 bel=^G, cbt=\E^T, clear=\E^\, cr=^M, cub1=^H, cud1=\E^K, 11964 cuf1=^P, cup=\E\021%p2%c%p1%c, cuu1=\E^L, dl1=\E^S, 11965 ed=\E^W, el=\E^O, home=\E^R, il1=\E^Z, ind=^J, is2=\E?, kbs=^H, 11966 kcub1=^H, kcud1=\E^K, kcuf1=^P, kcuu1=\E^L, kf0=^B0^J, 11967 kf1=^B1^J, kf2=^B2^J, kf3=^B3^J, kf4=^B4^J, kf5=^B5^J, 11968 kf6=^B6^J, kf7=^B7^J, kf8=^B8^J, kf9=^B9^J, khome=\E^R, 11969 lf0=0, lf1=1, lf2=2, lf3=3, lf4=4, lf5=5, lf6=6, lf7=7, lf8=8, lf9=9, 11970 rmkx=\E>, rmso=\E^Y, smkx=\E<, smso=\E^_, 11971esprit-am|hazeltine esprit auto-margin, 11972 am, use=esprit, 11973# Hazeltine Modular-1 from Cliff Shackelton <ittvax!ittral!shackelt> via BRL 11974# Vi it seems always wants to send a control J for "do" and it turned out 11975# that the terminal would work somewhat if the auto LF/CR was turned off. 11976# (hmod1: removed :dn=~^K: -- esr) 11977hmod1|Hazeltine Modular 1, 11978 OTbs, am, hz, 11979 cols#80, lines#24, 11980 bel=^G, cbt=~^T, clear=~^\, cr=^M, cub1=^H, cud1=~^K, cuf1=^P, 11981 cup=~\021%p2%c%p1%c, cuu1=~^L, dl1=~^S, home=~^R, il1=~^Z, 11982 ind=^J, kcub1=^H, kcud1=~^K, kcuf1=^P, kcuu1=~^L, khome=~^R, 11983 rc=~^Q, rmso=~^Y, sc=~^E, sgr0=~^Y, smso=~^_, 11984# 11985# Hazeltine Executive 80 Model 30 (1554?) 11986# from Will Martin <control@ALMSA-1.ARPA> via BRL 11987# Like VT100, except for different "am" behavior. 11988hazel|exec80|h80|he80|Hazeltine Executive 80, 11989 OTbs, OTpt, am, 11990 cols#80, it#8, lines#24, vt#3, 11991 OTnl=^J, bel=^G, blink=\E[5m$<2/>, bold=\E[1m$<2/>, 11992 clear=\E[;H\E[2J$<50/>, cr=^M, csr=\E[%i%p1%d;%p2%dr, 11993 cub1=^H, cud1=^J, cuf1=\E[C$<2/>, 11994 cup=\E[%i%p1%d;%p2%dH$<5/>, cuu1=\E[A$<2/>, 11995 ed=\E[J$<50/>, el=\E[K$<3/>, home=\E[H, ht=^I, 11996 is2=\E[1;24r\E[24;1H, kbs=^H, kcub1=\EOD, kcud1=\EOB, 11997 kcuf1=\EOC, kcuu1=\EOA, kf1=\EOP, kf2=\EOQ, kf3=\EOR, 11998 kf4=\EOS, rc=\E8, rev=\E[7m$<2/>, 11999 rf=/usr/share/tabset/vt100, ri=\EM$<5/>, 12000 rmkx=\E[?1l\E>, rmso=\E[m$<2/>, rmul=\E[m$<2/>, 12001 rs1=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sc=\E7, 12002 sgr0=\E[m$<2/>, smkx=\E[?1h\E=, smso=\E[7m$<2/>, 12003 smul=\E[4m$<2/>, 12004 12005#### IBM 12006# 12007 12008ibm327x|line mode IBM 3270 style, 12009 gn, 12010 clear=^M^J, el=^M, home=^M, 12011 12012ibm3101|i3101|IBM 3101-10, 12013 OTbs, am, xon, 12014 cols#80, lines#24, 12015 bel=^G, clear=\EK, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 12016 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, ed=\EJ, 12017 el=\EI, home=\EH, hts=\E0, ind=^J, kcub1=\ED, kcud1=\EB, 12018 kcuf1=\EC, kcuu1=\EA, nel=^M^J, tbc=\EH, 12019ibm3151|IBM 3151 display, 12020 is2=\E S, rmacs=\E>B, rmcup=\E>B, rs2=\E S, s0ds=\E>B, 12021 sgr=\E4%{64}%?%p1%t%{65}%|%;%?%p2%t%{66}%|%;%?%p3%t%{65}%|%;%?%p4%t%{68}%|%;%?%p5%t%{64}%|%;%?%p6%t%{72}%|%;%?%p7%t%{80}%|%;%c%?%p9%t\E>A%e\E>B%;, 12022 sgr0=\E4@\E>B, smacs=\E>A, smcup=\E>B, use=ibm3162, 12023# From: Mark Easter <marke@fsi-ssd.csg.ssd.fsi.com> 29 Oct 1992 12024# removed kend, knp, kpp -TD 12025ibm3161|ibm3163|wy60-316X|wyse60-316X|IBM 3161/3163 display, 12026 OTbs, am, mir, msgr, 12027 cols#80, it#8, lines#24, 12028 acsc=j\352k\353l\354m\355n\356q\361t\364u\365v\366w\367x\370, 12029 bel=^G, blink=\E4D, bold=\E4H, clear=\EH\EJ, cr=^M, cub1=\ED, 12030 cud1=\EB, cuf1=\EC, cup=\EY%p1%{32}%+%c%p2%{32}%+%c, 12031 cuu1=\EA, dch1=\EQ, dl1=\EO, ed=\EJ, el=\EI, home=\EH, ind=^J, 12032 invis=\E4P, kbs=^H, kcbt=\E2, kclr=\EL\r, kctab=\E1, 12033 kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, kdch1=\EQ, 12034 kdl1=\EO, ked=\EJ, kel=\EI, kf1=\Ea\r, kf10=\Ej\r, 12035 kf11=\Ek\r, kf12=\El\r, kf13=\E!a\r, kf14=\E!b\r, 12036 kf15=\E!c\r, kf16=\E!d\r, kf17=\E!e\r, kf18=\E!f\r, 12037 kf19=\E!g\r, kf2=\Eb\r, kf20=\E!h\r, kf21=\E!i\r, 12038 kf22=\E!j\r, kf23=\E!k\r, kf24=\E!l\r, kf3=\Ec\r, 12039 kf4=\Ed\r, kf5=\Ee\r, kf6=\Ef\r, kf7=\Eg\r, kf8=\Eh\r, 12040 kf9=\Ei\r, khome=\EH, khts=\E0, kich1=\EP \010, kil1=\EN, 12041 ktbc=\E 1, mc4=^P^T, mc5=^P^R, rev=\E4A, rmcup=\E>A, 12042 rmso=\E4@, rmul=\E4@, 12043 sgr=\E4%{64}%?%p1%t%{65}%|%;%?%p2%t%{66}%|%;%?%p3%t%{65}%|%;%?%p4%t%{68}%|%;%?%p5%t%{64}%|%;%?%p6%t%{72}%|%;%?%p7%t%{80}%|%;%c%?%p9%t\E>A%e\E<@%;, 12044 sgr0=\E4@\E<@, smcup=\E>A, smso=\E4A, smul=\E4B, 12045 12046ibm3161-C|IBM 3161-C NLS terminal using cartridge, 12047 rmcup=\E>B, s0ds=\E>B, s1ds=\E>A, smcup=\E>B, use=ibm3161, 12048ibm3162|IBM 3162 display, 12049 blink=\E4$a, bold=\E4(a, il1=\EN, invis=\E40a, rev=\E4!a, 12050 rmso=\E4>b, rmul=\E4=b, sgr0=\E4@, smso=\E4!a, smul=\E4"a, 12051 use=ibm3161-C, 12052 12053# This really should not use setab/setaf, but it is clear that the 12054# original terminfo does not toggle red/blue colors as in setb/setf. 12055ibm3164|i3164|IBM 3164, 12056 msgr, 12057 colors#8, pairs#64, 12058 op=\E4 "@, rmcup=\E!9(N\E>B, s0ds=\E>B, s1ds=\E>A, 12059 setab=\E4 %p1%{64}%+%c, 12060 setaf=\E4%?%p1%t %p1%{32}%+%c%e!'%;@, 12061 smcup=\E!9/N\E>B, use=ibm3161, 12062 12063ibm5151|wy60-AT|wyse60-AT|IBM 5151 Monochrome display, 12064 am, bw, msgr, xon, 12065 cols#80, it#8, lines#25, 12066 acsc=j\331k\277l\332m\300n\305q\304t\303u\264v\301w\302x\263, 12067 bel=^G, blink=\E[5m, bold=\E[1m, clear=\E[H\E[J, cr=^M, 12068 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=^J, 12069 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 12070 cuu=\E[%p1%dA, cuu1=\E[A, dch1=\E[P, dl=\E[%p1%dM, 12071 dl1=\E[M, ech=\E[%p1%dX, ed=\E[J, el=\E[K, home=\E[H, 12072 hpa=\E[%i%p1%dG, il=\E[%p1%dL, il1=\E[L, ind=\E[S, 12073 indn=\E[%p1%dS, invis=\E[8m, is2=\Ec, kbs=^H, kcbt=\E[Z, 12074 kclr=\E[144q, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, 12075 kcuu1=\E[A, kdch1=\E[P, ked=\E[148q, kel=\E[142q, 12076 kend=\E[146q, kf1=\E[001q, kf10=\E[010q, kf11=\E[011q, 12077 kf12=\E[012q, kf13=\E[013q, kf14=\E[014q, kf15=\E[015q, 12078 kf16=\E[016q, kf17=\E[017q, kf18=\E[018q, kf19=\E[019q, 12079 kf2=\E[002q, kf20=\E[020q, kf21=\E[021q, kf22=\E[022q, 12080 kf23=\E[023q, kf24=\E[024q, kf25=\E[025q, kf26=\E[026q, 12081 kf27=\E[027q, kf28=\E[028q, kf29=\E[029q, kf3=\E[003q, 12082 kf30=\E[030q, kf31=\E[031q, kf32=\E[032q, kf33=\E[033q, 12083 kf34=\E[034q, kf35=\E[035q, kf36=\E[036q, kf4=\E[004q, 12084 kf5=\E[005q, kf6=\E[006q, kf7=\E[007q, kf8=\E[008q, 12085 kf9=\E[009q, khome=\E[H, kich1=\E[139q, kil1=\E[140q, 12086 kind=\E[151q, knp=\E[154q, kpp=\E[150q, kri=\E[155q, 12087 krmir=\E[4l, rev=\E[7m, ri=\E[T, rin=\E[%p1%dT, rmir=\E[4l, 12088 rmso=\E[m, rmul=\E[m, rs2=\Ec, 12089 sgr=\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;%?%p7%t;8%;m, 12090 sgr0=\E[0m, smir=\E[4h, smso=\E[7m, smul=\E[4m, 12091 12092ibmaed|IBM Experimental display, 12093 OTbs, am, eo, msgr, 12094 cols#80, it#8, lines#52, 12095 clear=\EH\EK, cub1=^H, cud1=\EB, cuf1=\EC, 12096 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, dch1=\EQ, 12097 dl1=\EO, ed=\EJ, el=\EI, flash=\EG, home=\EH, ht=^I, ich1=\EP, 12098 il1=\EN, kbs=^H, kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, 12099 rmso=\E0, sgr0=\E0, smso=\E0, 12100ibm-apl|apl|IBM apl terminal simulator, 12101 lines#25, use=dm1520, 12102# (ibmmono: this had an unknown `sb' boolean, I changed it to `bs'. 12103# Also it had ":I0=f10:" which pretty obviously should be "l0=f10" -- esr) 12104ibmmono|IBM workstation monochrome, 12105 eslok, hs, 12106 bold=\EZ, dl1=\EM, dsl=\Ej\EY8 \EI\Ek, fsl=\Ek, il1=\EL, 12107 invis=\EF\Ef0;\Eb0;, kbs=^H, kf0=\E<, kf1=\ES, kf2=\ET, 12108 kf3=\EU, kf4=\EV, kf5=\EW, kf6=\EP, kf7=\EQ, kf8=\ER, kf9=\EY, 12109 khome=\EH, kich1=\0, kind=\EE, knp=\EE, kpp=\Eg, kri=\EG, 12110 lf0=f10, rev=\Ep, ri=\EA, rmso=\Ez, rmul=\Ew, 12111 sgr0=\Ew\Eq\Ez\EB, smso=\EZ, smul=\EW, tsl=\Ej\EY8%+ \Eo, 12112 use=ibm3101, 12113ibmega|IBM Enhanced Color Display, 12114 cr=^M, cud1=^J, ht=^I, ind=^J, kbs=^H, kcub1=^H, kcud1=^J, 12115 nel=^M^J, use=ibmmono, 12116# This color scheme is assumed in some recent IBM terminal descriptions 12117# (green on black, emulated on a 16-color terminal). 12118ibm+color|IBM color definitions, 12119 colors#8, ncv#3, pairs#64, 12120 op=\E[32m\E[40m, 12121 setb=\E[%?%p1%{0}%=%t40m%e%p1%{1}%=%t41m%e%p1%{2}%=%t42m%e%p1%{3}%=%t43m%e%p1%{4}%=%t44m%e%p1%{5}%=%t45m%e%p1%{6}%=%t46m%e%p1%{7}%=%t107m%;, 12122 setf=\E[%?%p1%{0}%=%t30m%e%p1%{1}%=%t31m%e%p1%{2}%=%t32m%e%p1%{3}%=%t33m%e%p1%{4}%=%t34m%e%p1%{5}%=%t35m%e%p1%{6}%=%t36m%e%p1%{7}%=%t97m%;, 12123ibm5154|IBM 5154 Color display, 12124 colors#8, ncv@, pairs#64, 12125 bold@, setab=\E[4%p1%dm, setaf=\E[3%p1%dm, use=ibm5151, 12126 use=ibm+color, 12127ibmega-c|ibm5154-c|IBM Enhanced Color Display with standout and underline, 12128 rmso=\EB, rmul=\EB, smso=\EF\Ef3;, smul=\EF\Ef2;, 12129 use=ibmmono, 12130ibmvga-c|IBM VGA display color termcap, 12131 cr=^M, cud1=^J, ht=^I, ind=^J, kbs=^H, kcub1=^H, kcud1=^J, 12132 nel=^M^J, use=ibmega-c, 12133ibmvga|IBM VGA display, 12134 cr=^M, cud1=^J, ht=^I, ind=^J, kbs=^H, kcub1=^H, kcud1=^J, 12135 nel=^M^J, use=ibmega, 12136# ibmapa* and ibmmono entries come from ACIS 4.3 distribution 12137rtpc|ibmapa16|IBM 6155 Extended Monochrome Graphics Display, 12138 lines#32, 12139 dsl=\Ej\EY@ \EI\Ek, tsl=\Ej\EY@%+ \Eo, use=ibmmono, 12140ibm6155|IBM 6155 Black & White display, 12141 blink@, bold@, use=ibm5151, 12142# Advanced Monochrome (6153) and Color (6154) Graphics Display: 12143ibmapa8c|ibmapa8|IBM 6154 Advanced Graphics Display, 12144 lines#31, 12145 dsl=\Ej\EY? \EI\Ek, tsl=\Ej\EY?%+ \Eo, use=ibmmono, 12146ibmapa8c-c|ibm6154-c|IBM 6154 Advanced Color Graphics Display, 12147 lines#31, 12148 dim=\EF\Ef7;, dsl=\Ej\EY? \EI\Ek, tsl=\Ej\EY?%+ \Eo, 12149 use=ibmega-c, 12150ibm6154|IBM 6154 Color displays, 12151 blink@, bold=\E[12m, s0ds=\E[10m, s1ds=\E[11m, s2ds=\E[12m, 12152 sgr=\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;12%;m, 12153 sgr0=\E[0;10m, use=ibm5154, 12154ibm6153|IBM 6153 Black & White display, 12155 blink@, bold=\E[12m, s0ds=\E[10m, s1ds=\E[11m, s2ds=\E[12m, 12156 sgr=\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;12%;m, 12157 sgr0=\E[0;10m, use=ibm5151, 12158ibm6153-90|IBM 6153 Black & White display, 12159 cols#90, lines#36, 12160 blink@, bold@, use=ibm5151, 12161ibm6153-40|IBM 6153 Black & White display, 12162 cols#40, lines#12, use=ibm6153-90, 12163ibm8512|ibm8513|IBM color VGA Terminal, 12164 am, mir, msgr, 12165 cols#80, it#8, lines#25, 12166 acsc=jjkkllmmnnqqttuuvvwwxx, blink=\E[5m, bold=\E[1m, 12167 clear=\E[H\E[J, cub1=\E[D, cud1=^J, cuf1=\E[C, 12168 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, dl=\E[%p1%dM, dl1=\E[M, 12169 ech=\E[%p1%dX, ed=\E[J, el=\E[K, home=\E[H, il=\E[%p1%dL, 12170 il1=\E[L, is2=\Eb\E[m\017\E[?7h, kcud1=\E[B, kcuu1=\E[A, 12171 kf0=\E[010q, kf1=\E[001q, kf2=\E[002q, kf3=\E[003q, 12172 kf4=\E[004q, kf5=\E[005q, kf6=\E[006q, kf7=\E[007q, 12173 kf8=\E[008q, kf9=\E[009q, khome=\E[H, rc=\E[u, rev=\E[7m, 12174 rmacs=^O, rmam=\E[?7l, rmcup=\E[20h, rmdc=\E[4l, 12175 rmir=\E[4l, rmso=\E[m, rmul=\E[m, 12176 rs1=\Eb\E[m\017\E[?7h\E[H\E[J, sc=\E[s, sgr0=\E[m, 12177 smacs=^N, smam=\E[?7h, smcup=\E[20;4l\E[?7h\Eb, 12178 smdc=\E[4h, smir=\E[4h, smso=\E[7m, smul=\E[4m, 12179 use=ibm8503, 12180hft-c|HFT with Color, 12181 colors#8, pairs#64, 12182 acsc=jjkkllmmnnqqttuuvvwwxx, s0ds=\E(B, s1ds=\E(0, 12183 setab=\E[4%p1%dm, setaf=\E[3%p1%dm, sgr0=\E[0m\E(B, 12184 use=ibm5151, use=ibm+color, 12185hft-c-old|HFT with Color PC850, 12186 colors#8, pairs#64, 12187 setab=\E[4%p1%dm, setaf=\E[3%p1%dm, use=ibm5151, 12188 use=ibm+color, 12189hft-old|AIWS High Function Terminal, 12190 am, xon, 12191 cols#80, lines#25, 12192 bel=^G, blink=\E[5m, bold=\E[1m, clear=\E[H\E[J, cr=^M, 12193 cub1=^H, cud1=^J, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 12194 cuu1=\E[A, dch1=\E[P, dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, 12195 ht=^I, ich1=\E[@, il1=\E[L, ind=^J, invis=\E[8m, kbs=^H, 12196 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 12197 kf1=\E[001q, kf2=\E[002q, kf3=\E[003q, kf4=\E[004q, 12198 kf5=\E[005q, kf6=\E[006q, kf7=\E[007q, kf8=\E[008q, 12199 kf9=\E[009q, khome=\E[H, knp=\E[153q, kpp=\E[159q, 12200 ktbc=\E[010q, rev=\E[7m, rmir=\E6, rmso=\E[m, rmul=\E[m, 12201 sgr0=\E[m, smir=\E6, smso=\E[7m, smul=\E[4m, use=ibm+color, 12202ibm-system1|system1|ibm system/1 computer, 12203 am, xt, 12204 cols#80, lines#24, 12205 bel=^G, clear=^Z, cub1=^H, cuf1=^\, 12206 cup=\005%p1%{32}%+%c%p2%{32}%+%c, cuu1=^^, home=^K, 12207 ind=^J, 12208# lft-pc850 : IBM Low Function Terminal Device 12209# lft "supports" underline, bold, and blink in the sense that the lft code 12210# sets all the right bits. HOWEVER, depending upon the adapter, these 12211# attributes may or may not be supported by the device driver. 12212lft|lft-pc850|LFT-PC850|IBM LFT PC850 Device, 12213 am, bw, msgr, xon, 12214 cols#80, it#8, lines#25, 12215 acsc=j\331k\277l\332m\300n\305q\304t\303u\264v\301w\302x\263, 12216 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, clear=\E[H\E[J, 12217 cr=^M, cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=^J, 12218 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 12219 cuu=\E[%p1%dA, cuu1=\E[A, dch=\E[%p1%dP, dch1=\E[P, 12220 dl=\E[%p1%dM, dl1=\E[M, ech=\E[%p1%dX, ed=\E[2J, el=\E[0K, 12221 home=\E[H, hpa=\E[%i%p1%dG, ich=\E[%p1%d@, il=\E[%p1%dL, 12222 il1=\E[L, ind=\ED, indn=\E[%p1%dS, invis=\E[8m, is2=\Ec, 12223 kbs=^H, kcbt=\E[Z, kclr=\E[144q, kcub1=\E[D, kcud1=\E[B, 12224 kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[P, ked=\E[148q, 12225 kel=\E[142q, kend=\E[146q, kf1=\E[001q, kf10=\E[010q, 12226 kf11=\E[011q, kf12=\E[012q, kf13=\E[013q, kf14=\E[014q, 12227 kf15=\E[015q, kf16=\E[016q, kf17=\E[017q, kf18=\E[018q, 12228 kf19=\E[019q, kf2=\E[002q, kf20=\E[020q, kf21=\E[021q, 12229 kf22=\E[022q, kf23=\E[023q, kf24=\E[024q, kf25=\E[025q, 12230 kf26=\E[026q, kf27=\E[027q, kf28=\E[028q, kf29=\E[029q, 12231 kf3=\E[003q, kf30=\E[030q, kf31=\E[031q, kf32=\E[032q, 12232 kf33=\E[033q, kf34=\E[034q, kf35=\E[035q, kf36=\E[036q, 12233 kf4=\E[004q, kf5=\E[005q, kf6=\E[006q, kf7=\E[007q, 12234 kf8=\E[008q, kf9=\E[009q, khome=\E[H, kich1=\E[139q, 12235 kil1=\E[140q, kind=\E[151q, knp=\E[154q, kpp=\E[150q, 12236 kri=\E[155q, krmir=\E[4l, rev=\E[7m, ri=\EL, rin=\E[%p1%dT, 12237 rmacs=\E(B, rmir=\E[4l, rmso=\E[0m, rmul=\E[0m, rs2=\Ec, 12238 sgr=\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;%?%p7%t;8%;m%?%p9%t\E(0%e\E(B%;, 12239 sgr0=\E[0m, smacs=\E(0, smir=\E[4h, smso=\E[7m, smul=\E[4m, 12240 tbc=\E[3g, 12241ibm5081|hft|IBM Megapel Color display, 12242 acsc=jjkkllmmnnqqttuuvvwwxx, blink@, bold@, s0ds=\E(B, 12243 s1ds=\E(0, sgr0=\E[0m\E(B, use=ibm5154, 12244ibm5081-c|ibmmpel-c|IBM 5081 1024x1024 256/4096 Megapel enhanced color display, 12245 eslok, hs, 12246 lines#33, 12247 dsl=\Ej\EYA \EI\Ek, fsl=\Ek, tsl=\Ej\EYA%+ \Eo, 12248 use=ibmega-c, 12249ibm8503|ibm8507|ibm8604|IBM 8503 B & W VGA display, 12250 use=hft-c, 12251ibm8514|IBM 8514/a color VGA display, 12252 eslok, hs, 12253 dsl=\Ej\EYI \EI\Ek, fsl=\Ek, tsl=\Ej\EYI%+ \Eo, use=hft, 12254ibm8514-c|IBM 8514 color display with standout and underline, 12255 eslok, hs, 12256 lines#41, 12257 cr=^M, cud1=^J, dsl=\Ej\EYI \EI\Ek, fsl=\Ek, ht=^I, ind=^J, 12258 kbs=^H, kcub1=^H, kcud1=^J, nel=^M^J, tsl=\Ej\EYI%+ \Eo, 12259 use=ibmega-c, 12260 12261# 12262# AIX entries. IBM ships these with AIX 3.2.5. 12263# -- added rc, sc based on manpage -TD 12264aixterm|IBM Aixterm Terminal Emulator, 12265 eslok, hs, 12266 acsc=jjkkllmmnnqqttuuvvwwxx, bold=\E[1m, dsl=\E[?E, 12267 fsl=\E[?F, rc=\E8, ri@, s0ds=\E(B, s1ds=\E(0, sc=\E7, 12268 sgr=\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;%?%p7%t;8%;m%?%p9%t\E(0%e\E(B%;, 12269 sgr0=\E[0;10m\E(B, tsl=\E[?%p1%dT, use=ibm6154, 12270aixterm-m|IBM AIXterm Monochrome Terminal Emulator, 12271 eslok, hs, 12272 acsc=jjkkllmmnnqqttuuvvwwxx, bold=\E[1m, dsl=\E[?E, 12273 fsl=\E[?F, ri@, s0ds=\E(B, s1ds=\E(0, 12274 sgr=\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;m, 12275 sgr0=\E[0;10m\E(B, tsl=\E[?%p1%dT, use=ibm6153, 12276aixterm-m-old|old IBM AIXterm Monochrome Terminal Emulator, 12277 eslok, hs, 12278 bold=\E[1m, dsl=\E[?E, fsl=\E[?F, ri@, 12279 sgr=\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;m, 12280 tsl=\E[?%p1%dT, use=ibm6153, 12281jaixterm|IBM Kanji Aixterm Terminal Eemulator, 12282 acsc@, use=aixterm, 12283jaixterm-m|IBM Kanji AIXterm Monochrome Terminal Emulator, 12284 acsc@, use=aixterm-m, 12285 12286#### Infoton/General Terminal Corp. 12287# 12288 12289# gt100 sounds like something DEC would come out with. Let's hope they don't. 12290i100|gt100|gt100a|General Terminal 100A (formerly Infoton 100), 12291 OTbs, am, 12292 cols#80, lines#24, 12293 bel=^G, clear=^L, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 12294 cup=\Ef%p2%{32}%+%c%p1%{32}%+%c, cuu1=\EA, dl1=\EM, 12295 ed=\EJ, el=\EK, flash=\Eb$<200/>\Ea, home=\EH, il1=\EL, 12296 ind=^J, rmso=\Ea, smso=\Eb, 12297i400|infoton 400, 12298 OTbs, am, 12299 cols#80, lines#25, 12300 bel=^G, clear=\E[2J, cr=^M, cub1=^H, cud1=^J, cuf1=\E[C, 12301 cup=%i\E[%p1%3d;%p2%3dH, cuu1=\E[A, 12302 dch1=\E[4h\E[2Q\E[P\E[4l\E[0Q, dl1=\E[M, el=\E[N, 12303 il1=\E[L, ind=^J, rmir=\E[4l\E[0Q, smir=\E[4h\E[2Q, 12304# (addrinfo: removed obsolete ":bc=^Z:" -- esr) 12305addrinfo, 12306 am, 12307 cols#80, lines#24, 12308 bel=^G, clear=^L, cr=^M, cub1=^Z, cud1=^J, cuf1=^Y, 12309 cup=\037%p1%{1}%-%c%p2%{1}%-%c, cuu1=^\, ed=^K, home=^H, 12310 ind=^J, ll=^H^\, 12311# (infoton: used to have the no-ops <lh#0>, <lw#0>, <nlab#0> -- esr) 12312infoton, 12313 am, 12314 cols#80, lines#24, 12315 bel=^G, clear=^L, cr=^M, cub1=^Z, cud1=^J, cuf1=^Y, cuu1=^\, 12316 ed=^K, ind=^J, ll=^H^\, 12317 12318# The ICL6402 was actually the Kokusai Display System 6402. 12319# The 6404 was the KDS7372 (color version of the 6402). 12320# 12321# ICL6404 control codes follow: 12322# 12323#code function 12324#~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 12325#ctrl-A set SOM position at cursor position 12326#ctrl-G Bell 12327#ctrl-H Backspace 12328#ctrl-I Horiz tab 12329#ctrl-J Linefeed 12330#ctrl-K Cursor up 12331#ctrl-L Cursor right 12332#ctrl-M Carriage return 12333#ctrl-N Disable xon/xoff to host 12334#ctrl-O Enable xon/xoff to host 12335#ctrl-R Enable bidirectional mode 12336#ctrl-T Disable bidirectional mode 12337#ctrl-V Cursor down 12338#ctrl-Z Clear unprotected data to insert char 12339#ctrl-^ Cursor home 12340#ctrl-_ Newline 12341# 12342#ESC lead-in char for multiple character command 12343# 12344#ESC space R execute power on sequence 12345#ESC ! p1 p2 define scroll region: 12346# p1 = scroll top line: 20h - 37h 12347# p1 = scroll bottom line: 20h - 37h 12348#ESC " unlock keyboard 12349#ESC # lock keyboard 12350#ESC $ Semi-graphics mode on 12351#ESC % Semi-graphics mode off 12352#ESC & protect mode on 12353#ESC ' protect mode off 12354#ESC ( write protect mode off (full intensity) 12355#ESC ) write protect mode on (half intensity) 12356# 12357#ESC * clear screen 12358#ESC + clear unprotected data to insert char 12359#ESC , clear unprotected data to half intensity spaces 12360#ESC - p1 p2 p3 p4 address cursor to page, row, column: 12361# p1 = page number 0 - 3 12362# p2 = row 20h - 7fh 12363# p3 = column (lo) 20h - 7fh 12364# p4 = column (hi) 20h - 21h (only 132 col) 12365#ESC . p1 set cursor style: 12366# p1 = 0 invisible cursor 12367# p1 = 1 block blinking cursor 12368# p1 = 2 block steady cursor 12369# p1 = 3 underline blinking cursor 12370# p1 = 4 underline steady cursor 12371#ESC / transmit cursor location (page, row, column) 12372#ESC 0 p1 p2 p3 p4 program edit key: 12373# p1 = edit key code: '@'-'S', '`'-'s' 12374# p2 p3 p4 = program data (3 bytes) 12375# 12376#ESC 1 set tab 12377#ESC 2 clear tab at cursor 12378#ESC 3 clear all tabs 12379#ESC 4 send unprotect line to cursor 12380#ESC 5 send unprotect page to cursor 12381#ESC 6 send line to cursor 12382#ESC 7 send page to cursor 12383#ESC 8 n set scroll mode: 12384# n = 0 set jump scroll 12385# n = 1 set smooth scroll 12386#ESC 9 n control display: 12387# n = 0 display off 12388# n = 1 display on 12389#ESC : clear unprotected data to null 12390#ESC ; clear unprotected data to insert char 12391# 12392#ESC < keyclick on 12393#ESC = p1 p2 address cursor to row, column 12394# p1 = row 20h - 7fh 12395# p2 = column (lo) 20h - 7fh 12396# p3 = column (hi) 20h - 21h (only 132 col) 12397#ESC > keyclick off 12398#ESC ? transmit cursor location (row, column) 12399# 12400#ESC @ copy print mode on 12401#ESC A copy print mode off 12402#ESC B block mode on 12403#ESC C block mode off (conversation mode) 12404#ESC D F set full duplex 12405#ESC D H set half duplex 12406#ESC E line insert 12407#ESC F p1 p2 set page colour (p1 = f/grnd, p2 = b/grnd) 12408# 0 = black, 1 = red, 2 = green, 3 = yellow 12409# 4 = blue, 5 = magenta, 6 = cyan, 7 = white 12410#ESC G n set serial field attribute (n = 30h - 3Fh) 12411#ESC H n full graphics mode: 12412# n = 0 exit full graphics mode 12413# n = 1 enter full graphics mode 12414#ESC I back tab 12415#ESC J back page 12416#ESC K forward page 12417# 12418#ESC L unformatted page print 12419#ESC M L move window left (132 col mode only) 12420#ESC M R move window right (132 col mode only) 12421#ESC N set page edit (clear line edit) 12422#ESC O set line edit (clear page edit) 12423#ESC P formatted page print 12424#ESC Q character insert 12425#ESC R line delete 12426#ESC S send message unprotected only 12427#ESC T erase line to insert char 12428#ESC U set monitor mode (see ESC X, ESC u) 12429# 12430#ESC V n select video attribute mode: 12431# n = 0 serial field attribute mode 12432# n = 1 parallel character attribute mode 12433#ESC V 2 n define line attribute: 12434# n = 0 single width single height 12435# n = 1 single width double height 12436# n = 2 double width single height 12437# n = 3 double width double height 12438#ESC V 3 n select character font: 12439# n = 0 system font 12440# n = 1 user defined font 12441#ESC V 4 n select screen mode: 12442# n = 0 page screen mode 12443# n = 1 virtual screen mode 12444#ESC V 5 n control mouse mode: 12445# n = 0 disable mouse 12446# n = 1 enable sample mode 12447# n = 2 send mouse information 12448# n = 3 enable request mode 12449#ESC W character delete 12450#ESC X clear monitor mode (see ESC U, ESC u) 12451#ESC Y erase page to insert char 12452# 12453#ESC Z n send user/status line: 12454# n = 0 send user line 12455# n = 1 send status line 12456# n = 2 send terminal ID 12457#ESC [ p1 p2 p3 set character attribute (parallel char mode): 12458# p1: 0 = normal 12459# 1 = blank 12460# 2 = blink 12461# 3 = blink blank (= blank) 12462# 4 = reverse 12463# 5 = reverse blank 12464# 6 = reverse blink 12465# 7 = reverse blink blank (= reverse blank) 12466# 8 = underline 12467# 9 = underline blank 12468# : = underline blink 12469# ; = underline blink blank 12470# < = reverse underline 12471# = = reverse underline blank 12472# > = reverse underline blink 12473# ? = reverse underline blink blank 12474# p2, p3: f/grnd, b/grnd colour 12475# (see ESC F for colours) 12476# use ZZ for mono, eg. 12477# ESC [ 0 Z Z for normal 12478# ESC [ 4 Z Z for inverse etc. 12479# 12480#ESC \ n set page size: 12481# n = 1 24 lines/page 12482# n = 2 48 lines/page 12483# n = 3 72 lines/page 12484# n = 4 96 lines/page 12485#ESC ] n set Wordstar mode: 12486# n = 0 normal (KDS7372) mode 12487# n = 1 Wordstar mode 12488# 12489#ESC b set foreground colour screen 12490# 12491#ESC c n enter self-test mode: 12492# n = 0 exit self test mode 12493# n = 1 ROM test 12494# n = 2 RAM test 12495# n = 3 NVRAM test 12496# n = 4 screen display test 12497# n = 5 main/printer port test 12498# n = 6 mouse port test 12499# n = 7 graphics board test 12500# n = 8 graphics memory test 12501# n = 9 display all 'E' 12502# n = : display all 'H' 12503#ESC d set background colour screen 12504# 12505#ESC e n program insert char (n = insert char) 12506#ESC f text CR load user status line with 'text' 12507# 12508#ESC g display user status line on 25th line 12509#ESC h display system status line on 25th line 12510#ESC i tab 12511#ESC j reverse linefeed 12512#ESC k n duplex/local edit mode: 12513# n = 0 duplex edit mode 12514# n = 1 local edit mode 12515#ESC l n select virtual screen: 12516# n = 0 screen 1 12517# n = 1 screen 2 12518#ESC m save current config to NVRAM 12519#ESC n p1 select display screen: 12520# p1 = 0 screen 1 12521# p1 = 1 screen 2 12522# p1 = 2 screen 3 12523# p1 = 3 screen 4 12524#ESC o p1 p2 set characters/line and attribute: 12525# p1 = 0 80 chars/line 12526# 12527#ESC o p1 p2 set characters/line and attribute: 12528# p1 = 0 80 chars/line 12529# p1 = 1 132 chars/line 12530# p2 = 0 single width single height 12531# p2 = 1 single width double height 12532# p2 = 2 double width single height 12533# p2 = 3 double width double height 12534# 12535#ESC q insert mode on 12536#ESC r edit mode on 12537#ESC s send message all 12538#ESC t erase line to null 12539#ESC u clear monitor mode (see ESC U, ESC X) 12540#ESC v autopage mode on 12541#ESC w autopage mode off 12542#ESC x p1 p2 p3 define delimiter code... 12543#ESC y erase page to null 12544# 12545#ESC z 2 p1 p2 p3 p4 draw quadrangle: 12546# p1 = starting row 12547# p2 = starting column 12548# p3 = end row 12549# p4 = end column 12550# 12551#ESC { p1 p2 p3 p4 configure main port 12552# (baud, stop bits, parity, word length) 12553# 12554#ESC | p1 p2 text Ctrl-Y program function key with 'text': 12555# p1 = function key code: 12556# '1' - ';' normal f1- f11 12557# '<' - 'F' shifted f1 - f11 12558# p2 = program mode: 12559# 1 = FDX 12560# 2 = LOC 12561# 3 = HDX 12562# Ctrl-Y = terminator 12563# (use Ctrl-P to escape ^P, ^Y ) 12564# 12565#ESC } p1 p2 p3 p4 configure printer port 12566# (baud, stop bits, parity, word length) 12567#ESC ~ send system status 12568# 12569# Codes and info from Peter Disdale <pete@pdlmail.demon.co.uk> 12 May 1997 12570# 12571# Entry is by esr going solely on above information and is UNTESTED. 12572# This actually looks a lot like a Televideo 9xx. 12573# This entry uses page 0 and is monochrome; I'm not brave enough to try 12574# to make color work without a test terminal. The <am> capability is a guess. 12575# The initialization string sets conversation mode, blinking underline cursor, 12576# full duplex, parallel attribute mode, display user status line, white 12577# foreground, black background, normal highlight. 12578# 12579icl6404|kds7372|icl6402|kds6402|ICL 6404 aka Kokusai Display Systems 7372, 12580 OTbs, am, hs, 12581 cols#80, lines#24, 12582 bel=^G, blink=\E[2ZZ, cbt=\EI, civis=\E.0, clear=\E*, 12583 cnorm=\E.3, cr=^M, 12584 csr=\E!%+%p1%{32}%+%p2%{32} cud1=\026, cuf1=^L, 12585 cup=\E=%p1%{32}%+%c%p2%{80}%m%{32}%+%c%p2%{80}%>%{32}%+%c, 12586 cuu1=^K, cvvis=\E.1, dch1=\EW, dl1=\ER, home=^^, ht=^I, 12587 hts=\E1, il1=\EE, invis=\E[1ZZ, 12588 is1=\EC\E.3\EDF\EV1\Eg\E[0ZZ, nel=^_, rev=\E[4ZZ, 12589 rmir=\Er, rmso=\E[%gh%{4}%^%Ph%gh%dZZ, 12590 rmul=\E[%gh%{8}%^%Ph%gh%dZZ, rs2=\Eo1, 12591 sgr=\E[%{0}%?%p1%t%{4}%|%;%?%p2%t%{8}%|%;%?%p3%t%{4}%|%;%?%p4%t%{2}%|%;%?%p7%t%{1}%|%;ZZ, 12592 sgr0=\E[0ZZ, smir=\Eq, smso=\E[8ZZ, smul=\E[8ZZ, tbc=\E3, 12593icl6404-w|kds7372-w|ICL 6404 aka Kokusai Display Systems 7372 132 cols, 12594 rs2=\Eo1, use=icl6404, 12595 12596#### Interactive Systems Corp 12597# 12598# ISC used to sell OEMed and customized hardware to support ISC UNIX. 12599# ISC UNIX still exists in 1995, but ISC itself is no more; they got 12600# bought out by Sun. 12601# 12602 12603# From: <cithep!eric> Wed Sep 16 08:06:44 1981 12604# (intext: removed obsolete ":ma=^K^P^R^L^L ::bc=^_:", also the 12605# ":le=^_:" later overridden -- esr) 12606intext|Interactive Systems Corporation modified owl 1200, 12607 OTbs, am, 12608 cols#80, it#8, lines#24, xmc#1, 12609 bel=^G, cbt=^Y, clear=\014$<132>, cr=^M, cub1=^H, cud1=^J, 12610 cuf1=^^, cup=\017%p1%{32}%+%c%p2%{32}%+%c, cuu1=^\, 12611 dch1=\022$<5.5*>, dl1=\021$<5.5*>, ed=\026J$<5.5*>, 12612 el=^Kp^R, ht=^I, il1=\020$<5.5*>, ind=^J, ip=$<5.5*>, kbs=^H, 12613 kcub1=^_, kcud1=^J, kcuf1=^^, kcuu1=^\, kf0=^VJ\r, kf1=^VA\r, 12614 kf2=^VB\r, kf3=^VC\r, kf4=^VD\r, kf5=^VE\r, kf6=^VF\r, 12615 kf7=^VG\r, kf8=^VH\r, kf9=^VI\r, khome=^Z, rmir=^V<, 12616 rmkx=^V9, rmso=^V#\s, smir=^V;, smkx=\036\:\264\026%%, 12617 smso=^V$\,, 12618intext2|intextii|INTERACTIVE modified owl 1251, 12619 am, bw, ul, 12620 cols#80, lines#24, xmc#0, 12621 bel=^G, cbt=\E[Z, clear=\E[H\E[2J, cr=^M, cud1=\E[B, 12622 cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, dch1=\E[P, 12623 dl1=\E[M, ed=\E[J, el=\E[K, 12624 flash=\E[;;;;;;;;;2;;u$<200/>\E[;;;;;;;;;1;;u, 12625 hpa=\E[%p1%{1}%+%dG, ht=^I, ich1=\E[@, il1=\E[L, ind=\E[S, 12626 kbs=^H, kcub1=\ED\r, kcud1=\EB\r, kcuf1=\EC\r, kcuu1=\EA\r, 12627 kf0=\E@\r, kf1=\EP\r, kf2=\EQ\r, kf3=\ES\r, kf4=\ET\r, 12628 kf5=\EU\r, kf6=\EV\r, kf7=\EW\r, kf8=\EX\r, kf9=\EY\r, 12629 khome=\ER\r, lf0=REFRSH, lf1=DEL CH, lf2=TABSET, lf3=GOTO, 12630 lf4=+PAGE, lf5=+SRCH, lf6=-PAGE, lf7=-SRCH, lf8=LEFT, 12631 lf9=RIGHT, ri=\E[T, rmso=\E[2 D, rmul=\E[2 D, smso=\E[6 D, 12632 smul=\E[18 D, 12633 12634#### Kimtron (abm, kt) 12635# 12636# Kimtron seems to be history, but as March 1998 these people are still 12637# offering repair services for Kimtron equipment: 12638# 12639# Com/Pair Monitor Service 12640# 1105 N. Cliff Ave. 12641# Sioux Falls, South Dakota 57103 12642# 12643# WATS voice: 1-800/398-4946 12644# POTS fax: +1 605/338-8709 12645# POTS voice: +1 605/338-9650 12646# Email: <compair@sd.cybernex.net> 12647# Internet/Web: <http://www.com-pair.com> 12648# 12649# Kimtron entries include (undocumented) codes for: enter dim mode, 12650# enter bold mode, enter reverse mode, turn off all attributes. 12651# 12652 12653# Kimtron ABM 85 added by Dual Systems 12654# (abm85: removed duplicated ":kd=^J:" -- esr) 12655abm85|Kimtron ABM 85, 12656 OTbs, am, bw, msgr, 12657 cols#80, it#8, lines#24, xmc#1, 12658 cbt=\EI, clear=\E*, cub1=^H, cud1=^J, cuf1=^L, 12659 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW, 12660 dl1=\ER, ed=\Ey, el=\Et, ht=^I, 12661 if=/usr/share/tabset/stdcrt, il1=\EE, 12662 is2=\EC\EX\Eg\En\E%\Er\E(\Ek\Em\Eq, kbs=^H, kcub1=^H, 12663 kcud1=^J, kcuf1=^L, kcuu1=^K, khome=^^, rmir=\Er, rmso=\Ek, 12664 rmul=\Em, smir=\EQ, smso=\Ej, smul=\El, 12665# Kimtron ABM 85H added by Dual Systems. 12666# Some notes about the abm85h entries: 12667# 1) there are several firmware revs of 85H in the world. Use abm85h-old for 12668# firmware revs prior to SP51 12669# 2) Make sure to use abm85h entry if the terminal is in 85h mode and the 12670# abm85e entry if it is in tvi920 emulation mode. They are incompatible 12671# in some places and NOT software settable i.e., <is2> can't fix it) 12672# 3) In 85h mode, the arrow keys and special functions transmit when 12673# the terminal is in dup-edit, and work only locally in local-edit. 12674# Vi won't swallow `del char' for instance, but <smcup> turns on 12675# dup-edit anyway so that the arrow keys will work right. If the 12676# arrow keys don't work the way you like, change <smcup>, <rmcup>, and 12677# <is2>. Note that 920E mode does not have software commands to toggle 12678# between dup and local edit, so you get whatever was set last on the 12679# terminal. 12680# 4) <flash> attribute is nice, but seems too slow to work correctly 12681# (\Eb<pad>\Ed) 12682# 5) Make sure `hidden' attributes are selected. If `embedded' attributes 12683# are selected, the <xmc@> entry should be removed. 12684# 6) auto new-line should be on (selectable from setup mode only) 12685# 12686# From: Erik Fair <fair@ucbarpa> Sun Oct 27 07:21:05 1985 12687abm85h|Kimtron ABM 85H native mode, 12688 hs, 12689 xmc@, 12690 bel=^G, cnorm=\E.4, cvvis=\E.2, dim=\E), dsl=\Ee, flash@, 12691 fsl=^M, invis@, 12692 is2=\EC\EN\EX\024\016\EA\Ea\E%\E9\Ee\Er\En\E"\E}\E'\E(\Ef\r\EG0\Ed\E.4\El, 12693 kcud1=^V, sgr0=\E(\EG0, smir=\EZ, tsl=\Eg\Ef, use=adm+sgr, 12694 use=abm85, 12695abm85e|Kimtron ABM 85H in 920E mode, 12696 xmc@, 12697 bel=^G, dim=\E), flash@, 12698 is2=\EC\EX\EA\E%\E9\Ee\Er\En\E"\E}\E'\E(\Ef\r\Ek\Eq\Em, 12699 rev=\Ej, sgr0=\E(\Ek, smir=\EZ, use=abm85, 12700abm85h-old|oabm85h|o85h|Kimtron ABM 85H with old firmware rev., 12701 xmc@, 12702 bel=^G, dim=\E), 12703 is2=\E}\EC\EX\Ee\En\E%\Er\E(\Ek\Em\Eq\Ed\ET\EC\E9\EF, 12704 rev=\Ej, sgr0=\E(\Ek, smir=\EZ, use=abm85, 12705# From: <malman@bbn-vax.arpa> 12706# (kt7: removed obsolete :ma=^V^J^L :" -- esr) 12707kt7|kimtron model kt-7, 12708 OTbs, am, 12709 cols#80, it#8, lines#24, 12710 cbt=\EI, clear=^Z, cub1=^H, cud1=^V, cuf1=^L, 12711 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW, 12712 dl1=\ER, ed=\EY, el=\ET, fsl=\Eg, home=^^, ht=^I, ich1=\EQ, 12713 if=/usr/share/tabset/stdcrt, il1=\EE, invis@, is2=\El\E", 12714 kbs=^H, kcbt=\EI, kclr=^Z, kcub1=^H, kcud1=^V, kcuf1=^L, 12715 kcuu1=^K, kdch1=\EW, kdl1=\ER, ked=\EY, kel=\ET, kf0=^AI\r, 12716 kf1=^A@\r, kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, 12717 kf6=^AE\r, kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, khome=^^, 12718 kich1=\EQ, kil1=\EE, tsl=\Ef, use=adm+sgr, 12719# Renamed TB=^I to :ta:, BE=^G to :bl:, BS=^H to :kb:, N to :kS: (based on the 12720# other kt7 entry and the adjacent key capabilities). Removed EE which is 12721# identical to :mh:. Removed :ES=\EGD: which is some kind of highlight 12722# but we can't figure out what. 12723kt7ix|kimtron model kt-7 or 70 in IX mode, 12724 am, bw, 12725 cols#80, it#8, lines#25, 12726 acsc=jYk?lZm@nEqDt4uCvAwBx3, bel=^G, blink=\EG2, cbt=\EI, 12727 civis=\E.0, clear=\E*, cnorm=\E.3, cr=^M, cub1=^H, cud1=^V, 12728 cuf1=^L, cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, 12729 dch1=\EW, dim=\EG@, dl1=\ER, dsl=\Ef\r, ed=\EY, el=\ET, fsl=^M, 12730 home=^^, ht=^I, ich1=\EQ, il1=\EE, ind=^J, 12731 is2=\EG0\E s\017\E~, kbs=^H, kcbt=\EI, kclr=\E*, 12732 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdl1=\ER, 12733 ked=\EY, kel=\ET, kend=\EY, kf0=^AI\r, kf1=^A@\r, kf2=^AA\r, 12734 kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, 12735 kf8=^AG\r, kf9=^AH\r, khome=^^, kich1=\EQ, kil1=\EE, knp=\EJ, 12736 nel=^M^J, pulse=\EK, rmacs=\E%%, rmir=, rmso=\EG0, rmul=\EG0, 12737 sgr0=\EG0, smacs=\E$, smir=, smso=\EG4, smul=\EG8, tsl=\Ef, 12738 12739#### Microdata/MDIS 12740# 12741# This was a line of terminals made by McDonnell-Douglas Information Systems. 12742# These entries come direct from MDIS documentation. I have edited them only 12743# to move primary names of the form p[0-9] * to aliases, and to comment out 12744# <rmacs>/<smacs> in a couple of entries without <acsc> strings. I have 12745# also removed the change history; the last version indicates this is 12746# version 4.3 by A.Barkus, September 1990 (earliest entry is October 1989). 12747# 12748 12749# McDonnell Information Systems Terminal Family History 12750# ========================================= 12751# 12752# Prism-1, Prism-2 and P99: 12753# Ancient Microdata and CMC terminals, vaguely like Adds Regent 25. 12754# 12755# Prism-4 and Prism-5: 12756# Slightly less ancient range of Microdata terminals. Follow-on from 12757# Prism-2, but with many enhancements. P5 has eight display pages. 12758# 12759# Prism-6: 12760# A special terminal for use with library systems, primarily in Germany. 12761# Limited numbers. Similar functionality to P5 (except attributes?). 12762# 12763# Prism-7, Prism-8 and Prism-9: 12764# More recent range of MDIS terminals, in which P7 and P8 12765# replace the P4 & P5, with added functionality, and P9 is the flagship. 12766# The P9 has two emulation modes - P8 and ANSI - and includes a 12767# large number of the DEC VT220 control sequences. Both 12768# P8 and P9 support 80c/24ln/8pg and 132cl/24li/4pg formats. 12769# 12770# Prism-12 and Prism-14: 12771# Latest range, functionally very similar to the P9. The P14 has a 12772# black-on-white overscanning screen. 12773# 12774# The terminfo definitions given here are: 12775# 12776# p2 - Prism-2 (or Prism-1 or P99). 12777# 12778# p4 - Prism-4 (and older P7s & P8s). 12779# p5 - Prism-5 (or Prism-6). 12780# 12781# p7 - Prism-7. 12782# p8 - Prism-8 (in national or multinational mode). 12783# p8-w - 132 column version of p8. 12784# p9 - Prism-9 in ANSI mode. 12785# p9-w - 132 column version of p9. 12786# p9-8 - Prism-9 in Prism-8 emulation mode. 12787# p9-8-w - As p9-8, but with 132 columns. 12788# 12789# p12 - Prism-12 in ANSI mode. 12790# p12-w - 132 column version of p12. 12791# p12-m - Prism-12 in MDC emulation mode. 12792# p12-m-w - As p12-m, but with 132 columns. 12793# p14 - Prism-14 in ANSI mode. 12794# p14-w - 132 column version of p14. 12795# p14-m - Prism-14 in MDC emulation mode. 12796# p14-m-w - As p14-m, but with 132 columns. 12797# 12798# p2: Prism-2 12799# ----------- 12800# 12801# Includes Prism-1 and basic P99 without SP or MP loaded. 12802# The simplest form of Prism-type terminal. 12803# Basic cursor movement and clearing operations only. 12804# No video attributes. 12805# Notes: 12806# Horizontal cursor qualifiers of NUL, XON and XOFF are mapped to the next 12807# value up, followed by backspace. 12808# 12809prism2|MDC Prism-2, 12810 am, bw, msgr, 12811 cols#80, lines#24, 12812 bel=^G, clear=\014$<20>, cr=^M, cub1=^H, cud1=^J, cuf1=^F, 12813 cup=\013%p1%{32}%+%c\020%p2%{10}%/%{16}%*%p2%{10}%m%+%Pc%?%{17}%gc%=%{19}%gc%=%|%gc%!%|%t%{1}%gc%+%c%{8}%e%gc%;%c, 12814 cuu1=^Z, ed=\EJ, el=\EK, home=^A, 12815 hpa=\020%p1%{10}%/%{16}%*%p1%{10}%m%+%Pc%?%{17}%gc%=%{19}%gc%=%|%gc%!%|%t%{1}%gc%+%c%{8}%e%gc%;%c, 12816 ind=^J, kbs=^H, khome=^A, vpa=\013%p1%{32}%+%c, 12817 12818# p4: Prism-4 12819# ----------- 12820# 12821# Includes early versions of P7 & P8. 12822# Basic family definition for most Prisms (except P2 and P9 ANSI). 12823# Notes: 12824# Horizontal cursor qualifiers of NUL, XON and XOFF are mapped to the next 12825# value up, followed by backspace. 12826# Cursor key definitions removed because they interfere with vi and csh keys. 12827# 12828prism4|p4|P4|MDC Prism-4, 12829 am, bw, hs, mc5i, msgr, 12830 cols#80, lines#24, wsl#72, xmc#1, 12831 bel=^G, blink=^CB, civis=^]\344, clear=\014$<20>, 12832 cnorm=^]\342, cr=^M, cub1=^H, cud1=^J, cuf1=^F, 12833 cup=\013%p1%{32}%+%c\020%p2%{10}%/%{16}%*%p2%{10}%m%+%Pc%?%{17}%gc%=%{19}%gc%=%|%gc%!%|%t%{1}%gc%+%c%{8}%e%gc%;%c, 12834 cuu1=^Z, dim=^CA, dsl=\035\343\035\345, ed=\EJ, el=\EK, 12835 fsl=^]\345, home=^A, 12836 hpa=\020%p1%{10}%/%{16}%*%p1%{10}%m%+%Pc%?%{17}%gc%=%{19}%gc%=%|%gc%!%|%t%{1}%gc%+%c%{8}%e%gc%;%c, 12837 ind=^J, invis=^CH, kbs=^H, khome=^A, mc0=\EU, mc4=\ET, mc5=\ER, 12838 rev=^CD, rmso=^C\s, rmul=^C\s, 12839 sgr=\003%{64}%?%p1%p3%|%t%{4}%+%;%?%p2%t%{16}%+%;%?%p4%t%{2}%+%;%?%p5%t%{1}%+%;%?%p7%t%{8}%+%;%c%?%p9%t\016%e\017%;, 12840 sgr0=^C\s, smso=^CD, smul=^CP, tsl=^]\343, 12841 vpa=\013%p1%{32}%+%c, 12842 12843# p5: Prism-5 12844# ----------- 12845# 12846# Same definition as p4. Includes Prism-6 (not tested!). 12847# Does not use any multi-page features. 12848# 12849prism5|p5|P5|MDC Prism-5, 12850 use=p4, 12851 12852# p7: Prism-7 12853# ----------- 12854# 12855# Similar definition to p4. Uses ANSI cursor motion to avoid network problems. 12856# Notes: 12857# Use p4 for very early models of P7. 12858# Rev-index removed; can't send nulls to terminal in 8-bit modes. 12859# 12860prism7|p7|P7|MDC Prism-7, 12861 cup=\E[%i%p1%d;%p2%dH, hpa@, vpa@, use=p4, 12862 12863# p8: Prism-8 12864# ----------- 12865# 12866# Similar definition to p7. Uses ANSI cursor motion to avoid network problems. 12867# Supports national and multinational character sets. 12868# Notes: 12869# Alternate char set operations only work in multinational mode. 12870# Use p4 for very early models of P8. 12871# Rev-index removed; can't send nulls to terminal in 8-bit modes. 12872# (esr: commented out <smacs>/<rmacs> because there's no <acsc>) 12873# 12874prism8|p8|P8|MDC Prism-8, 12875 cup=\E[%i%p1%d;%p2%dH, hpa=\E[%i%p1%d`, is2=\E[<12h, 12876 vpa=\E[%i%p1%dd, use=p4, 12877 12878# p8-w: Prism-8 in 132 column mode 12879# -------------------------------- 12880# 12881# 'Wide' version of p8. 12882# Notes: 12883# Rev-index removed; can't send nulls to terminal in 8-bit modes. 12884# 12885prism8-w|p8-w|P8-W|MDC Prism-8 in 132 column mode, 12886 cols#132, 12887 is2=\E[<12h\E[<14h, use=p8, 12888 12889# p9: Prism-9 in ANSI mode 12890# ------------------------- 12891# 12892# The "flagship" model of this generation of terminals. 12893# ANSI X3.64 (ISO 6429) standard sequences, plus many DEC VT220 ones. 12894# Notes: 12895# Tabs only reset by "reset". Otherwise assumes default (8 cols). 12896# Fixes to deal with terminal firmware bugs: 12897# . 'ri' uses insert-line since rev index doesn't always 12898# . 'sgr0' has extra '0' since esc[m fails 12899# . 'fsl' & 'dsl' use illegal char since cr is actioned wrong on line 25 12900# Not covered in the current definition: 12901# . Labels 12902# . Programming Fn keys 12903# . Graphic characters (defaults correctly to vt100) 12904# . Padding values (sets xon) 12905# (esr: commented out <smacs>/<rmacs> because there's no <acsc>) 12906# 12907prism9|p9|P9|MDC Prism-9 in ANSII mode, 12908 am, bw, hs, mc5i, msgr, xenl, xon, 12909 cols#80, it#8, lines#24, vt#3, wsl#72, 12910 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, civis=\E[<4l, 12911 clear=^L, cnorm=\E[<4h, cr=^M, csr=\E[%i%p1%d;%p2%d%%v, 12912 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=^J, 12913 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 12914 cuu=\E[%p1%dA, cuu1=\E[A, dch=\E[%p1%dP, dch1=\E[P, 12915 dl=\E[%p1%dM, dl1=\E[M, dsl=\E[%}\024, ech=\E[%p1%dX, 12916 ed=\E[J$<10>, el=\E[K, fsl=^T, home=\E[H, hpa=\E[%i%p1%d`, 12917 ht=^I, hts=\EH, il=\E[%p1%dL, il1=\E[L, ind=^J, 12918 is2=\E[&p\E[<12l\E F, kbs=^H, kclr=^L, kcub1=\E[D, 12919 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kf1=\E[11~, 12920 kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, kf13=\E[25~, 12921 kf14=\E[26~, kf15=\E[28~, kf16=\E[29~, kf17=\E[31~, 12922 kf18=\E[32~, kf2=\E[12~, kf3=\E[13~, kf4=\E[14~, 12923 kf5=\E[15~, kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, 12924 khome=\E[H, mc0=\E[i, mc4=\E[4i, mc5=\E[5i, nel=^M^J, 12925 prot=\E[32%{, rc=\E[%z, rep=\E[%p2%db%p1%c, rev=\E[7m, 12926 ri=\E[L, rmir=\E[4l, rmso=\E[27m, rmul=\E[24m, 12927 rs2=\E[&p\E[<12l\E F\E[3g\E[9;17;25;33;41;49;57;65;73 N, 12928 sc=\E[%y, 12929 sgr=\E[%{0}%?%p1%p3%|%t%{4}%+%;%?%p2%t%{2}%+%;%?%p4%t%{1}%+%;%?%p6%t%{8}%+%;%?%p8%t%{32}%+%;%d%%{%?%p9%t\016%e\017%;, 12930 sgr0=\E[0m, smir=\E[4h, smso=\E[7m, smul=\E[4m, tbc=\E[2g, 12931 tsl=\E[%i%p1%d%%}, vpa=\E[%i%p1%dd, 12932 12933# p9-w: Prism-9 in 132 column mode 12934# -------------------------------- 12935# 12936# 'Wide' version of p9. 12937# 12938prism9-w|p9-w|P9-W|MDC Prism-9 in 132 column mode, 12939 cols#132, 12940 is2=\E[&p\E[<12l\E F\E[<14h, 12941 rs2=\E[&p\E[<12l\E F\E[<14h, use=p9, 12942 12943# p9-8: Prism-9 in P8 mode 12944# ------------------------ 12945# 12946# P9 terminal in P8 emulation mode. 12947# Similar to p8 definition. 12948# Insertion and deletion operations possible. 12949# 12950prism9-8|p9-8|P9-8|MDC Prism-9 in P8 mode, 12951 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, 12952 ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, il1=\E[L, use=p8, 12953 12954# p9-8-w: Prism-9 in P8 and 132 column modes 12955# ------------------------------------------ 12956# 12957# P9 terminal in P8 emulation mode and 132 column mode. 12958# 12959prism9-8-w|p9-8-w|P9-8-W|MDC Prism-9 in Prism 8 emulation and 132 column mode, 12960 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, 12961 ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, il1=\E[L, use=p8-w, 12962 12963# p12: Prism-12 in ANSI mode 12964# --------------------------- 12965# 12966# See p9 definition. 12967# 12968prism12|p12|P12|MDC Prism-12 in ANSI mode, 12969 use=p9, 12970 12971# p12-w: Prism-12 in 132 column mode 12972# ---------------------------------- 12973# 12974# 'Wide' version of p12. 12975# 12976prism12-w|p12-w|P12-W|MDC Prism-12 in 132 column mode, 12977 use=p9-w, 12978 12979# p12-m: Prism-12 in MDC emulation mode 12980# ------------------------------------- 12981# 12982# P12 terminal in MDC emulation mode. 12983# Similar to p8 definition. 12984# Insertion and deletion operations possible. 12985# 12986prism12-m|p12-m|P12-M|MDC Prism-12 in MDC emulation mode, 12987 use=p9-8, 12988 12989# p12-m-w: Prism-12 in MDC emulation and 132 column modes 12990# ------------------------------------------------------- 12991# 12992# P12 terminal in MDC emulation mode and 132 column mode. 12993# 12994prism12-m-w|p12-m-w|P12-M-W|MDC Prism-12 in MDC emulation and 132 column mode, 12995 use=p9-8-w, 12996 12997# p14: Prism-14 in ANSII mode 12998# --------------------------- 12999# 13000# See p9 definition. 13001# 13002prism14|p14|P14|MDC Prism-14 in ANSII mode, 13003 use=p9, 13004 13005# p14-w: Prism-14 in 132 column mode 13006# ---------------------------------- 13007# 13008# 'Wide' version of p14. 13009# 13010prism14-w|p14-w|P14-W|MDC Prism-14 in 132 column mode, 13011 use=p9-w, 13012 13013# p14-m: Prism-14 in MDC emulation mode 13014# ------------------------------------- 13015# 13016# P14 terminal in MDC emulation mode. 13017# Similar to p8 definition. 13018# Insertion and deletion operations possible. 13019# 13020prism14-m|p14-m|P14-M|MDC Prism-14 in MDC emulation mode, 13021 use=p9-8, 13022 13023# p14-m-w: Prism-14 in MDC emulation and 132 column modes 13024# ------------------------------------------------------- 13025# 13026# P14 terminal in MDC emulation mode and 132 column mode. 13027# 13028prism14-m-w|p14-m-w|P14-M-W|MDC Prism-14 in MDC emulation and 132 column mode, 13029 use=p9-8-w, 13030 13031# End of McDonnell Information Systems Prism definitions 13032 13033# These things were popular in the Pick database community at one time 13034# From: George Land <georgeland@aol.com> 24 Sep 1996 13035p8gl|prism8gl|McDonnell-Douglas Prism-8 alternate definition, 13036 am, bw, hs, mir, 13037 cols#80, lines#24, ma#1, wsl#78, xmc#1, 13038 bel=^G, blink=^CB, clear=^L, cr=^M, cub1=^U, cud1=^J, cuf1=^F, 13039 cup=\E[%i%p1%d;%p2%dH, cuu1=^Z, dch1=\s^H, dim=^CA, dl1=^P, 13040 ed=\EJ, el=\EK, home=^A, ind=^J, invis=^CH, kbs=^H, kcub1=^U, 13041 kcud1=^J, kcuf1=^F, kcuu1=^Z, kdch1=\s^H, kdl1=^P, ked=\EJ, 13042 kel=\EK, kf1=^A@\r, kf10=^AI\r, kf12=^AJ\r, kf13=^AK\r, 13043 kf14=^AL\r, kf15=^AM\r, kf16=^AN\r, kf17=^AO\r, kf2=^AA\r, 13044 kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, 13045 kf8=^AG\r, kf9=^AH\r, khome=^A, lf1=F1, lf10=F10, lf2=F2, 13046 lf3=F3, lf4=F4, lf5=F5, lf6=F6, lf7=F7, lf8=F8, lf9=F9, nel=^J^M, 13047 pad=\0, rev=^CD, rmso=^C\s, rmul=^C\s, sgr0=^C\s, smso=^CE, 13048 smul=^C0, 13049 13050#### Microterm (act, mime) 13051# 13052# The mime1 entries refer to the Microterm Mime I or Mime II. 13053# The default mime is assumed to be in enhanced act iv mode. 13054# 13055 13056# New "safe" cursor movement (5/87) from <reuss@umd5.umd.edu>. Prevents 13057# freakout with out-of-range args on Sytek multiplexors. No <smso=^N> and 13058# <rmso=^N> since it gets confused and it's too dim anyway. No <ich1> 13059# since Sytek insists ^S means xoff. 13060# (act4: found ":ic=2^S:ei=:im=:ip=.1*^V:" commented out in 8.3 -- esr) 13061act4|microterm|microterm act iv, 13062 OTbs, am, 13063 cols#80, lines#24, 13064 bel=^G, clear=\014$<12/>, cr=^M, cub1=^H, cud1=^K, cuf1=^X, 13065 cup=\024%p1%{24}%+%c%p2%p2%?%{47}%>%t%{48}%+%;%{80}%+%c, 13066 cuu1=^Z, dch1=\004$<.1*/>, dl1=\027$<2.3*/>, 13067 ed=\037$<2.2*/>, el=\036$<.1*/>, home=^], 13068 il1=\001<2.3*/>, ind=^J, kcub1=^H, kcud1=^K, kcuf1=^X, 13069 kcuu1=^Z, 13070# The padding on :sr: and :ta: for act5 and mime is a guess and not final. 13071# The act 5 has hardware tabs, but they are in columns 8, 16, 24, 32, 41 (!)... 13072# (microterm5: removed obsolete ":ma==^Z^P^Xl^Kj:" -- esr) 13073act5|microterm5|microterm act v, 13074 kcub1=^H, kcud1=^K, kcuf1=^X, kcuu1=^Z, ri=\EH$<3>, uc=^H\EA, 13075 use=act4, 13076# Mimes using brightness for standout. Half bright is really dim unless 13077# you turn up the brightness so far that lines show up on the screen. 13078mime-fb|full bright mime1, 13079 is2=^S\E, rmso=^S, smso=^Y, use=mime, 13080mime-hb|half bright mime1, 13081 is2=^Y\E, rmso=^Y, smso=^S, use=mime, 13082# (mime: removed obsolete ":ma=^X ^K^J^Z^P:"; removed ":do=^K:" that overrode 13083# the more plausible ":do=^J:" -- esr) 13084# uc was at one time disabled to get around a curses bug, be wary of it 13085mime|mime1|mime2|mimei|mimeii|microterm mime1, 13086 OTbs, am, 13087 cols#80, it#8, lines#24, vt#9, 13088 bel=^G, clear=^]^C, cr=^M, cub1=^H, cud1=^J, cuf1=^X, 13089 cup=\024%p1%{24}%+%c%p2%p2%?%{32}%>%t%{48}%+%;%{80}%+%c, 13090 cuu1=^Z, dl1=\027$<80>, ed=^_, el=^^, home=^], ht=\011$<2>, 13091 il1=\001$<80>, ind=^J, is2=^S\E^Q, kcub1=^H, kcud1=^K, 13092 kcuf1=^X, kcuu1=^Z, ri=\022$<3>, uc=^U, 13093# These termcaps (for mime2a) put the terminal in low intensity mode 13094# since high intensity mode is so obnoxious. 13095mime2a-s|microterm mime2a (emulating an enhanced soroc iq120), 13096 OTbs, am, 13097 cols#80, lines#24, 13098 bel=^G, clear=\EL, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 13099 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EI, dch1=\ED, 13100 dl1=\027$<20*>, ed=\EJ$<20*>, el=\EK, home=^^, 13101 il1=\001$<20*>, ind=^J, ip=$<2>, is2=\E), kcub1=^H, kcud1=^J, 13102 kcuf1=^L, kcuu1=^K, ri=\EI, rmir=^Z, rmso=\E;, rmul=\E7, 13103 smir=\EE, smso=\E\:, smul=\E6, 13104# This is the preferred mode (but ^X can't be used as a kill character) 13105mime2a|mime2a-v|microterm mime2a (emulating an enhanced vt52), 13106 OTbs, 13107 cols#80, it#8, lines#24, 13108 bel=^G, clear=\EL, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 13109 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, dch1=^N, 13110 dl1=\027$<20*>, ed=\EQ$<20*>, el=\EP, home=\EH, ht=^I, 13111 il1=\001$<20*>, ind=^J, ip=$<2>, is2=^Y, kcub1=\ED, 13112 kcud1=\EB, kcuf1=\EC, kcuu1=\EA, ri=\EA, rmir=^Z, rmso=\E9, 13113 rmul=\E5, smir=^O, smso=\E8, smul=\E4, 13114# (mime3a: removed obsolete ":ma=^X ^K^J^Z^P:" -- esr) 13115mime3a|mime1 emulating 3a, 13116 am@, 13117 kcub1=^H, kcud1=^K, kcuf1=^X, kcuu1=^Z, use=adm3a, 13118mime3ax|mime-3ax|mime1 emulating enhanced 3a, 13119 it#8, 13120 dl1=\027$<80>, ed=^_, el=^X, ht=\011$<3>, il1=\001$<80>, 13121 use=mime3a, 13122# Wed Mar 9 18:53:21 1983 13123# We run our terminals at 2400 baud, so there might be some timing problems at 13124# higher speeds. The major improvements in this model are the terminal now 13125# scrolls down and insert mode works without redrawing the rest of the line 13126# to the right of the cursor. This is done with a bit of a kludge using the 13127# exit graphics mode to get out of insert, but it does not appear to hurt 13128# anything when using vi at least. If you have some users using act4s with 13129# programs that use curses and graphics mode this could be a problem. 13130mime314|mm314|mime 314, 13131 am, 13132 cols#80, lines#24, 13133 clear=^L, cub1=^H, cuf1=^X, cup=\024%p1%c%p2%c, cuu1=^Z, 13134 dch1=^D, dl1=^W, ed=^_, el=^^, home=^], ht=^I, il1=^A, kcub1=^H, 13135 kcud1=^K, kcuf1=^X, kcuu1=^Z, rmir=^V, smir=^S, 13136# Microterm mime 340 from University of Wisconsin 13137mm340|mime340|mime 340, 13138 cols#80, lines#24, 13139 clear=\032$<12/>, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 13140 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, 13141 dch1=\E#$<2.1*/>, dl1=\EV$<49.6/>, ed=\037$<2*/>, 13142 el=\EL$<2.1/>, ht=^I, il1=\EU$<46/>, ind=^J, is2=\E\,, 13143 kbs=^H, kcub1=^H, kcud1=^J, kcuu1=^K, nel=^M^J, 13144# This came from University of Wisconsin marked "astro termcap for jooss". 13145# (mt4520-rv: removed obsolete ":kn#4:" and incorrect ":ri=\E[C:"; 13146# also added <rmam>/<smam> based on the init string -- esr) 13147mt4520-rv|micro-term 4520 reverse video, 13148 am, hs, msgr, xenl, xon, 13149 cols#80, it#8, lines#24, wsl#80, 13150 bel=^G, clear=\E[H\E[J, cnorm=\E[0V\E8, cr=^M, 13151 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=\E[D, 13152 cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, 13153 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 13154 cvvis=\E7\E[0U, dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, 13155 dl1=\E[M, ed=\E[J, el=\E[K, flash=\E[?5l$<200/>\E[?5h, 13156 fsl=\E[?5l\E[?5h, home=\E[H, ht=^I, hts=\EH, ich=\E[%p1%d@, 13157 ich1=\E[@, il=\E[%p1%dL, il1=\E[L, ind=\ED, 13158 is2=\E(B\E[2l\E>\E[20l\E[?3l\E[?5h\E[?7h\E[1;24r\E[24;1H\E[H\E[J, 13159 kbs=^H, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 13160 kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, khome=\E[H, 13161 ll=\E[24;1H, nel=\EE, rc=\E8, rf=/usr/share/tabset/vt100, 13162 ri=\EM, rmam=\E[?7l, rmso=\E[0m, rmul=\E[24m, 13163 rs1=\E(B\E[2l\E>\E[20l\E[?3l\E[?5h\E[?7h\E[H\E[J, 13164 sc=\E7, sgr0=\E[m, smam=\E[?7h, smso=\E[7m, smul=\E[4m, 13165 tbc=\E[g, tsl=\E[25;1H, 13166 13167# Fri Aug 5 08:11:57 1983 13168# This entry works for the ergo 4000 with the following setups: 13169# ansi,wraparound,newline disabled, xon/xoff disabled in both 13170# setup a & c. 13171# 13172# WARNING!!! There are multiple versions of ERGO 4000 microcode 13173# Be advised that very early versions DO NOT WORK RIGHT !! 13174# Microterm does have a ROM exchange program- use it or lose big 13175# (ergo400: added <rmam>/<smam> based on the init string -- esr) 13176ergo4000|microterm ergo 4000, 13177 da, db, msgr, 13178 cols#80, lines#66, 13179 bel=^G, clear=\E[H\E[2J$<80>, cr=^M, cub1=^H, cud1=\E[B, 13180 cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, 13181 dch1=\E[1P$<80>, dl1=\E[1M$<5*>, ed=\E[0J$<15>, 13182 el=\E[0K$<13>, ht=^I, il1=\E[1L$<5*>, ind=\ED$<20*>, 13183 is2=\E<\E=\E[?1l\E[?4l\E[?5l\E[?7h\E[?8h$<300>, 13184 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kf1=\EOP, 13185 kf2=\EOQ, kf3=\EOR, kf4=\EOS, lf1=pf1, lf2=pf2, lf3=pf3, 13186 lf4=pf4, ri=\EM$<20*>, rmam=\E[?7l, rmir=\E[4l, 13187 rmkx=\E=$<4>, rmso=\E[m$<20>, sgr0=\E[m$<20>, 13188 smam=\E[?7m, smir=\E[4h$<6>, smkx=\E=$<4>, 13189 smso=\E[7m$<20>, 13190 13191#### NCR 13192# 13193# NCR's terminal group was merged with AT&T's when AT&T bought the company. 13194# For what happened to that group, see the ADDS section. 13195# 13196# There is an NCR4103 terminal that's just a re-badged Wyse-50. 13197# 13198 13199# The following vendor-supplied termcaps were captured from the Boundless 13200# Technologies site, 8 March 1998. I removed all-upper-case names that were 13201# identical, except for case, to lower-case ones. I also uncommented the acsc 13202# capabilities.X 13203# 13204# The Intecolor emulation of the NCR 2900/260C color terminal is basically a 13205# DEC vt200/300 with color capabilities added. 13206ncr260intan|NCR Intecolor emulation of the 2900_260C with an ANSI keyboard, 13207 colors#8, pairs#64, 13208 op=\E[0m, setab=\E[4%p1%dm, setaf=\E[3%p1%dm, 13209 use=ncr260vt300an, 13210# The Intecolor emulation of the NCR 2900/260C color terminal is basically a 13211# DEC vt200/300 with color capabilities added. 13212ncr260intwan|NCR Intecolor emulation of the 2900_260C with an ANSI keyboard, 13213 colors#8, pairs#64, 13214 op=\E[0m, setab=\E[4%p1%dm, setaf=\E[3%p1%dm, 13215 use=ncr260vt300wan, 13216# The Intecolor emulation of the NCR 2900/260C color terminal is basically a 13217# DEC vt200/300 with color capabilities added. 13218ncr260intpp|NCR Intecolor emulation of the 2900_260C with a PC+ keyboard, 13219 colors#8, pairs#64, 13220 op=\E[0m, setab=\E[4%p1%dm, setaf=\E[3%p1%dm, 13221 use=ncr260vt300pp, 13222# The Intecolor emulation of the NCR 2900/260C color terminal is basicly a 13223# DEC vt200/300 with color capabilities added. 13224ncr260intwpp|NCR Intecolor emulation of the 2900_260C with a PC+ keyboard in 132 column mode, 13225 colors#8, pairs#64, 13226 op=\E[0m, setab=\E[4%p1%dm, setaf=\E[3%p1%dm, 13227 use=ncr260vt300wpp, 13228# This definition for ViewPoint supports several attributes. This means 13229# that it has magic cookies (extra spaces where the attributes begin). 13230# Some applications do not function well with magic cookies. The System 13231# Administrator's Shell in NCR Unix SVR4 1.03 is one such application. 13232# If supporting various attributes is not vital, 'xmc#1' and the extra 13233# attributes can be removed. 13234# Mapping to ASCII character set ('acsc' capability) can also be 13235# restored if needed. 13236ncr260vppp|NCR 2900_260 viewpoint, 13237 am, bw, hs, km, mc5i, mir, msgr, xon, 13238 cols#80, lines#24, nlab#32, xmc#1, 13239 acsc=07a?h;j5k3l2m1n8q\:t4u9v=w0x6, bel=^G, blink=\EG2, 13240 cbt=\EI, civis=\E`0, clear=\014$<40>, cnorm=\E`5, 13241 cr=\r$<2>, cub1=\010$<2>, cud1=\n$<2>, cuf1=\006$<2>, 13242 cup=\EY%p1%{32}%+%c%p2%{32}%+%c$<5>, cuu1=\032$<2>, 13243 cvvis=\E`5, dch1=\EW$<2>, dim=\EGp, dl1=\El$<2>, dsl=\E`c, 13244 ed=\Ek$<2>, el=\EK$<2>, fsl=^M, home=\036$<2>, ht=^I, 13245 hts=\E1, il1=\EM$<2>, ind=\n$<2>, invis=\EG1, 13246 is2=\Ee6\E~%$<100>\E+\E`\:\Ed/\E`1\EO\Ee4\Ec@0@\Ec@1A\EcB0\EcC1\Ee7$<100>, 13247 kDC=\El, kEND=\Ek, kHOM=^A, kPRT=\E7, kRIT=^F, ka1=^A, ka3=\EJ, 13248 kbs=^H, kc1=\ET, kc3=\EJ, kcub1=^U, kcud1=^J, kcuf1=^F, 13249 kcuu1=^Z, kdch1=\EW, kend=\EK, kf1=^B1\r, kf10=^B\:\r, 13250 kf11=^B;\r, kf12=^B<\r, kf13=^B=\r, kf14=^B>\r, kf15=^B?\r, 13251 kf16=^B@\r, kf17=^B!\r, kf18=^B"\r, kf19=^B#\r, kf2=^B2\r, 13252 kf20=^B$\r, kf21=\002%^M, kf22=^B&\r, kf23=^B'\r, 13253 kf24=^B(\r, kf25=^B)\r, kf26=^B*\r, kf27=^B+\r, 13254 kf28=^B\,\r, kf29=^B-\r, kf3=^B3\r, kf30=^B.\r, kf31=^B/\r, 13255 kf32=^B0\r, kf4=^B4\r, kf5=^B5\r, kf6=^B6\r, kf7=^B7\r, 13256 kf8=^B8\r, kf9=^B9\r, khome=^A, kich1=\Eq, knp=\EJ, kpp=\EJ, 13257 kprt=\EP, ll=\001$<5>, mc0=\EP$<100>, mc4=^T, mc5=^R, 13258 mrcup=\Ew@%p1%{48}%+%c%p2%{32}%+%c%p3%{32}%+%c$<5>, 13259 nel=\037$<2>, rev=\EG4, ri=\Ej$<2>, rmacs=\EcB0\EH\003, 13260 rmir=\Er, rmso=\EG0, rmul=\EG0, rmxon=\Ec20, 13261 rs2=\Ee6\E~%$<100>\E+\E`\:\Ed/\E`1\EO\Ee4\Ec@0@\Ec@1A\EcB0\EcC1\Ee7$<100>, 13262 sgr0=\EG0\EH\003, smacs=\EcB1\EH\002, smir=\Eq, 13263 smso=\EG4, smul=\EG8, smxon=\Ec21, tsl=\EF, 13264ncr260vpwpp|NCR 2900_260 viewpoint wide mode, 13265 cols#132, 13266 cup=\Ea%i%p1%dR%p2%dC$<30>, 13267 is2=\Ee6\E~%$<100>\E+\E`;\Ed/\E`1\EO\Ee4\Ec@0@\Ec@1A\EcB0\EcC1\Ee7$<100>, 13268 rs2=\Ee6\E~%$<100>\E+\E`;\Ed/\E`1\EO\Ee4\Ec@0@\Ec@1A\EcB0\EcC1\Ee7$<100>, 13269 use=ncr260vppp, 13270ncr260vt100an|NCR 2900_260 vt100 with ansi kybd, 13271 am, hs, mir, msgr, xenl, xon, 13272 cols#80, lines#24, nlab#32, 13273 acsc=``aaffggjjkkllmmnnooqqssttuuvvwwxx~~, bel=^G, 13274 blink=\E[5m, bold=\E[1m, civis=\E[?25l, 13275 clear=\E[2J\E[1;1H$<20>, cnorm=\E[?25h, cr=\r$<1>, 13276 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD$<5>, 13277 cub1=\E[D$<5>, cud=\E[%p1%dB$<5>, cud1=\E[B$<5>, 13278 cuf=\E[%p1%dC$<5>, cuf1=\E[C$<5>, 13279 cup=\E[%i%p1%d;%p2%dH$<10>, cuu=\E[%p1%dA$<5>, 13280 cuu1=\E[A$<5>, dch=\E[%p1%dP$<5>, dch1=\E[1P$<5>, 13281 dl=\E[%p1%dM$<5>, dl1=\E[M$<5>, dsl=\E[0$~\E[1$~, 13282 ech=\E[%p1%dX, ed=\E[0J$<5>, el=\E[0K$<3>, el1=\E[1K$<3>, 13283 fsl=\E[0$}, home=\E[H$<1>, hpa=\E[%p1%dG$<40>, ht=^I, 13284 hts=\EH, ich=\E[%p1%d@$<5>, il=\E[%p1%dL$<5>, 13285 il1=\E[L$<5>, ind=\ED$<5>, indn=\E[%p1%dE$<5>, 13286 invis=\E[8m, 13287 is2=\E[!p\E[?7;19;67h\E[?1;3;4l\E(B\E)0\017\E[2J\E[1;1H\E>$<200>, 13288 ka1=\EOw, ka3=\EOu, kb2=\EOy, kbs=^H, kc1=\EOq, kc3=\EOs, 13289 kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, 13290 kdch1=\E[3~, kent=\EOM, kf1=\EOP, kf2=\EOQ, kf3=\EOR, 13291 kf4=\EOS, kfnd=\E[1~, khlp=\E[28~, kich1=\E[2~, knp=\E[6~, 13292 kpp=\E[5~, krdo=\E[29~, kslt=\E[4~, nel=\EE$<5>, rc=\E8, 13293 rev=\E[7m, ri=\EM$<5>, rmacs=^O, rmir=\E[4l, 13294 rmkx=\E[?1l\E>, rmso=\E[0m, rmul=\E[0m, 13295 rs2=\E[!p\E[?7;19;67h\E[?1;3;4l\E(B\E)0\017\E[2J\E[1;1H\E>$<200>, 13296 sc=\E7, 13297 sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;$<20>, 13298 sgr0=\E[0m\017$<20>, smacs=^N, smir=\E[4h, 13299 smkx=\E[?1h\E=, smso=\E[1;7m, smul=\E[4m, tbc=\E[3g, 13300 tsl=\E[2$~\E[1$}, vpa=\E[%p1%dd$<40>, 13301ncr260vt100wan|NCR 2900_260 vt100 wide mode ansi kybd, 13302 cols#132, 13303 cup=\E[%i%p1%d;%p2%dH$<30>, 13304 is2=\E[!p\E[?3;7;19;67h\E[?1;4l\E(B\E)0\017\E[2J\E[1;1H\E>$<200>, 13305 rs2=\E[!p\E[?3;7;19;67h\E[?1;4l\E(B\E)0\017\E[2J\E[1;1H\E>$<200>, 13306 use=ncr260vt100an, 13307ncr260vt100pp|NCR 2900_260 vt100 with PC+ kybd, 13308 is2=\E[!p\E[?7;19;67h\E[?1;3;4l\E(B\E)0\017\E[2J\E[1;1H\E>$<200>, 13309 ka1=\E[H, ka3=\EOu, kb2=\E[V, kc3=\E[U, kcub1=\E[D, 13310 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[4~, 13311 kend=\E[5~, khome=\E[2~, kich1=\E[1~, knp=\E[6~, kpp=\E[3~, 13312 lf1=pf1, lf2=pf2, lf3=pf3, lf4=pf4, rmkx=\E>, 13313 rs2=\E[!p\E[?7;19;67h\E[?1;3;4l\E(B\E)0\017\E[2J\E[1;1H\E>$<200>, 13314 smkx=\E=, use=ncr260vt100an, 13315ncr260vt100wpp|NCR 2900_260 vt100 wide mode pc+ kybd, 13316 cols#132, 13317 cup=\E[%i%p1%d;%p2%dH$<30>, 13318 is2=\E[!p\E[?3;7;19;67h\E[?1;4l\E(B\E)0\017\E[2J\E[1;1H\E>$<200>, 13319 rs2=\E[!p\E[?3;7;19;67h\E[?1;4l\E(B\E)0\017\E[2J\E[1;1H\E>$<200>, 13320 use=ncr260vt100pp, 13321ncr260vt200an|NCR 2900_260 vt200 with ansi kybd, 13322 am, hs, mir, msgr, xenl, xon, 13323 cols#80, lines#24, nlab#32, 13324 acsc=``aaffggjjkkllmmnnooqqssttuuvvwwxx~~, bel=^G, 13325 blink=\E[5m, bold=\E[1m, civis=\E[?25l, 13326 clear=\E[2J\E[1;1H$<20>, cnorm=\E[?25h, cr=\r$<1>, 13327 csr=\E[%i%p1%d;%p2%dr$<5>, cub=\E[%p1%dD$<5>, 13328 cub1=\E[D$<5>, cud=\E[%p1%dB$<5>, cud1=\E[B$<5>, 13329 cuf=\E[%p1%dC$<5>, cuf1=\E[C$<5>, 13330 cup=\E[%i%p1%d;%p2%dH$<10>, cuu=\E[%p1%dA$<5>, 13331 cuu1=\E[A$<5>, dch=\E[%p1%dP$<5>, dch1=\E[1P$<5>, 13332 dl=\E[%p1%dM$<5>, dl1=\E[M$<5>, dsl=\E[0$~\E[1$~, 13333 ech=\E[%p1%dX$<5>, ed=\E[0J, el=\E[0K$<5>, el1=\E[1K$<5>, 13334 fsl=\E[0$}, home=\E[H, hpa=\E[%p1%dG$<40>, ht=^I, hts=\EH, 13335 ich=\E[%p1%d@$<5>, il=\E[%p1%dL$<5>, il1=\E[L$<5>, 13336 ind=\ED$<5>, indn=\E[%p1%dE$<5>, invis=\E[8m, 13337 is2=\E[!p\E[?7;19;67h\E[?1;3;4l\E(B\E)0\017\E[2J\E[1;1H\E>$<200>, 13338 ka1=\EOw, ka3=\EOu, kb2=\EOy, kbs=^H, kc1=\EOq, kc3=\EOs, 13339 kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, 13340 kdch1=\E[3~, kent=\EOM, kf0=\EOy, kf1=\EOP, kf10=\E[21~, 13341 kf11=\E[23~, kf12=\E[24~, kf13=\E[25~, kf14=\E[26~, 13342 kf15=\E[28~, kf16=\E[29~, kf17=\E[31~, kf18=\E[32~, 13343 kf19=\E[33~, kf2=\EOQ, kf20=\E[34~, kf21=\E[31~, 13344 kf22=\E[32~, kf23=\E[33~, kf24=\E[34~, kf25=\E[35~, 13345 kf26=\E[1~, kf27=\E[2~, kf28=\E[3~, kf29=\E[4~, kf3=\EOR, 13346 kf30=\E[5~, kf31=\E[6~, kf32=\E[7~, kf33=\E[8~, kf34=\E[9~, 13347 kf35=\E[10~, kf4=\EOS, kf5=\E[M, kf6=\E[17~, kf7=\E[18~, 13348 kf8=\E[19~, kf9=\E[20~, kfnd=\E[1~, khlp=\E[28~, 13349 kich1=\E[2~, knp=\E[6~, kpp=\E[5~, krdo=\E[29~, kslt=\E[4~, 13350 mc0=\E[i, mc4=\E[4i, mc5=\E[5i, nel=\EE, rc=\E8, rev=\E[7m, 13351 ri=\EM$<5>, rmacs=\017$<20>, rmam=\E[?7l, rmir=\E[4l, 13352 rmkx=\E[?1l\E>, rmso=\E[27m, rmul=\E[24m, 13353 rs2=\E[!p\E[?7;19;67h\E[?1;3;4l\E(B\E)0\017\E[2J\E[1;1H\E>$<200>, 13354 sc=\E7, 13355 sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;$<20>, 13356 sgr0=\E[0m\017$<20>, smacs=\016$<20>, smam=\E[?7h, 13357 smir=\E[4h, smkx=\E[?1h\E=, smso=\E[7m, smul=\E[4m, 13358 tbc=\E[3g, tsl=\E[2$~\E[1$}, vpa=\E[%p1%dd$<40>, 13359ncr260vt200wan|NCR 2900_260 vt200 wide mode ansi kybd, 13360 cols#132, 13361 cup=\E[%i%p1%d;%p2%dH$<30>, 13362 is2=\E[!p\E[?3;7;19;67h\E[?4l\E(B\E)0\017\E[2J\E[1;1H$<200>, 13363 rs2=\E[!p\E[?3;7;19;67h\E[?4l\E(B\E)0\017\E[2J\E[1;1H$<200>, 13364 use=ncr260vt200an, 13365ncr260vt200pp|NCR 2900_260 vt200 with pc+ kybd, 13366 ka1=\E[H, ka3=\EOu, kb2=\E[V, kc3=\E[U, kcub1=\E[D, 13367 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[4~, 13368 kend=\E[1~, khome=\E[H, kich1=\E[2~, knp=\E[6~, kpp=\E[5~, 13369 lf1=pf1, lf2=pf2, lf3=pf3, lf4=pf4, rmkx=\E>, smkx=\E=, 13370 use=ncr260vt200an, 13371ncr260vt200wpp|NCR 2900_260 vt200 wide mode pc+ kybd, 13372 cols#132, 13373 cup=\E[%i%p1%d;%p2%dH$<30>, 13374 is2=\E[!p\E[?3;7;19;67h\E[?1;4l\E(B\E)0\017\E[2J\E[1;1H\E>$<200>, 13375 rs2=\E[!p\E[?3;7;19;67h\E[?1;4l\E(B\E)0\017\E[2J\E[1;1H\E>$<200>, 13376 use=ncr260vt200pp, 13377ncr260vt300an|NCR 2900_260 vt300 with ansi kybd, 13378 am, hs, mir, msgr, xenl, xon, 13379 cols#80, lines#24, nlab#32, 13380 acsc=``aaffggjjkkllmmnnooqqssttuuvvwwxx~~, bel=^G, 13381 blink=\E[5m, bold=\E[1m, civis=\E[?25l, 13382 clear=\E[2J\E[1;1H$<20>, cnorm=\E[?25h, cr=\r$<1>, 13383 csr=\E[%i%p1%d;%p2%dr$<5>, cub=\E[%p1%dD$<5>, 13384 cub1=\E[D$<5>, cud=\E[%p1%dB$<5>, cud1=\E[B$<5>, 13385 cuf=\E[%p1%dC$<5>, cuf1=\E[C$<5>, 13386 cup=\E[%i%p1%d;%p2%dH$<10>, cuu=\E[%p1%dA$<5>, 13387 cuu1=\E[A$<5>, dch=\E[%p1%dP$<5>, dch1=\E[1P$<5>, 13388 dl=\E[%p1%dM$<5>, dl1=\E[M$<5>, dsl=\E[0$~\E[1$~, 13389 ech=\E[%p1%dX$<5>, ed=\E[0J, el=\E[0K$<5>, el1=\E[1K$<5>, 13390 fsl=\E[0$}, home=\E[H, hpa=\E[%p1%dG$<40>, ht=^I, hts=\EH, 13391 ich=\E[%p1%d@$<5>, il=\E[%p1%dL$<5>, il1=\E[L$<5>, 13392 ind=\ED$<5>, indn=\E[%p1%dE$<5>, invis=\E[8m, 13393 is2=\E[!p\E[?7;19;67h\E[?1;3;4l\E[1;0%w\E(B\E)0\017\E[2J\E[1;1H\E>$<200>, 13394 ka1=\EOw, ka3=\EOu, kb2=\EOy, kbs=^H, kc1=\EOq, kc3=\EOs, 13395 kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, 13396 kdch1=\E[3~, kent=\EOM, kf0=\EOy, kf1=\EOP, kf10=\E[21~, 13397 kf11=\E[23~, kf12=\E[24~, kf13=\E[25~, kf14=\E[26~, 13398 kf15=\E[28~, kf16=\E[29~, kf17=\E[31~, kf18=\E[32~, 13399 kf19=\E[33~, kf2=\EOQ, kf20=\E[34~, kf21=\E[31~, 13400 kf22=\E[32~, kf23=\E[33~, kf24=\E[34~, kf25=\E[35~, 13401 kf26=\E[1~, kf27=\E[2~, kf28=\E[3~, kf29=\E[4~, kf3=\EOR, 13402 kf30=\E[5~, kf31=\E[6~, kf32=\E[7~, kf33=\E[8~, kf34=\E[9~, 13403 kf35=\E[10~, kf4=\EOS, kf5=\E[M, kf6=\E[17~, kf7=\E[18~, 13404 kf8=\E[19~, kf9=\E[20~, kfnd=\E[1~, khlp=\E[28~, 13405 kich1=\E[2~, knp=\E[6~, kpp=\E[5~, krdo=\E[29~, kslt=\E[4~, 13406 mc0=\E[i, mc4=\E[4i, mc5=\E[5i, nel=\EE, rc=\E8, rev=\E[7m, 13407 ri=\EM$<5>, rmacs=\017$<20>, rmam=\E[?7l, rmir=\E[4l, 13408 rmkx=\E[?1l\E>, rmso=\E[27m, rmul=\E[24m, 13409 rs2=\E[!p\E[?7;19;67h\E[?1;3;4l\E[1;0%w\E(B\E)0\017\E[2J\E[1;1H\E>$<200>, 13410 sc=\E7, 13411 sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;$<20>, 13412 sgr0=\E[0m\017$<20>, smacs=\016$<20>, smam=\E[?7h, 13413 smir=\E[4h, smkx=\E[?1h\E=, smso=\E[7m, smul=\E[4m, 13414 tbc=\E[3g, tsl=\E[2$~\E[1$}, vpa=\E[%p1%dd$<40>, 13415ncr260vt300wan|NCR 2900_260 vt300 wide mode ansi kybd, 13416 cols#132, 13417 cup=\E[%i%p1%d;%p2%dH$<30>, 13418 is2=\E[!p\E[?3;7;19;67h\E[?4l\E[1;0%w\E(B\E)0\017\E[2J\E[1;1H$<200>, 13419 rs2=\E[!p\E[?3;7;19;67h\E[?4l\E[1;0%w\E(B\E)0\017\E[2J\E[1;1H$<200>, 13420 use=ncr260vt300an, 13421ncr260vt300pp|NCR 2900_260 vt300 with pc+ kybd, 13422 ka1=\E[H, ka3=\EOu, kb2=\E[V, kc3=\E[U, kcub1=\E[D, 13423 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[4~, 13424 kend=\E[1~, khome=\E[H, kich1=\E[2~, knp=\E[6~, kpp=\E[5~, 13425 lf1=pf1, lf2=pf2, lf3=pf3, lf4=pf4, rmkx=\E>, smkx=\E=, 13426 use=ncr260vt300an, 13427NCR260VT300WPP|ncr260vt300wpp|NCR 2900_260 vt300 wide mode pc+ kybd, 13428 cols#132, 13429 cup=\E[%i%p1%d;%p2%dH$<30>, 13430 is2=\E[!p\E[?3;7;19;67h\E[?1;4l\E[1;0%w\E(B\E)0\017\E[2J\E[1;1H\E>$<200>, 13431 rs2=\E[!p\E[?3;7;19;67h\E[?1;4l\E[1;0%w\E(B\E)0\017\E[2J\E[1;1H\E>$<200>, 13432 use=ncr260vt300pp, 13433# This terminfo file contains color capabilities for the Wyse325 emulation of 13434# the NCR 2900/260C color terminal. Because of the structure of the command 13435# (escape sequence) used to set color attributes, one of the fore/background 13436# colors must be preset to a given value. I have set the background color to 13437# black. The user can change this setup by altering the last section of the 13438# 'setf' definition. The escape sequence to set color attributes is 13439# ESC d y <foreground_color> <background_color> 1 13440# In addition, the background color can be changed through the desk accessories. 13441# The capablitiy 'op' sets colors to green on black (default combination). 13442# 13443# NOTE: The NCR Unix System Administrator's Shell will not function properly 13444# if the 'pairs' capability is defined. Un-Comment the 'pairs' 13445# capability and recompile if you wish to have it included. 13446# 13447ncr260wy325pp|NCR 2900_260 wyse 325, 13448 am, bw, hs, km, mc5i, mir, msgr, xon, 13449 colors#16, cols#80, lines#24, ncv#33, nlab#32, 13450 acsc=07a?h;j5k3l2m1n8q\:t4u9v=w0x6, bel=^G, blink=\EG2, 13451 cbt=\EI, civis=\E`0, clear=\E*$<10>, cnorm=\E`1, cr=^M, 13452 cub1=\010$<5>, cud1=\n$<5>, cuf1=\014$<5>, 13453 cup=\E=%p1%{32}%+%c%p2%{32}%+%c$<10>, cuu1=\013$<5>, 13454 cvvis=\E`5, dch1=\EW$<50>, dl1=\ER$<5>, dsl=\E`c, 13455 ed=\Ey$<5>, el=\Et$<5>, fsl=^M, home=\036$<5>, ht=^I, 13456 hts=\E1, il1=\EE$<5>, ind=\n$<5>, invis=\EG1, 13457 is2=\Ee6\Ed/\Ee1\Ed*\Er\EO\E`1\E`\:\E`@\E~!\E"\Ee4\Ex@\E`9\Ee7$<100>, 13458 kDC=\ER, kEND=\EY, kHOM=\E{, kNXT=\EK, kPRT=\E7, kPRV=\EJ, 13459 kRIT=^L, ka1=^^, kb2=\EJ, kbs=^H, kc1=\ET, kc3=\EK, kcbt=\EI, 13460 kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, kdch1=\EW, kend=\ET, 13461 kf1=^A@\r, kf10=^AI\r, kf11=^AJ\r, kf12=^AK\r, kf13=^AL\r, 13462 kf14=^AM\r, kf15=^AN\r, kf16=^AO\r, kf17=^A`\r, kf18=^Aa\r, 13463 kf19=^Ab\r, kf2=^AA\r, kf20=^Ac\r, kf21=^Ad\r, kf22=^Ae\r, 13464 kf23=^Af\r, kf24=^Ag\r, kf25=^Ah\r, kf26=^Ai\r, kf27=^Aj\r, 13465 kf28=^Ak\r, kf29=^Al\r, kf3=^AB\r, kf30=^Am\r, kf31=^An\r, 13466 kf32=^Ao\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, 13467 kf8=^AG\r, kf9=^AH\r, khome=^^, kich1=\Eq, knp=\EK, kpp=\EJ, 13468 kprt=\EP, mc0=\EP, mc4=^T, mc5=^R, 13469 mrcup=\Ew@%p1%{48}%+%c%p2%{32}%+%c%p3%{32}%+%c$<10>, 13470 nel=\037$<5>, rev=\EG4, ri=\Ej$<5>, rmacs=\EH\003\EcB0, 13471 rmam=\Ed., rmir=\Er, rmso=\EG0, rmul=\EG0, rmxon=\Ec20, 13472 rs2=\Ee6\Ed/\Ee1\Ed*\Er\EO\E`1\E`\:\E`@\E~!\E"\Ee4\Ex@\E`9\Ee7$<100>, 13473 setb=\s, 13474 setf=%?%p1%{0}%=%t%{49}%e%p1%{1}%=%t%{50}%e%p1%{2}%=%t%{51}%e%p1%{3}%=%t%{52}%e%p1%{4}%=%t%{53}%e%p1%{5}%=%t%{54}%e%p1%{6}%=%t%{55}%e%p1%{7}%=%t%{64}%e%p1%{8}%=%t%{57}%e%p1%{9}%=%t%{58}%e%p1%{10}%=%t%{59}%e%p1%{11}%=%t%{60}%e%p1%{12}%=%t%{61}%e%p1%{13}%=%t%{62}%e%p1%{14}%=%t%{63}%e%p1%{15}%=%t%{56}%;\Edy%c11$<100>, 13475 sgr0=\EG0\EcB0\EcD$<15>, smacs=\EH\002\EcB1, smam=\Ed/, 13476 smir=\Eq, smso=\EGt, smul=\EG8, smxon=\Ec21, tbc=\E0, 13477 tsl=\EF, 13478ncr260wy325wpp|NCR 2900_260 wyse 325 wide mode, 13479 cols#132, 13480 cup=\Ea%i%p1%dR%p2%dC$<30>, 13481 is2=\Ee6\Ed/\Ee1\Ed*\Er\EO\E`1\E`;\E`@\E~!\E"\Ee4\Ex@\E`9\Ee7$<100>, 13482 rs2=\Ee6\Ed/\Ee1\Ed*\Er\EO\E`1\E`;\E`@\E~!\E"\Ee4\Ex@\E`9\Ee7$<100>, 13483 use=ncr260wy325pp, 13484# This definition for Wyse 350 supports several attributes. This means 13485# that it has magic cookies (extra spaces where the attributes begin). 13486# Some applications do not function well with magic cookies. The System 13487# Administrator's Shell in NCR Unix SVR4 1.03 is one such application. 13488# If supporting various attributes is not vital, 'xmc#1' and the extra 13489# attributes can be removed. 13490# Mapping to ASCII character set ('acsc' capability) can also be 13491# restored if needed. 13492# In addition, color capabilities have been added to this file. The drawback, 13493# however, is that the background color has to be black. The foreground colors 13494# are numbered 0 through 15. 13495# 13496# NOTE: The NCR Unix System Administrator's Shell does not function properly 13497# with the 'pairs' capability defined as below. If you wish to 13498# have it included, Un-comment it and recompile (using 'tic'). 13499# 13500ncr260wy350pp|NCR 2900_260 wyse 350, 13501 am, bw, hs, km, mc5i, mir, msgr, xon, 13502 colors#16, cols#80, lines#24, ncv#33, nlab#32, xmc#1, 13503 acsc=07a?h;j5k3l2m1n8q\:t4u9v=w0x6, bel=^G, blink=\EG2, 13504 cbt=\EI, civis=\E`0, clear=\E+$<20>, cnorm=\E`1, cr=^M, 13505 cub1=\010$<5>, cud1=\n$<5>, cuf1=\014$<5>, 13506 cup=\E=%p1%{32}%+%c%p2%{32}%+%c$<40>, cuu1=\013$<5>, 13507 cvvis=\E`5, dch1=\EW$<50>, dim=\EGp, dl1=\ER$<5>, dsl=\E`c, 13508 ed=\Ey$<5>, el=\Et$<5>, fsl=^M, home=\036$<10>, ht=^I, 13509 hts=\E1, il1=\EE$<5>, ind=\n$<5>, invis=\EG1, 13510 is2=\Ee6\Ed/\Ee1\Ed*\Er\EO\E`1\E`\:\E`@\E~!\E"\Ee4\Ex@\E`9\Ee7$<100>, 13511 kDC=\ER, kEND=\EY, kHOM=\E{, kPRT=\E7, kRIT=^L, ka1=^^, kbs=^H, 13512 kc1=\ET, kc3=\EK, kcbt=\EI, kcub1=^H, kcud1=^J, kcuf1=^L, 13513 kcuu1=^K, kdch1=\EW, kend=\ET, kf1=^A@\r, kf10=^AI\r, 13514 kf11=^AJ\r, kf12=^AK\r, kf13=^AL\r, kf14=^AM\r, kf15=^AN\r, 13515 kf16=^AO\r, kf17=^A`\r, kf18=^Aa\r, kf19=^Ab\r, kf2=^AA\r, 13516 kf20=^Ac\r, kf21=^Ad\r, kf22=^Ae\r, kf23=^Af\r, kf24=^Ag\r, 13517 kf25=^Ah\r, kf26=^Ai\r, kf27=^Aj\r, kf28=^Ak\r, kf29=^Al\r, 13518 kf3=^AB\r, kf30=^Am\r, kf31=^An\r, kf32=^Ao\r, kf4=^AC\r, 13519 kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, 13520 khome=^^, kich1=\Eq, knp=\EK, kpp=\EJ, kprt=\EP, 13521 mc0=\EP$<10>, mc4=^T, mc5=^R, 13522 mrcup=\Ew@%p1%{48}%+%c%p2%{32}%+%c%p3%{32}%+%c$<20>, 13523 nel=\037$<5>, rev=\EG4, ri=\Ej$<5>, rmacs=\EH\003\EcB0, 13524 rmam=\Ed., rmir=\Er, rmso=\EG0, rmul=\EG0, rmxon=\Ec20, 13525 rs2=\Ee6\Ed/\Ee1\Ed*\Er\EO\E`1\E`\:\E`@\E~!\E"\Ee4\Ex@\E`9\Ee7$<100>, 13526 setb=\s, 13527 setf=%?%p1%{0}%=%t%{49}%e%p1%{1}%=%t%{50}%e%p1%{2}%=%t%{51}%e%p1%{3}%=%t%{52}%e%p1%{4}%=%t%{53}%e%p1%{5}%=%t%{54}%e%p1%{6}%=%t%{55}%e%p1%{7}%=%t%{102}%e%p1%{8}%=%t%{97}%e%p1%{9}%=%t%{98}%e%p1%{10}%=%t%{99}%e%p1%{11}%=%t%{101}%e%p1%{12}%=%t%{106}%e%p1%{13}%=%t%{110}%e%p1%{14}%=%t%{111}%e%p1%{15}%=%t%{56}%;\Em0%c$<100>, 13528 sgr0=\EG0\EH\003\EcD, smacs=\EH\002\EcB1, smam=\Ed/, 13529 smir=\Eq, smso=\EGt, smul=\EG8, smxon=\Ec21, tbc=\E0, 13530 tsl=\EF, 13531ncr260wy350wpp|NCR 2900_260 wyse 350 wide mode, 13532 cols#132, 13533 cup=\Ea%i%p1%dR%p2%dC$<30>, 13534 is2=\Ee6\Ed/\Ee1\Ed*\Er\EO\E`1\E`;\E`@\E~!\E"\Ee4\Ex@\E`9\Ee7$<200>, 13535 rs2=\Ee6\Ed/\Ee1\Ed*\Er\EO\E`1\E`;\E`@\E~!\E"\Ee4\Ex@\E`9\Ee7$<200>, 13536 use=ncr260wy350pp, 13537# This definition for Wyse 50+ supports several attributes. This means 13538# that it has magic cookies (extra spaces where the attributes begin). 13539# Some applications do not function well with magic cookies. The System 13540# Administrator's Shell in NCR Unix SVR4 1.03 is one such application. 13541# If supporting various attributes is not vital, 'xmc#1' and the extra 13542# attributes can be removed. 13543# Mapping to ASCII character set ('acsc' capability) can also be 13544# restored if needed. 13545# (ncr260wy50+pp: originally contained commented-out 13546# <acsc=j5k3l2m1n8q:t4u9v=w0x6>, as well as the commented-out one there -- esr) 13547ncr260wy50+pp|NCR 2900_260 wyse 50+, 13548 am, bw, hs, km, mc5i, mir, msgr, xon, 13549 cols#80, lines#24, nlab#32, xmc#1, 13550 acsc=0wa_h[jukslrmqnxqzttuyv]wpxv, bel=^G, blink=\EG2, 13551 cbt=\EI$<5>, civis=\E`0, clear=\E+$<20>, cnorm=\E`1, cr=^M, 13552 cub1=\010$<5>, cud1=\n$<5>, cuf1=\014$<5>, 13553 cup=\E=%p1%{32}%+%c%p2%{32}%+%c$<30>, cuu1=\013$<5>, 13554 cvvis=\E`5, dch1=\EW$<50>, dim=\EGp, dl1=\ER$<5>, dsl=\E`c, 13555 ed=\EY$<5>, el=\ET$<5>, fsl=^M, home=\036$<10>, 13556 ht=\011$<5>, hts=\E1$<5>, il1=\EE$<5>, ind=\n$<5>, 13557 invis=\EG1, 13558 is2=\Ee6\E~"$<100>\E+\Ed/\Ee1\Ed*\Er\EO\E`1\E`\:\E`@\E~!\E"\Ee4\Ex@\E`9\Ee7$<100>, 13559 kDC=\ER, kEND=\EY, kHOM=\E{, kPRT=\E7, kRIT=^L, ka1=^^, kbs=^H, 13560 kc1=\ET, kc3=\EK, kcbt=\EI, kcub1=^H, kcud1=^J, kcuf1=^L, 13561 kcuu1=^K, kdch1=\EW, kend=\ET, kf1=^A@\r, kf10=^AI\r, 13562 kf11=^AJ\r, kf12=^AK\r, kf13=^AL\r, kf14=^AM\r, kf15=^AN\r, 13563 kf16=^AO\r, kf17=^A`\r, kf18=^Aa\r, kf19=^Ab\r, kf2=^AA\r, 13564 kf20=^Ac\r, kf21=^Ad\r, kf22=^Ae\r, kf23=^Af\r, kf24=^Ag\r, 13565 kf25=^Ah\r, kf26=^Ai\r, kf27=^Aj\r, kf28=^Ak\r, kf29=^Al\r, 13566 kf3=^AB\r, kf30=^Am\r, kf31=^An\r, kf32=^Ao\r, kf4=^AC\r, 13567 kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, 13568 khome=^^, kich1=\Eq, knp=\EK, kpp=\EJ, kprt=\EP, 13569 mc0=\EP$<10>, mc4=^T, mc5=^R, 13570 mrcup=\Ew@%p1%{48}%+%c%p2%{32}%+%c%p3%{32}%+%c$<10>, 13571 nel=\037$<5>, rev=\EG4, ri=\Ej$<5>, rmacs=\EH^C, rmam=\Ed., 13572 rmir=\Er, rmso=\EG0, rmul=\EG0, rmxon=\Ec20, 13573 rs2=\Ee6\E~"$<100>\E+\Ed/\Ee1\Ed*\Er\EO\E`1\E`\:\E`@\E~!\E"\Ee4\Ex@\E`9\Ee7$<100>, 13574 sgr0=\EG0\EH\003$<15>, smacs=\EH^B, smam=\Ed/, smir=\Eq, 13575 smso=\EGt, smul=\EG8, smxon=\Ec21, tbc=\E0$<5>, tsl=\EF, 13576ncr260wy50+wpp|NCR 2900_260 wyse 50+ wide mode, 13577 cols#132, 13578 cup=\Ea%i%p1%dR%p2%dC$<30>, 13579 is2=\Ee6\E~"$<100>\E+\Ed/\Ee1\Ed*\Er\EO\E`1\E`;\E`@\E~!\E"\Ee4\Ex@\E`9\Ee7$<200>, 13580 rs2=\Ee6\E~"$<100>\E+\Ed/\Ee1\Ed*\Er\EO\E`1\E`;\E`@\E~!\E"\Ee4\Ex@\E`9\Ee7$<200>, 13581 use=ncr260wy50+pp, 13582ncr260wy60pp|NCR 2900_260 wyse 60, 13583 am, bw, hs, km, mc5i, mir, msgr, xon, 13584 cols#80, lines#24, nlab#32, 13585 acsc=07a?h;j5k3l2m1n8q\:t4u9v=w0x6, bel=^G, blink=\EG2, 13586 cbt=\EI$<15>, civis=\E`0, clear=\E*$<100>, cnorm=\E`1, 13587 cr=^M, cub1=\010$<5>, cud1=\n$<5>, cuf1=\014$<5>, 13588 cup=\E=%p1%{32}%+%c%p2%{32}%+%c$<10>, cuu1=\013$<5>, 13589 cvvis=\E`5, dch1=\EW$<50>, dl1=\ER$<5>, dsl=\E`c, 13590 ed=\Ey$<5>, el=\Et$<5>, fsl=^M, home=\036$<25>, 13591 ht=\011$<15>, hts=\E1$<15>, il1=\EE$<5>, ind=\n$<5>, 13592 invis=\EG1, 13593 is2=\Ee6\E~4$<100>\E+\Ed/\Ee1\Ed*\Er\EO\E`1\E`\:\E`@\E~!\E"\Ee4\Ex@\E`9\Ee7$<100>, 13594 kDC=\ER, kEND=\EY, kHOM=\E{, kNXT=\EK, kPRT=\E7, kPRV=\EJ, 13595 kRIT=^L, ka1=^^, kb2=\EJ, kbs=^H, kc1=\ET, kc3=\EK, 13596 kcbt=\EI$<15>, kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, 13597 kdch1=\EW, kend=\ET, kf1=^A@\r, kf10=^AI\r, kf11=^AJ\r, 13598 kf12=^AK\r, kf13=^AL\r, kf14=^AM\r, kf15=^AN\r, kf16=^AO\r, 13599 kf17=^A`\r, kf18=^Aa\r, kf19=^Ab\r, kf2=^AA\r, kf20=^Ac\r, 13600 kf21=^Ad\r, kf22=^Ae\r, kf23=^Af\r, kf24=^Ag\r, kf25=^Ah\r, 13601 kf26=^Ai\r, kf27=^Aj\r, kf28=^Ak\r, kf29=^Al\r, kf3=^AB\r, 13602 kf30=^Am\r, kf31=^An\r, kf32=^Ao\r, kf4=^AC\r, kf5=^AD\r, 13603 kf6=^AE\r, kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, khome=^^, 13604 kich1=\Eq, knp=\EK, kpp=\EJ, kprt=\EP, mc0=\EP, mc4=^T, mc5=^R, 13605 mrcup=\Ew@%p1%{48}%+%c%p2%{32}%+%c%p3%{32}%+%c$<30>, 13606 nel=\037$<5>, rev=\EG4, ri=\Ej$<5>, rmacs=\EH^C, rmam=\Ed., 13607 rmir=\Er, rmso=\EG0, rmul=\EG0, rmxon=\Ec20, 13608 rs2=\Ee6\E~4$<100>\E+\Ed/\Ee1\Ed*\Er\EO\E`1\E`\:\E`@\E~!\E"\Ee4\Ex@\E`9\Ee7$<100>, 13609 sgr0=\EG0\EcB0\EcD$<15>, smacs=\EH^B, smam=\Ed/, 13610 smir=\Eq, smso=\EGt, smul=\EG8, smxon=\Ec21, tbc=\E0$<15>, 13611 tsl=\EF, 13612ncr260wy60wpp|NCR 2900_260 wyse 60 wide mode, 13613 cols#132, 13614 cup=\Ea%i%p1%dR%p2%dC$<30>, 13615 is2=\Ee6\E~4$<100>\E+\Ed/\Ee1\Ed*\Er\EO\E`1\E`;\E`@\E~!\E"\Ee4\Ex@\E`9\Ee7$<100>, 13616 rs2=\Ee6\E~4$<100>\E+\Ed/\Ee1\Ed*\Er\EO\E`1\E`;\E`@\E~!\E"\Ee4\Ex@\E`9\Ee7$<100>, 13617 use=ncr260wy60pp, 13618ncr160vppp|NCR 2900_160 viewpoint, 13619 use=ncr260vppp, 13620ncr160vpwpp|NCR 2900_160 viewpoint wide mode, 13621 use=ncr260vpwpp, 13622ncr160vt100an|NCR 2900_160 vt100 with ansi kybd, 13623 use=ncr260vt100an, 13624ncr160vt100pp|NCR 2900_160 vt100 with PC+ kybd, 13625 use=ncr260vt100pp, 13626ncr160vt100wan|NCR 2900_160 vt100 wide mode ansi kybd, 13627 use=ncr260vt100wan, 13628ncr160vt100wpp|NCR 2900_160 vt100 wide mode pc+ kybd, 13629 use=ncr260vt100wpp, 13630ncr160vt200an|NCR 2900_160 vt200 with ansi kybd, 13631 use=ncr260vt200an, 13632ncr160vt200pp|NCR 2900_160 vt200 with pc+ kybd, 13633 use=ncr260vt200pp, 13634ncr160vt200wan|NCR 2900_160 vt200 wide mode ansi kybd, 13635 use=ncr260vt200wan, 13636ncr160vt200wpp|NCR 2900_160 vt200 wide mode pc+ kybd, 13637 use=ncr260vt200wpp, 13638ncr160vt300an|NCR 2900_160 vt300 with ansi kybd, 13639 use=ncr260vt300an, 13640ncr160vt300pp|NCR 2900_160 vt300 with pc+ kybd, 13641 use=ncr260vt300pp, 13642ncr160vt300wan|NCR 2900_160 vt300 wide mode ansi kybd, 13643 use=ncr260vt300wan, 13644ncr160vt300wpp|NCR 2900_160 vt300 wide mode pc+ kybd, 13645 use=ncr260vt300wpp, 13646ncr160wy50+pp|NCR 2900_160 wyse 50+, 13647 use=ncr260wy50+pp, 13648ncr160wy50+wpp|NCR 2900_160 wyse 50+ wide mode, 13649 use=ncr260wy50+wpp, 13650ncr160wy60pp|NCR 2900_160 wyse 60, 13651 use=ncr260wy60pp, 13652ncr160wy60wpp|NCR 2900_160 wyse 60 wide mode, 13653 use=ncr260wy60wpp, 13654ncrvt100an|ncrvt100pp|NCR vt100 for the 2900 terminal, 13655 am, hs, mc5i, mir, msgr, xon, 13656 cols#80, it#8, lines#24, nlab#32, 13657 acsc=``aaffgghhiijjkkllmmnnqqttuuvvwwxxyyzz~~, 13658 bel=^G, blink=\E[5m$<30>, bold=\E[1m$<30>, 13659 clear=\E[2J\E[1;1H$<300>, cr=^M, 13660 csr=\E[%i%p1%d;%p2%dr$<100>, cub=\E[%p1%dD$<30>, 13661 cub1=\E[D$<2>, cud=\E[%p1%dB$<30>, cud1=\E[B$<2>, 13662 cuf=\E[%p1%dC$<30>, cuf1=\E[C$<2>, 13663 cup=\E[%i%p1%d;%p2%dH$<100>, cuu=\E[%p1%dA$<30>, 13664 cuu1=\E[A$<2>, dch=\E[%p1%dP$<40>, dch1=\E[1P$<10>, 13665 dl=\E[%p1%dM$<70>, dl1=\E[M$<40>, dsl=\E[31l$<25>, 13666 ed=\E[0J$<300>, el=\E[0K$<30>, el1=\E[1K$<30>, 13667 enacs=\E(B\E)0$<40>, fsl=1$<10>, home=\E[H$<2>$<80>, 13668 ht=^I, hts=\EH, il=\E[%p1%dL$<80>, il1=\E[B\E[L$<80>, 13669 ind=\ED, 13670 is2=\E[12h\E[?10l\E%/0n\E[P\031\E[?3l\E(B\E)0$<200>, 13671 kLFT=\E[D, kRIT=\E[C, ka1=\E[H, kbs=^H, kcub1=\E[D, 13672 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kent=^M, kf1=\EOP, 13673 kf2=\EOQ, kf3=\EOR, kf4=\EOS, mc0=\E[i$<100>, nel=\EE, 13674 rc=\E8, rev=\E[7m$<30>, ri=\EM$<50>, rmacs=\017$<90>, 13675 rmir=\E[4l$<80>, rmso=\E[0m$<30>, rmul=\E[0m$<30>, 13676 rs2=\Ec\E[12;31h\E[?3;4;5;10l\E[?6;7;19;25h\E[33;34l\E[0m\E(B\E)0\E%/0n\E[P\031$<200>, 13677 sc=\E7, 13678 sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;$<100>, 13679 sgr0=\017\E[0m$<120>, smacs=\016$<90>, smir=\E[4h$<80>, 13680 smso=\E[7m$<30>, smul=\E[4m$<30>, tbc=\E[3g$<40>, 13681 tsl=\E[>+1$<70>, 13682ncrvt100wan|NCRVT100WPP|ncrvt100wpp|NCR VT100 emulation of the 2900 terminal, 13683 cols#132, 13684 is2=\E[12h\E[?10l\E%/0n\E[P\031\E[?3h\E(B\E)0$<200>, 13685 rs2=\Ec\E[12;31h\E[?4;5;10l\E?3;6;7;19;25h\E[33;34l\E[0m\E(B\E)0\E%/0n\E[P\031$<200>, 13686 use=ncrvt100an, 13687# 13688# Vendor-supplied NCR termcaps end here 13689 13690# NCR7900 DIP switches: 13691# 13692# Switch A: 13693# 1-4 - Baud Rate 13694# 5 - Parity (Odd/Even) 13695# 6 - Don't Send or Do Send Spaces 13696# 7 - Parity Enable 13697# 8 - Stop Bits (One/Two) 13698# 13699# Switch B: 13700# 1 - Upper/Lower Shift 13701# 2 - Typewriter Shift 13702# 3 - Half Duplex / Full Duplex 13703# 4 - Light/Dark Background 13704# 5-6 - Carriage Return Without / With Line Feed 13705# 7 - Extended Mode 13706# 8 - Suppress Keyboard Display 13707# 13708# Switch C: 13709# 1 - End of line entry disabled/enabled 13710# 2 - Conversational mode / (Local?) Mode 13711# 3 - Control characters displayed / not displayed 13712# 4 - (2-wire?) / 4-wire communications 13713# 5 - RTS on and off for each character 13714# 6 - (50Hz?) / 60 Hz 13715# 7 - Exit after level zero diagnostics 13716# 8 - RS-232 interface 13717# 13718# Switch D: 13719# 1 - Reverse Channel (yes / no) 13720# 2 - Manual answer (no / yes) 13721# 3-4 - Cursor appearance 13722# 5 - Communication Rate 13723# 6 - Enable / Disable EXT turnoff 13724# 7 - Enable / Disable CR turnoff 13725# 8 - Enable / Disable backspace 13726# 13727# Since each attribute parameter is 0 or 1, we shift each attribute (standout, 13728# reverse, blink, dim, and underline) the appropriate number of bits (by 13729# multiplying the 0 or 1 by a correct factor to shift) so the bias character, 13730# '@' is (effectively) "or"ed with each attribute to generate the proper third 13731# character in the <ESC>0 sequence. The <sgr> string implements the following 13732# equation: 13733# 13734# ((((('@' + P5) | (P4 << 1)) | (P3 << 3)) | (P2 << 4)) | (p1 * 17)) => 13735# ((((('@' + P5) + (P4 << 1)) + (P3 << 3)) + (P2 << 4)) + (p1 * 17)) 13736# 13737# Where: P1 <==> Standout attribute parameter 13738# P2 <==> Underline attribute parameter 13739# P3 <==> Reverse attribute parameter 13740# P4 <==> Blink attribute parameter 13741# P5 <==> Dim attribute parameter 13742# From <root@goliath.un.atlantaga.NCR.COM>, init string hacked by SCO. 13743ncr7900i|ncr7900|ncr 7900 model 1, 13744 am, bw, ul, 13745 cols#80, lines#24, xmc#1, 13746 bel=^G, blink=\E0B, clear=^L, cr=^M, cub1=^H, cud1=^J, cuf1=^F, 13747 cup=\E1%p2%c%p1%c, cuu1=^Z, dim=\E0A, ed=\Ek, el=\EK, ind=^J, 13748 is2=\E0@\010\E3\E4\E7, kcub1=^U, kcud1=^J, kcuf1=^F, 13749 kcuu1=^Z, khome=^A, ll=^A, mc4=^T, mc5=^R, rev=\E0P, rmso=\E0@, 13750 rmul=\E0@, 13751 sgr=\E0%p5%{64}%+%p4%{2}%*%+%p3%{16}%*%+%p2%{32}%*%+%p1%{17}%*%+%c, 13752 sgr0=\E0@, smso=\E0Q, smul=\E0`, 13753ncr7900iv|ncr 7900 model 4, 13754 am, bw, eslok, hs, 13755 cols#80, lines#24, 13756 bel=^G, clear=^L, cr=^M, cub1=^H, cud1=^J, 13757 cup=\013%p1%{64}%+%c\E\005%p2%02d, dl1=\E^O, dsl=\Ey1, 13758 fsl=\Ek\Ey5, home=\013@\E^E00, il1=\E^N, ind=^J, kbs=^H, 13759 kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, kf1=\ES, kf2=\ET, 13760 kf3=\EU, kf4=\EV, kf5=\EW, kf6=\EP, kf7=\EQ, kf8=\ER, 13761 khome=\EH, lf6=blue, lf7=red, lf8=white, nel=^M^J, 13762 tsl=\Ej\Ex5\Ex1\EY8%p1%{32}%+%c\Eo, 13763# Warning: This terminal will lock out the keyboard when it receives a CTRL-D. 13764# The user can enter a CTRL-B to get out of this locked state. 13765# In <hpa>, we want to output the character given by the formula: 13766# ((col / 10) * 16) + (col % 10) where "col" is "p1" 13767ncr7901|ncr 7901 model, 13768 am, bw, ul, 13769 cols#80, lines#24, 13770 bel=^G, blink=\E0B, civis=^W, clear=^L, cnorm=^X, cr=^M, 13771 cub1=^H, cud1=^J, cuf1=^F, 13772 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=^Z, dim=\E0A, 13773 ed=\Ek, el=\EK, 13774 hpa=\020%p1%{10}%/%{16}%*%p1%{10}%m%+%c, ind=^J, 13775 is2=\E4^O, kclr=^L, kcub1=^U, kcud1=^J, kcuf1=^F, kcuu1=^Z, 13776 khome=^H, ll=^A, mc4=^T, mc5=^R, rev=\E0P, rmso=^O, rmul=^O, 13777 sgr=\E0%p5%{64}%+%p4%{2}%*%+%p3%{16}%*%+%p2%{32}%*%+%p1%{17}%*%+%c\016, 13778 sgr0=^O, smso=\E0Q\016, smul=\E0`\016, 13779 vpa=\013%p1%{64}%+%c, 13780 13781#### Perkin-Elmer (Owl) 13782# 13783# These are official terminfo entries from within Perkin-Elmer. 13784# 13785 13786bantam|pe550|pe6100|perkin elmer 550, 13787 OTbs, 13788 cols#80, lines#24, 13789 bel=^G, clear=\EK$<20>, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 13790 cup=\EX%p1%{32}%+%c\EY%p2%{32}%+%c, cuu1=\EA, 13791 el=\EI$<20>, home=\EH, ind=^J, ll=\EH\EA, 13792fox|pe1100|perkin elmer 1100, 13793 OTbs, am, 13794 cols#80, lines#24, 13795 bel=^G, clear=\EH\EJ$<132>, cr=^M, cub1=^H, cud1=^J, 13796 cuf1=\EC, cup=\EX%p1%{32}%+%c\EY%p2%{32}%+%c, cuu1=\EA, 13797 ed=\EJ$<5.5*>, el=\EI, flash=\020\002$<200/>\020\003, 13798 home=\EH, hts=\E1, ind=^J, ll=\EH\EA, tbc=\E3, 13799owl|pe1200|perkin elmer 1200, 13800 OTbs, am, in, 13801 cols#80, lines#24, 13802 bel=^G, clear=\EH\EJ$<132>, cr=^M, cub1=^H, cud1=^J, 13803 cuf1=\EC, cup=\EX%p1%{32}%+%c\EY%p2%{32}%+%c, cuu1=\EA, 13804 dch1=\EO$<5.5*>, dl1=\EM$<5.5*>, ed=\EJ$<5.5*>, 13805 el=\EI$<5.5>, flash=\020\002$<200/>\020\003, home=\EH, 13806 hts=\E1, ich1=\EN, il1=\EL$<5.5*>, ind=^J, ip=$<5.5*>, 13807 kbs=^H, kf0=\ERJ, kf1=\ERA, kf2=\ERB, kf3=\ERC, kf4=\ERD, 13808 kf5=\ERE, kf6=\ERF, kf7=\ERG, kf8=\ERH, kf9=\ERI, ll=\EH\EA, 13809 rmso=\E!\0, sgr0=\E!\0, smso=\E!^H, tbc=\E3, 13810pe1251|pe6300|pe6312|perkin elmer 1251, 13811 am, 13812 cols#80, it#8, lines#24, pb#300, vt#8, xmc#1, 13813 bel=^G, clear=\EK$<332>, cr=^M, cub1=\ED, cud1=\EB, cuf1=\EC, 13814 cup=\EX%p1%{32}%+%c\EY%p2%{32}%+%c, cuu1=\EA, 13815 ed=\EJ$<20*>, el=\EI$<10*>, home=\EH, hts=\E1, ind=^J, 13816 kf0=\ERA, kf1=\ERB, kf10=\ERK, kf2=\ERC, kf3=\ERD, kf4=\ERE, 13817 kf5=\ERF, kf6=\ERG, kf7=\ERH, kf8=\ERI, kf9=\ERJ, tbc=\E3, 13818# (pe7000m: this had 13819# rmul=\E!\0, smul=\E!\040, 13820# which is probably wrong, it collides with kf0 13821pe7000m|perkin elmer 7000 series monochrome monitor, 13822 am, 13823 cols#80, lines#24, 13824 bel=^G, cbt=\E!Y, clear=\EK, cr=^M, cub1=\ED, cud1=\EB, 13825 cuf1=\EC, cup=\ES%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, 13826 ed=\EJ, el=\EI, home=\EH, ind=^J, 13827 is1=\E!\0\EW 7o\Egf\ES7\s, kbs=^H, kcub1=\E!V, 13828 kcud1=\E!U, kcuf1=\E!W, kcuu1=\E!T, kf0=\E!\0, kf1=\E!^A, 13829 kf10=\E!^J, kf2=\E!^B, kf3=\E!^C, kf4=\E!^D, kf5=\E!^E, 13830 kf6=\E!^F, kf7=\E!^G, kf8=\E!^H, kf9=\E!^I, khome=\E!S, 13831 ll=\ES7\s, ri=\ER, 13832pe7000c|perkin elmer 7000 series colour monitor, 13833 is1=\E!\0\EW 7o\Egf\Eb0\Ec7\ES7\s, rmso=\Eb0, 13834 rmul=\E!\0, smso=\Eb2, smul=\E!\s, use=pe7000m, 13835 13836#### Sperry Univac 13837# 13838# Sperry Univac has merged with Burroughs to form Unisys. 13839# 13840 13841# This entry is for the Sperry UTS30 terminal running the TTY 13842# utility under control of CP/M Plus 1R1. The functionality 13843# provided is comparable to the DEC vt100. 13844# (uts30: I added <rmam>/<smam> based on the init string -- esr) 13845uts30|sperry uts30 with cp/m@1R1, 13846 am, bw, hs, 13847 cols#80, lines#24, wsl#40, 13848 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 13849 bel=^G, blink=\E[5m, bold=\E[1m, civis=\ER, clear=^L, 13850 cnorm=\ES, cr=^M, csr=\EU%p1%{32}%+%c%p2%{32}%+%c, 13851 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=\EB, 13852 cuf=\E[%p1%dC, cuf1=\EC, cup=\E[%i%p1%d;%p2%dH, 13853 cuu=\E[%p1%dA, cuu1=\E[A, dch=\E[%p1%dP, dch1=\EM, 13854 dl=\E[%p1%dM, dl1=\EL, ed=\E[J, el=\E[K, fsl=^M, home=\E[H, 13855 ht=^I, ich=\E[%p1%d@, ich1=\EO, il=\E[%p1%dL, il1=\EN, 13856 ind=^J, indn=\E[%p1%dB, is2=\E[U 7\E[24;1H, kbs=^H, 13857 kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, khome=\E[H, 13858 rc=\EX, rev=\E[7m, rf=/usr/share/tabset/vt100, ri=\EI, 13859 rin=\E[%p1%dA, rmacs=\Ed, rmam=\E[?7l, rmso=\E[m, 13860 rmul=\E[m, rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, 13861 sc=\EW, sgr0=\E[m, smacs=\EF, smam=\E[?7m, smso=\E[7m, 13862 smul=\E[4m, tsl=\E], uc=\EPB, 13863 13864#### Tandem 13865# 13866# Tandem builds these things for use with its line of fault-tolerant 13867# transaction-processing computers. They aren't generally available 13868# on the merchant market, and so are fairly uncommon. 13869# 13870 13871tandem6510|adm3a repackaged by Tandem, 13872 use=adm3a, 13873 13874# A funny series of terminal that TANDEM uses. The actual model numbers 13875# have a fourth digit after 653 that designates minor variants. These are 13876# natively block-mode and rather ugly, but they have a character mode which 13877# this doubtless(?) exploits. There is a 6520 that is slightly dumber. 13878# (tandem653: had ":sb=\ES:", probably someone's mistake for sf; also, 13879# removed <if=/usr/share/tabset/tandem653>, no such file -- esr) 13880tandem653|t653x|Tandem 653x multipage terminal, 13881 OTbs, am, da, db, hs, 13882 cols#80, lines#24, wsl#64, xmc#1, 13883 clear=\EI, cub1=^H, cud1=^J, cuf1=\EC, 13884 cup=\023%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, dsl=\Eo\r, 13885 ed=\EJ, el=\EK, fsl=^M, home=\EH, ind=\ES, ri=\ET, rmso=\E6\s, 13886 rmul=\E6\s, sgr0=\E6\s, smso=\E6$, smul=\E60, tsl=\Eo, 13887 13888#### Tandy/Radio Shack 13889# 13890# Tandy has a line of VDTs distinct from its microcomputers. 13891# 13892 13893dmterm|deskmate terminal, 13894 am, bw, 13895 cols#80, lines#24, 13896 bel=^G, civis=\EG5, clear=\Ej, cnorm=\EG6, cr=^M, cub1=^H, 13897 cud1=\EB, cuf1=\EC, cup=\EY%p1%{32}%+%c%p2%{32}%+%c, 13898 cuu1=\EA, dch1=\ES, dl1=\ER, ed=\EJ, el=\EK, home=\EH, ht=^I, 13899 ich1=\EQ, il1=\EP, ind=\EX, invis@, kcub1=\ED, kcud1=\EB, 13900 kcuf1=\EC, kcuu1=\EA, kf0=\E1, kf1=\E2, kf2=\E3, kf3=\E4, 13901 kf4=\E5, kf5=\E6, kf6=\E7, kf7=\E8, kf8=\E9, kf9=\E0, 13902 khome=\EH, lf0=f1, lf1=f2, lf2=f3, lf3=f4, lf4=f5, lf5=f6, 13903 lf6=f7, lf7=f8, lf8=f9, lf9=f10, ll=\EE, rmul@, smul@, 13904 use=adm+sgr, 13905dt100|dt-100|Tandy DT-100 terminal, 13906 xon, 13907 cols#80, lines#24, xmc#1, 13908 acsc=jjkkllmmnnqqttuuvvwwxx, bel=^G, civis=\E[?25l, 13909 clear=\E[H\E[2J, cnorm=\E[?25h, cr=^M, 13910 csr=\E[%p1%2d;%p2%2dr, cub1=^H, cud1=\E[B, cuf1=\E[C, 13911 cup=\010\E[%i%p1%d;%p2%dH, cuu1=\E[A, dch1=\E[P, 13912 dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, ht=^I, ich1=\E[@, 13913 il1=\E[L, ind=^J, is2=\E[?3l\E)0\E(B, kcub1=\E[D, 13914 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kf1=\E[?3i, 13915 kf10=\E[?5i, kf2=\E[2i, kf3=\E[@, kf4=\E[M, kf5=\E[17~, 13916 kf6=\E[18~, kf7=\E[19~, kf8=\E[20~, kf9=\E[21~, khome=\E[H, 13917 knp=\E[29~, kpp=\E[28~, lf1=f1, lf2=f2, lf3=f3, lf4=f4, lf5=f5, 13918 lf6=f6, lf7=f7, lf8=f8, ri=\EM, rmacs=^O, rmso=\E[m, rmul=\E[m, 13919 sgr0=\E[m, smacs=^N, smso=\E[7m, smul=\E[4m, 13920dt100w|dt-100w|Tandy DT-100 terminal (wide mode), 13921 cols#132, use=dt100, 13922dt110|Tandy DT-110 emulating ansi, 13923 xon, 13924 cols#80, lines#24, 13925 acsc=jjkkllmmnnqqttuuvvwwxx, bel=^G, civis=\E[?25l, 13926 clear=\E[H\E[2J, cnorm=\E[?25h, cr=^M, 13927 csr=\E[%i%p1%d;%p2%dr, cub1=^H, cud1=\E[0B, cuf1=\E[C, 13928 cup=\010\E[%i%p1%d;%p2%dH, cuu1=\E[0A, dch1=\E[0P, 13929 dl1=\E[0M, ed=\E[0J, el=\E[0K, enacs=\E(B\E)0, home=\E[H, 13930 ht=^I, ich1=\E[0@, il1=\E[0L, ind=^J, is2=\E[?3l\E)0\E(B, 13931 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kend=\E[K, 13932 kf1=\E[1~, kf10=\E[10~, kf2=\E[2~, kf3=\E[3~, kf4=\E[4~, 13933 kf5=\E[5~, kf6=\E[6~, kf7=\E[7~, kf8=\E[8~, kf9=\E[9~, 13934 khome=\E[G, kich1=\E[@, knp=\E[26~, kpp=\E[25~, lf0=f1, 13935 lf1=f2, lf2=f3, lf3=f4, lf4=f5, lf5=f6, lf6=f7, lf7=f8, lf8=f9, 13936 lf9=f10, ri=\EM, rmacs=^O, rmso=\E[m, rmul=\E[m, sgr0=\E[m, 13937 smacs=^N, smso=\E[7m, smul=\E[4m, 13938pt210|TRS-80 PT-210 printing terminal, 13939 hc, os, 13940 cols#80, 13941 bel=^G, cr=^M, cud1=^J, ind=^J, 13942 13943#### Tektronix (tek) 13944# 13945# Tektronix tubes are graphics terminals. Most of them use modified 13946# oscilloscope technology incorporating a long-persistence green phosphor, 13947# and support vector graphics on a main screen with an attached "dialogue 13948# area" for interactive text. 13949# 13950 13951tek|tek4012|tektronix 4012, 13952 OTbs, os, 13953 cols#75, lines#35, 13954 bel=^G, clear=\E\014$<1000>, cr=^M, cub1=^H, cud1=^J, 13955 ff=\014$<1000>, is2=\E^O, 13956# (tek4013: added <acsc> to suppress tic warnings re <smacs>/<rmacs> --esr) 13957tek4013|tektronix 4013, 13958 acsc=, rmacs=\E^O, smacs=\E^N, use=tek4012, 13959tek4014|tektronix 4014, 13960 cols#81, lines#38, 13961 is2=\E\017\E9, use=tek4012, 13962# (tek4015: added <acsc> to suppress tic warnings re <smacs>/<rmacs> --esr) 13963tek4015|tektronix 4015, 13964 acsc=, rmacs=\E^O, smacs=\E^N, use=tek4014, 13965tek4014-sm|tektronix 4014 in small font, 13966 cols#121, lines#58, 13967 is2=\E\017\E\:, use=tek4014, 13968# (tek4015-sm: added <acsc> to suppress tic warnings re <smacs>/<rmacs> --esr) 13969tek4015-sm|tektronix 4015 in small font, 13970 acsc=, rmacs=\E^O, smacs=\E^N, use=tek4014-sm, 13971# Tektronix 4023 from Andrew Klossner <orca!andrew.tektronix@csnet-relay> 13972# 13973# You need to have "stty nl2" in effect. Some versions of tset(1) know 13974# how to set it for you. 13975# 13976# It's got the Magic Cookie problem around stand-out mode. If you can't 13977# live with Magic Cookie, remove the :so: and :se: fields and do without 13978# reverse video. If you like reverse video stand-out mode but don't want 13979# it to flash, change the letter 'H' to 'P' in the :so: field. 13980tek4023|tektronix 4023, 13981 OTbs, am, 13982 OTdN#4, cols#80, lines#24, vt#4, xmc#1, 13983 OTnl=^J, bel=^G, clear=\E\014$<4/>, cr=^M, cub1=^H, cud1=^J, 13984 cuf1=^I, cup=\034%p2%{32}%+%c%p1%{32}%+%c, kbs=^H, 13985 rmso=^_@, smso=^_P, 13986# It is recommended that you run the 4025 at 4800 baud or less; 13987# various bugs in the terminal appear at 9600. It wedges at the 13988# bottom of memory (try "cat /usr/dict/words"); ^S and ^Q typed 13989# on keyboard don't work. You have to hit BREAK twice to get 13990# one break at any speed - this is a documented feature. 13991# Can't use cursor motion because it's memory relative, and 13992# because it only works in the workspace, not the monitor. 13993# Same for home. Likewise, standout only works in the workspace. 13994# 13995# <el> was commented out since vi and rogue seem to work better 13996# simulating it with lots of spaces! 13997# 13998# <il1> and <il> had 145ms of padding, but that slowed down vi's ^U 13999# and didn't seem necessary. 14000# 14001tek4024|tek4025|tek4027|tektronix 4024/4025/4027, 14002 OTbs, am, da, db, 14003 cols#80, it#8, lines#34, lm#0, 14004 bel=^G, clear=\037era\r\n\n, cmdch=^_, cr=^M, 14005 cub=\037lef %p1%d\r, cub1=^H, cud=\037dow %p1%d\r, 14006 cud1=^F^J, cuf=\037rig %p1%d\r, cuf1=\037rig\r, 14007 cuu=\037up %p1%d\r, cuu1=^K, dch1=\037dch\r, 14008 dl=\037dli %p1%d\r\006, dl1=\037dli\r\006, 14009 ed=\037dli 50\r, ht=^I, ich1=\037ich\r \010, 14010 il=\037up\r\037ili %p1%d\r, il1=\037up\r\037ili\r, 14011 ind=^F^J, 14012 is2=!com 31\r\n\037sto 9 17 25 33 41 49 57 65 73\r, 14013 rmkx=\037lea p2\r\037lea p4\r\037lea p6\r\037lea p8\r\037lea f5\r, 14014 smkx=\037lea p4 /h/\r\037lea p8 /k/\r\037lea p6 / /\r\037lea p2 /j/\r\037lea f5 /H/\r, 14015tek4025-17|tek 4025 17 line window, 14016 lines#17, use=tek4025, 14017tek4025-17-ws|tek 4025 17 line window in workspace, 14018 is2=!com 31\r\n\037sto 9 17 25 33 41 49 57 65 73\r\037wor 17\r\037mon 17\r, 14019 rmcup=\037mon h\r, rmso=\037att s\r, smcup=\037wor h\r, 14020 smso=\037att e\r, use=tek4025-17, 14021tek4025-ex|tek4027-ex|tek 4025/4027 w/!, 14022 is2=\037com 33\r\n!sto 9 17 25 33 41 49 57 65 73\r, 14023 rmcup=\037com 33\r, smcup=!com 31\r, use=tek4025, 14024# Tektronix 4025a 14025# From: Doug Gwyn <gwyn@brl-smoke.ARPA> 14026# The following status modes are assumed for normal operation (replace the 14027# initial "!" by whatever the current command character is): 14028# !COM 29 # NOTE: changes command character to GS (^]) 14029# ^]DUP 14030# ^]ECH R 14031# ^]EOL 14032# ^]RSS T 14033# ^]SNO N 14034# ^]STO 9 17 25 33 41 49 57 65 73 14035# Other modes may be set according to communication requirements. 14036# If the command character is inadvertently changed, termcap can't restore it. 14037# Insert-character cannot be made to work on both top and bottom rows. 14038# Clear-to-end-of-display emulation via !DLI 988 is too grotty to use, alas. 14039# There also seems to be a problem with vertical motion, perhaps involving 14040# delete/insert-line, following a typed carriage return. This terminal sucks. 14041# Delays not specified; use "stty ixon -ixany" to enable DC3/DC1 flow control! 14042# (tek4025a: removed obsolete ":xx:". This may mean the tek4025a entry won't 14043# work any more. -- esr) 14044tek4025a|Tektronix 4025A, 14045 OTbs, OTpt, am, bw, da, db, xon, 14046 cols#80, it#8, lines#34, 14047 bel=^G, cbt=\035bac;, clear=\035era;\n\035rup;, cmdch=^], 14048 cr=^M, cub=\035lef %p1%d;, cub1=^H, cud=\035dow %p1%d;, 14049 cud1=^J, cuf=\035rig %p1%d;, cuf1=\035rig;, 14050 cuu=\035up %p1%d;, cuu1=^K, dch=\035dch %p1%d;, 14051 dch1=\035dch;, dl=\035dli %p1%d;, dl1=\035dli;, 14052 el=\035dch 80;, hpa=\r\035rig %p1%d;, ht=^I, 14053 il1=\013\035ili;, ind=^J, indn=\035dow %p1%d;, 14054 rs2=!com 29\035del 0\035rss t\035buf\035buf n\035cle\035dis\035dup\035ech r\035eol\035era g\035for n\035pad 203\035pad 209\035sno n\035sto 9 17 25 33 41 49 57 65 73\035wor 0;, 14055 tbc=\035sto;, 14056# From: cbosg!teklabs!davem Wed Sep 16 21:11:41 1981 14057# Here's the command file that I use to get rogue to work on the 4025. 14058# It should work with any program using the old curses (e.g. it better 14059# not try to scroll, or cursor addressing won't work. Also, you can't 14060# see the cursor.) 14061# (This "learns" the arrow keys for rogue. I have adapted it for termcap - mrh) 14062tek4025-cr|tek 4025 for curses and rogue, 14063 OTbs, am, 14064 cols#80, it#8, lines#33, 14065 clear=\037era;, cub1=^H, cud1=^F^J, cuf1=\037rig;, 14066 cup=\037jum%i%p1%d\,%p2%d;, cuu1=^K, ht=^I, ind=^F^J, 14067 is2=!com 31\r\n\037sto 9 17 25 33 41 49 57 65 73\r, 14068 rmcup=\037wor 0, smcup=\037wor 33h, 14069# next two lines commented out since curses only allows 128 chars, sigh. 14070# :ti=\037lea p1/b/\037lea p2/j/\037lea p3/n/\037lea p4/h/\037lea p5/ /\037lea p6/l/\037lea p7/y/\037lea p8/k/\037lea p9/u/\037lea p./f/\037lea pt/`era w/13\037lea p0/s/\037wor 33h:\ 14071# :te=\037lea p1\037lea p2\037lea p3\037lea p4\037lea pt\037lea p5\037lea p6\037lea p7\037lea p8\037lea p9/la/13\037lea p.\037lea p0\037wor 0: 14072tek4025ex|4025ex|4027ex|tek 4025 w/!, 14073 is2=\037com 33\r\n!sto 9\,17\,25\,33\,41\,49\,57\,65\,73\r, 14074 rmcup=\037com 33\r, smcup=!com 31\r, use=tek4025, 14075tek4105|tektronix 4105, 14076 OTbs, am, mir, msgr, ul, xenl, xt, 14077 cols#79, it#8, lines#29, 14078 acsc=, bel=^G, blink=\E[=3;<7m, bold=\E[=7;<4m, cbt=\E[Z, 14079 clear=\E[2J\E[H, cr=^M, cud1=\E[1B, cuf1=\E[1C, 14080 cup=\E[%i%p1%2d;%p2%2dH, cuu1=\E[1A, dch1=\E[1P, 14081 dim=\E[=1;<6m, dl1=\E[1M, ed=\E[J, el=\E[K, home=\E[H, ht=^I, 14082 il1=\E[1L, ind=\E[S, invis=\E[=6;<5, is1=\E%!1\E[m, 14083 is2=\E%!1\E[?6141\E[m, kbs=^H, kcub1=\E[1D, kcud1=\E[1B, 14084 kcuf1=\E[1C, kcuu1=\E[1A, rev=\E[=1;<3m, ri=\E[T, 14085 rmacs=\E[m, rmcup=, rmir=\E[4l, rmso=\E[=0;<1m, 14086 rmul=\E[=0;<1m, sgr0=\E[=0;<1m, smacs=\E[1m, 14087 smcup=\E%!1\E[?6l\E[2J, smir=\E[4h, smso=\E[=2;<3m, 14088 smul=\E[=5;<2m, tbc=\E[1g, 14089 14090# (tek4105-30: I added <rmam>/<smam> based on the init string -- esr) 14091tek4105-30|4015 emulating 30 line vt100, 14092 am, mir, msgr, xenl, xon, 14093 cols#80, it#8, lines#30, vt#3, 14094 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 14095 bel=^G, blink=\E[5m$<2>, bold=\E[1m$<2>, 14096 clear=\E[H\E[J$<50>, cr=^M, csr=\E[%i%p1%d;%p2%dr, 14097 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=^J, 14098 cuf=\E[%p1%dC, cuf1=\E[C$<2>, 14099 cup=\E[%i%p1%d;%p2%dH$<5>, cuu=\E[%p1%dA, 14100 cuu1=\E[A$<2>, ed=\E[J$<50>, el=\E[K$<3>, el1=\E[1K$<3>, 14101 enacs=\E(B\E)0, home=\E[H, ht=^I, hts=\EH, ind=^J, ka1=\EOq, 14102 ka3=\EOs, kb2=\EOr, kbs=^H, kc1=\EOp, kc3=\EOn, kcub1=\EOD, 14103 kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kent=\EOM, kf0=\EOy, 14104 kf1=\EOP, kf10=\EOx, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf5=\EOt, 14105 kf6=\EOu, kf7=\EOv, kf8=\EOl, kf9=\EOw, rc=\E8, 14106 rev=\E[7m$<2>, ri=\EM$<5>, rmacs=^O, rmam=\E[?7l, 14107 rmkx=\E[?1l\E>, rmso=\E[m$<2>, rmul=\E[m$<2>, 14108 rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sc=\E7, 14109 sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;, 14110 sgr0=\E[m\017$<2>, smacs=^N, smam=\E[?7h, smkx=\E[?1h\E=, 14111 smso=\E[1;7m$<2>, smul=\E[4m$<2>, tbc=\E[3g, 14112 14113# Tektronix 4105 from BRL 14114# The following setup modes are assumed for normal operation: 14115# CODE ansi CRLF no DABUFFER 141 14116# DAENABLE yes DALINES 30 DAMODE replace 14117# DAVISIBILITY yes ECHO no EDITMARGINS 1 30 14118# FLAGGING input INSERTREPLACE replace LFCR no 14119# ORIGINMODE relative PROMPTMODE no SELECTCHARSET G0 B 14120# SELECTCHARSET G1 0 TABS -2 14121# Other setup modes may be set for operator convenience or communication 14122# requirements; I recommend 14123# ACURSOR 1 0 AUTOREPEAT yes AUTOWRAP yes 14124# BYPASSCANCEL <LF> CURSORKEYMODE no DAINDEX 1 0 0 14125# EOFSTRING '' EOLSTRING <CR> EOMCHARS <CR> <NU> 14126# GAMODE overstrike GCURSOR 0 100 0 GSPEED 10 1 14127# IGNOREDEL no KEYEXCHAR <DL> NVDEFINE -53 "<NU>" 14128# PROMPTSTRING '' QUEUESIZE 2460 WINDOW 0 0 4095 3132 14129# XMTDELAY 0 14130# and factory color maps. After setting these modes, save them with NVSAVE. No 14131# delays are specified; use "stty ixon -ixany" to enable DC3/DC1 flow control! 14132# "IC" cannot be used in combination with "im" & "ei". 14133# "tek4105a" is just a guess: 14134tek4105a|Tektronix 4105, 14135 OTbs, OTpt, msgr, xon, 14136 OTkn#8, cols#80, it#8, lines#30, vt#3, 14137 acsc=, bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, 14138 civis=\E%!0\ETD00\E%!1, clear=\E[H\E[J, 14139 cnorm=\E%!0\ETD10\E%!1, cr=^M, csr=\E[%i%p1%d;%p2%dr, 14140 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=^J, 14141 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 14142 cuu=\E[%p1%dA, cuu1=\EM, cvvis=\E%!0\ETD70\E%!1, 14143 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, 14144 ech=\E[%p1%dX, ed=\E[J, el=\E[K, home=\E[H, ht=^I, hts=\EH, 14145 il=\E[%p1%dL, il1=\E[L, ind=^J, indn=\E[%p1%dS, is2=\E%!1, 14146 kbs=^H, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, 14147 kf0=\EOA, kf1=\EOB, kf2=\EOC, kf3=\EOD, kf4=\EOP, kf5=\EOQ, 14148 kf6=\EOR, kf7=\EOS, lf0=F1, lf1=F2, lf2=F3, lf3=F4, lf4=F5, 14149 lf5=F6, lf6=F8, ll=\E[30;H, nel=\EE, rc=\E8, rev=\E[7m, ri=\EM, 14150 rin=\E[%p1%dT, rmacs=^O, rmcup=\E%!0\ELBH=\E%!1, 14151 rmir=\E[4l, rmkx=\E[?1l\E>, rmso=\E[m, rmul=\E[m, 14152 rs2=\030\E%!0\EKC\E\014\EKR0\EKF0\ENM0\ELBH=\ETF8000010F40\ELI100\ELLA>\ELM0\EKE0\ENF1\EKS0\END0\E%!1\Ec\E[?3;5l\E[?7;8h\E[r\E[m\E>, 14153 sc=\E7, sgr0=\E[m, smacs=^N, smcup=\E[?6l, smir=\E[4h, 14154 smkx=\E[?1h\E=, smso=\E[7m, smul=\E[4m, tbc=\E[3g, 14155 14156# 14157# Tektronix 4106/4107/4109 from BRL 14158# The following setup modes are assumed for normal operation: 14159# CODE ansi COLUMNMODE 80 CRLF no 14160# DABUFFER 141 DAENABLE yes DALINES 32 14161# DAMODE replace DAVISIBILITY yes ECHO no 14162# EDITMARGINS 1 32 FLAGGING input INSERTREPLACE replace 14163# LFCR no LOCKKEYBOARD no ORIGINMODE relative 14164# PROMPTMODE no SELECTCHARSET G0 B SELECTCHARSET G1 0 14165# TABS -2 14166# Other setup modes may be set for operator convenience or communication 14167# requirements; I recommend 14168# ACURSOR 1 0 AUTOREPEAT yes AUTOWRAP yes 14169# BYPASSCANCEL <LF> CURSORKEYMODE no DAINDEX 1 0 0 14170# EOFSTRING '' EOLSTRING <CR> EOMCHARS <CR> <NU> 14171# GAMODE overstrike GCURSOR 0 100 0 GSPEED 9 3 14172# IGNOREDEL no KEYEXCHAR <DL> NVDEFINE -53 "<NU>" 14173# PROMPTSTRING '' QUEUESIZE 2620 WINDOW 0 0 4095 3132 14174# XMTDELAY 0 14175# and factory color maps. After setting these modes, save them with NVSAVE. No 14176# delays are specified; use "stty ixon -ixany" to enable DC3/DC1 flow control! 14177# "IC" cannot be used in combination with "im" & "ei". 14178tek4106brl|tek4107brl|tek4109brl|Tektronix 4106 4107 or 4109, 14179 msgr, xon, 14180 cols#80, it#8, lines#32, vt#3, 14181 acsc=, bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, 14182 civis=\E%!0\ETD00\E%!1, clear=\E[H\E[J, 14183 cnorm=\E%!0\ETD10\E%!1, cr=^M, csr=\E[%i%p1%d;%p2%dr, 14184 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=^J, 14185 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 14186 cuu=\E[%p1%dA, cuu1=\EM, cvvis=\E%!0\ETD70\E%!1, 14187 dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, 14188 ech=\E[%p1%dX, ed=\E[J, el=\E[K, home=\E[H, ht=^I, hts=\EH, 14189 il=\E[%p1%dL, il1=\E[L, ind=^J, indn=\E[%p1%dS, is2=\E%!1, 14190 kbs=^H, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, 14191 kf0=\EOA, kf1=\EOB, kf2=\EOC, kf3=\EOD, kf4=\EOP, kf5=\EOQ, 14192 kf6=\EOR, kf7=\EOS, lf0=F1, lf1=F2, lf2=F3, lf3=F4, lf4=F5, 14193 lf5=F6, lf6=F8, ll=\E[32;H, nel=\EE, rc=\E8, rev=\E[7m, ri=\EM, 14194 rin=\E[%p1%dT, rmacs=^O, rmcup=\E%!0\ELBH=\E%!1, 14195 rmir=\E[4l, rmkx=\E[?1l\E>, rmso=\E[m, rmul=\E[m, 14196 rs1=\030\E%!0\EKC\E\014\EKR0\EKF0\ENM0\ELBH=\ETF8000010F40\ELI100\ELLB0\ELM0\EKE0\ENF1\EKS0\END0\ERE0\E%!1\Ec\E[?3;5l\E[?7;8h\E[r\E[m\E>, 14197 sc=\E7, sgr0=\E[m, smacs=^N, smcup=\E[?6l, smir=\E[4h, 14198 smkx=\E[?1h\E=, smso=\E[7;42m, smul=\E[4m, tbc=\E[3g, 14199 14200tek4107|tek4109|tektronix terminals 4107 4109, 14201 OTbs, am, mir, msgr, ul, xenl, xt, 14202 cols#79, it#8, lines#29, 14203 bel=^G, blink=\E%!1\E[5m$<2>\E%!0, 14204 bold=\E%!1\E[1m$<2>\E%!0, clear=\ELZ, cnorm=\E%!0, cr=^M, 14205 cub1=^H, cud1=^J, cuf1=\EC, 14206 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, cvvis=\E%!3, 14207 dim=\E%!1\E[<0m$<2>\E%!0, ed=\EJ, el=\EK, ht=^I, ind=^J, 14208 kbs=^H, kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, 14209 rev=\E%!1\E[7m$<2>\E%0, ri=\EI, 14210 rmso=\E%!1\E[m$<2>\E%!0, rmul=\E%!1\E[m$<2>\E%!0, 14211 sgr=\E%%!1\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;m\E%%!0, 14212 sgr0=\E%!1\E[m$<2>\E%!0, smso=\E%!1\E[7;5m$<2>\E%!0, 14213 smul=\E%!1\E[4m$<2>\E%!0, 14214# Tektronix 4207 with sysline. In the ancestral termcap file this was 4107-s; 14215# see the note attached to tek4207. 14216tek4207-s|Tektronix 4207 with sysline but no memory, 14217 eslok, hs, 14218 dsl=\E7\E[?6l\E[2K\E[?6h\E8, fsl=\E[?6h\E8, 14219 is1=\E%!1\E[2;32r\E[132D\E[2g\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[J, 14220 is2=\E7\E[?6l\E[2K\E[?6h\E8, 14221 tsl=\E7\E[?6l\E[2K\E[;%i%df, use=tek4107, 14222 14223# The 4110 series may be a wonderful graphics series, but they make the 4025 14224# look good for screen editing. In the dialog area, you can't move the cursor 14225# off the bottom line. Out of the dialog area, ^K moves it up, but there 14226# is no way to scroll. 14227# 14228# Note that there is a floppy for free from Tek that makes the 14229# 4112 emulate the vt52 (use the vt52 termcap). There is also 14230# an expected enhancement that will use ANSI standard sequences. 14231# 14232# 4112 in non-dialog area pretending to scroll. It really wraps 14233# but vi is said to work (more or less) in this mode. 14234# 14235# 'vi' works reasonably well with this entry. 14236# 14237otek4112|o4112-nd|otek4113|otek4114|old tektronix 4110 series, 14238 am, 14239 cols#80, lines#34, 14240 bel=^G, clear=\E^L, cr=^M, cub1=^H, cud1=^J, cuu1=^K, ind=^J, 14241 rmcup=\EKA1\ELV1, smcup=\EKA0\ELV0\EMG0, 14242# The 4112 with the ANSI compatibility enhancement 14243tek4112|tek4114|tektronix 4110 series, 14244 OTbs, am, db, 14245 cols#80, lines#34, 14246 cbt=\E[Z, clear=\E[2J\E[0;0H, cub1=^H, cuf1=\E[C, 14247 cup=\E[%i%p1%d;%p2%dH, cuu1=\EM, dch1=\E[P, dl1=\E[M, 14248 ed=\E[0J, el=\E[0K, ich1=\E[@, il1=\E[L, 14249 ind=\E7\E[0;0H\E[M\E8, is2=\E3!1, ri=\E7\E[0;0H\E[L\E8, 14250 rmso=\E[m, rmul=\E[m, sgr0=\E[m, smso=\E[7m, smul=\E[4m, 14251tek4112-nd|4112 not in dialog area, 14252 OTns, 14253 cuu1=^K, use=tek4112, 14254tek4112-5|4112 in 5 line dialog area, 14255 lines#5, use=tek4112, 14256# (tek4113: this used to have "<cuf1=\LM1\s\LM0>", someone's mistake; 14257# removed "<smacs=\E^N>, <rmacs=\E^O>", which had been commented out in 8.3. 14258# Note, the !0 and !1 sequences in <rmcup>/<smcup>/<cnorm>/<civis> were 14259# previously \0410 and \0411 sequences...I don't *think* they were supposed 14260# to be 4-digit octal -- esr) 14261tek4113|tektronix 4113 color graphics with 5 line dialog area, 14262 OTbs, am, da, eo, 14263 cols#80, lines#5, 14264 clear=\ELZ, cub1=^H, cud1=^J, cuf1=\ELM1 \ELM0, 14265 flash=\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERB0, 14266 is2=\EKA1\ELL5\ELV0\ELV1, uc=\010\ELM1_\ELM0, 14267tek4113-34|tektronix 4113 color graphics with 34 line dialog area, 14268 lines#34, 14269 is2=\EKA1\ELLB2\ELV0\ELV1, use=tek4113, 14270# :ns: left off to allow vi visual mode. APL font (:as=\E^N:/:ae=\E^O:) not 14271# supported here. :uc: is slow, but looks nice. Suggest setenv MORE -up . 14272# :vb: needs enough delay to let you see the background color being toggled. 14273tek4113-nd|tektronix 4113 color graphics with no dialog area, 14274 OTbs, am, eo, 14275 cols#80, it#8, lines#34, 14276 clear=\E^L, cub1=^H, cud1=^J, cuf1=^I, cuu1=^K, 14277 cvvis=\ELZ\EKA0, 14278 flash=\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERB0, 14279 home=\ELF7l\177 @, ht=^I, is2=\ELZ\EKA0\ELF7l\177 @, 14280 ll=\ELF hl @, rmso=\EMT1, smso=\EMT2, uc=\010\EMG1_\EMG0, 14281# This entry is from Tek. Inc. (Brian Biehl) 14282# (tek4115: :bc: renamed to :le:, <rmam>/<smam> added based on init string -- esr) 14283otek4115|Tektronix 4115, 14284 OTbs, am, da, db, eo, 14285 cols#80, it#8, lines#34, 14286 cbt=\E[Z, clear=\E[H\E[2J, 14287 cnorm=\E%!0\ELBG8\E%!1\E[34;1H, cub1=\E[D, cud1=\E[B, 14288 cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, 14289 cvvis=\E%!0\ELBB2\E%!1, dch1=\E[P, dl1=\E[M, ed=\E[J, 14290 el=\E[K, home=\E[H, ht=^I, if=/usr/share/tabset/vt100, 14291 il1=\E[L, 14292 is2=\E%!0\E%\014\ELV0\EKA1\ELBB2\ENU@=\ELLB2\ELM0\ELV1\EKYA?\E%!1\E[<1l\E[?7h\E[?8h\E[34;1H\E[34B\E[m, 14293 kbs=^H, ri=\EM, rmam=\E[?7l, 14294 rmcup=\E%!0\ELBG8\E%!1\E[34;1H\E[J, rmir=\E[4l, 14295 rmkx=\E>, rmso=\E[m, rmul=\E[m, sgr0=\E[m, smam=\E[?7h, 14296 smcup=\E%!0\ELBB2\E%!1, smir=\E[4h, smkx=\E=, smso=\E[7m, 14297 smul=\E[4m, 14298tek4115|newer tektronix 4115 entry with more ANSI capabilities, 14299 am, xon, 14300 cols#80, lines#34, 14301 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, clear=\E[H\E[J, 14302 cr=^M, cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=^J, 14303 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 14304 cuu=\E[%p1%dA, cuu1=\E[A, dch1=\E[P, dl=\E[%p1%dM, 14305 dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, hpa=\E[%p1%{1}%+%dG, 14306 ht=^I, hts=\EH, ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, 14307 il1=\E[L, ind=^J, invis=\E[8m, kbs=^H, kcub1=\E[D, 14308 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, khome=\E[H, 14309 rep=%p1%c\E[%p2%{1}%-%db, rev=\E[7m, rmam=\E[?7l, 14310 rmso=\E[m, rmul=\E[m, 14311 sgr=\E[%?%p1%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p6%t1;%;m, 14312 sgr0=\E[m, smam=\E[?7h, smso=\E[7m, smul=\E[4m, tbc=\E[2g, 14313 vpa=\E[%p1%{1}%+%dd, 14314# The tek4125 emulates a vt100 incorrectly - the scrolling region 14315# command is ignored. The following entry replaces <csr> with the needed 14316# <il>, <il>, and <smir>; removes some cursor pad commands that the tek4125 14317# chokes on; and adds a lot of initialization for the tek dialog area. 14318# Note that this entry uses all 34 lines and sets the cursor color to green. 14319# Steve Jacobson 8/85 14320# (tek4125: there were two "\!"s in the is that I replaced with "\E!"; 14321# commented out, <smir>=\E1 because there's no <rmir> -- esr) 14322tek4125|tektronix 4125, 14323 lines#34, 14324 csr@, dl1=\E[1M, il1=\E[1L, 14325 is2=\E%\E!0\EQD1\EUX03\EKA\ELBB2\ELCE0\ELI100\ELJ2\ELLB2\ELM0\ELS1\ELX00\ELV1\E%\E!1\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, 14326 rc@, sc@, smkx=\E=, use=vt100, 14327 14328# From: <jcoker@ucbic> 14329# (tek4207: This was the termcap file's entry for the 4107/4207, but SCO 14330# supplied another, less capable 4107 entry. So we'll use that for 4107 and 14331# note that if jcoker wasn't confused you may be able to use this one. 14332# I merged in <msgr>,<ind>,<ri>,<invis>,<tbc> from a BRL entry -- esr) 14333tek4207|Tektronix 4207 graphics terminal with memory, 14334 am, bw, mir, msgr, ul, xenl, 14335 cols#80, it#8, lines#32, 14336 blink=\E[5m, bold=\E[1m, cbt=\E[Z, clear=\E[H\E[J$<156/>, 14337 cub1=^H, cud1=^J, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 14338 cuu1=\EM, dch1=\E[P$<4/>, dl1=\E[M$<3/>, ed=\E[J, 14339 el=\E[K$<5/>, home=\E[H, ht=^I, ich1=\E[@$<4/>, 14340 il1=\E[L$<3/>, ind=\E[S, invis=\E[=6;<5, 14341 is2=\E%!0\ELBP0\E%!1\E[H\E[2g\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[J, 14342 kcub1=\E[D, kcud1=\ED, kcuf1=\E[C, kcuu1=\EM, khome=\E[H, 14343 rev=\E[7m, ri=\E[T, 14344 rmcup=\E[?6h\E%!0\ELBP0\E%!1\E[32;1f, rmso=\E[m, 14345 rmul=\E[m, sgr0=\E[m, smcup=\E[?6l\E[H\E[J, smso=\E[7m, 14346 smul=\E[4m, tbc=\E[1g, 14347 14348# From: <carolyn@dali.berkeley.edu> Thu Oct 31 12:54:27 1985 14349# (tek4404: There was a "\!" in <smcup> that I replaced with "\E!". 14350# Tab had been given as \E2I,that must be the tab-set capability -- esr) 14351tek4404|tektronix 4404, 14352 OTbs, 14353 cols#80, it#8, lines#32, 14354 blink=\E[5m, bold=\E[1m, clear=\E[H\E[2J, 14355 csr=\E[%i%p1%d;%p2%dr, cub1=^H, cud1=^J, cuf1=\E[C, 14356 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, dch1=\E[P, dl1=\E[1M, 14357 ed=\E[J, el=\E[K, home=\E[H, ht=^I, hts=\E[2I, il1=\E[1L, 14358 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, rc=\E8, 14359 rmcup=\E[1;1H\E[0J\E[?6h\E[?1l, rmir=\E[4l, 14360 rmkx=\E[?1h, rmso=\E[27m, rmul=\E[m, sc=\E7, sgr0=\E[m, 14361 smcup=\E%\E!1\E[1;32r\E[?6l\E>, smir=\E[4h, 14362 smkx=\E[?1l, smso=\E[7m, smul=\E[4m, 14363# Some unknown person wrote: 14364# I added the is string - straight Unix has ESC ; in the login 14365# string which sets a ct8500 into monitor mode (aka 4025 snoopy 14366# mode). The is string here cleans up a few things (but not 14367# everything). 14368ct8500|tektronix ct8500, 14369 am, bw, da, db, 14370 cols#80, lines#25, 14371 bel=^G, cbt=\E^I, clear=\E^E, cr=^M, cub1=^H, cud1=^J, 14372 cuf1=\ES, cup=\E|%p1%{32}%+%c%p2%{32}%+%c, cuu1=\ER, 14373 dch1=\E^], dl1=\E^M, ed=\E^U, el=\E^T, ht=^I, ich1=\E^\, 14374 il1=\E^L, ind=^J, is2=\037\EZ\Ek, ri=\E^A, rmso=\E\s, 14375 rmul=\E\s, sgr0=\E\s, smso=\E$, smul=\E!, 14376 14377# Tektronix 4205 terminal. 14378# 14379# am is not defined because the wrap around occurs not when the char. 14380# is placed in the 80'th column, but when we are attempting to type 14381# the 81'st character on the line. (esr: hmm, this is like the vt100 14382# version of xenl, perhaps am + xenl would work!) 14383# 14384# Bold, dim, and standout are simulated by colors and thus not allowed 14385# with colors. The tektronix color table is mapped into the RGB color 14386# table by setf/setb. All colors are reset to factory specifications by oc. 14387# The <initc> cap uses RGB notation to define colors. for arguments 1-3 the 14388# interval (0-1000) is broken into 8 smaller sub-intervals (125). Each sub- 14389# interval then maps into pre-defined value. 14390tek4205|tektronix 4205, 14391 ccc, mir, msgr, 14392 colors#8, cols#80, it#8, lines#30, ncv#49, pairs#63, 14393 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 14394 bel=^G, blink=\E[5m, bold=\E[=7;<4m, cbt=\E[Z, 14395 clear=\E[2J\E[H, cr=^M, cub=\E[%p1%dD, cub1=\E[D, 14396 cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, 14397 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 14398 dch1=\E[1P, dim=\E[=1;<6m, dl1=\E[1M, ech=\E%p1%dX, 14399 ed=\E[J, el=\E[K, el1=\E[1K, enacs=\E)0, home=\E[H, ht=^I, 14400 ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[1L, ind=\ED, 14401 initc=\E%%!0\ETF4%?%p1%{0}%=%t0%e%p1%{1}%=%t4%e%p1%{2}%=%t3%e%p1%{3}%=%t5%e%p1%{4}%=%t2%e%p1%{5}%=%t6%e%p1%{6}%=%t7%e1%;%?%p2%{125}%<%t0%e%p2%{250}%<%tA2%e%p2%{375}%<%tA?%e%p2%{500}%<%tC8%e%p2%{625}%<%tD4%e%p2%{750}%<%tE1%e%p2%{875}%<%tE\:%eF4%;%?%p3%{125}%<%t0%e%p3%{250}%<%tA2%e%p3%{375}%<%tA?%e%p3%{500}%<%tC8%e%p3%{625}%<%tD4%e%p3%{750}%<%tE1%e%p3%{875}%<%tE\:%eF4%;%?%p4%{125}%<%t0%e%p4%{250}%<%tA2%e%p4%{375}%<%tA?%e%p4%{500}%<%tC8%e%p4%{625}%<%tD4%e%p4%{750}%<%tE1%e%p4%{875}%<%tE\:%eF4%;\E%%!1, 14402 invis=\E[=6;<5, is1=\E%!0\ETM1\E%!1\E[m, kbs=^H, 14403 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kf0=\EOA, 14404 kf1=\EOB, kf2=\EOC, kf3=\EOD, kf4=\EP, kf5=\EQ, kf6=\ER, 14405 kf7=\ES, 14406 oc=\E%!0\ETFB000001F4F4F42F40030F404A4C<F450F4F46F40F47F4F40\E%!1, 14407 op=\E[39;40m, rev=\E[7m, ri=\EM, rmacs=^O, rmcup=, 14408 rmir=\E[4l, rmso=\E[=0;<1m, rmul=\E[24m, 14409 setb=\E[=%?%p1%{0}%=%t0m%e%p1%{1}%=%t4m%e%p1%{2}%=%t3m%e%p1%{3}%=%t5m%e%p1%{4}%=%t2m%e%p1%{5}%=%t6m%e%p1%{6}%=%t7m%e1m%;, 14410 setf=\E[<%?%p1%{0}%=%t0m%e%p1%{1}%=%t4m%e%p1%{2}%=%t3m%e%p1%{3}%=%t5m%e%p1%{4}%=%t2m%e%p1%{5}%=%t6m%e%p1%{6}%=%t7m%e1m%;, 14411 sgr0=\E[=0;<1m\E[24;25;27m\017, smacs=^N, 14412 smcup=\E%%!1\E[?6l\E[2J, smir=\E[4h, smso=\E[=2;<3m, 14413 smul=\E[4m, tbc=\E[1g, 14414 14415#### Teletype (tty) 14416# 14417# These are the hardcopy Teletypes from before AT&T bought the company, 14418# clattering electromechanical dinosaurs in Bakelite cases that printed on 14419# pulpy yellow roll paper. If you remember these you go back a ways. 14420# Teletype-branded VDTs are listed in the AT&T section. 14421# 14422# The earliest UNIXes were designed to use these clunkers; nroff and a few 14423# other programs still default to emitting codes for the Model 37. 14424# 14425 14426tty33|tty35|model 33 or 35 teletype, 14427 hc, os, xon, 14428 cols#72, 14429 bel=^G, cr=^M, cud1=^J, ind=^J, 14430tty37|model 37 teletype, 14431 OTbs, hc, os, xon, 14432 bel=^G, cr=^M, cub1=^H, cud1=^J, cuu1=\E7, hd=\E9, hu=\E8, 14433 ind=^J, 14434 14435# There are known to be at least three flavors of the tty40, all seem more 14436# like IBM half duplex forms fillers than ASCII terminals. They have lots of 14437# awful braindamage, such as printing a visible newline indicator after each 14438# newline. The 40-1 is a half duplex terminal and is hopeless. The 40-2 is 14439# braindamaged but has hope and is described here. The 40-4 is a 3270 14440# lookalike and beyond hope. The terminal has visible bell but I don't know 14441# it - it's null here to prevent it from showing the BL character. 14442# There is an \EG in <nl> because of a bug in old vi (if stty says you have 14443# a "newline" style terminal (-crmode) vi figures all it needs is nl 14444# to get crlf, even if <cr> is not ^M.) 14445# (tty40: removed obsolete ":nl=\EG\EB:", it's just do+cr -- esr) 14446tty40|ds40|ds40-2|dataspeed40|teletype dataspeed 40/2, 14447 OTbs, xon, 14448 cols#80, lines#24, 14449 clear=\EH$<20>\EJ$<80>, cr=\EG, cub1=^H, cud1=\EB, 14450 cuf1=\EC, cuu1=\E7, dch1=\EP$<50>, dl1=\EM$<50>, 14451 ed=\EJ$<75>, home=\EH$<10>, ht=\E@$<10>, hts=\E1, 14452 ich1=\E\^$<50>, il1=\EL$<50>, ind=\ES$<20>, kbs=^], 14453 kcub1=^H, mc4=^T, mc5=\022$<2000>, ri=\ET$<10>, rmso=\E4, 14454 rs2=\023\ER$<60>, smso=\E3, tbc=\EH\E2$<80>, 14455tty43|model 43 teletype, 14456 OTbs, am, hc, os, xon, 14457 cols#132, 14458 bel=^G, cr=^M, cub1=^H, cud1=^J, ind=^J, kbs=^H, 14459 14460#### Tymshare 14461# 14462 14463# You can add <is2=\E<> to put this 40-column mode, though I can't 14464# for the life of me think why anyone would want to. 14465scanset|sc410|sc415|Tymshare Scan Set, 14466 am, bw, msgr, 14467 cols#80, lines#24, 14468 acsc=j%k4l<m-q\,x5, bel=^G, clear=\EH\EJ, cr=^M, cub1=^H, 14469 cud1=^J, cuf1=^I, cup=\EY%p1%{32}%+%c%p2%{32}%+%c, 14470 cuu1=^K, ed=\EJ, el=\EK, home=\EH, ind=^J, kcub1=\ED, 14471 kcud1=\EB, kcuf1=\EC, kcuu1=\EA, mc0=\E;3, mc4=\E;0, 14472 mc5=\E;0, rc=^C, rmacs=^O, rs1=\E>, sc=^B, smacs=^N, 14473 14474#### Volker-Craig (vc) 14475# 14476# If you saw a Byte Magazine cover with a terminal on it during the early 14477# 1980s, it was probably one of these. Carl Helmers liked them because 14478# they could crank 19.2 and were cheap (that is, he liked them until he tried 14479# to program one...) 14480# 14481 14482# Missing in vc303a and vc303 descriptions: they scroll 2 lines at a time 14483# every other linefeed. 14484vc303|vc103|vc203|volker-craig 303, 14485 OTbs, OTns, am, 14486 cols#80, lines#24, 14487 bel=^G, clear=\014$<40>, cr=^M, cub1=^H, cud1=^J, cuf1=^I, 14488 cuu1=^N, home=\013$<40>, kcub1=^H, kcud1=^J, kcuf1=^I, 14489 kcuu1=^N, ll=\017$<1>W, 14490vc303a|vc403a|volker-craig 303a, 14491 clear=\030$<40>, cuf1=^U, cuu1=^Z, el=\026$<20>, 14492 home=\031$<40>, kcuf1=^U, kcuu1=^Z, ll=^P, use=vc303, 14493# (vc404: removed obsolete ":ma=^Z^P^U :" -- esr) 14494vc404|volker-craig 404, 14495 OTbs, am, 14496 cols#80, lines#24, 14497 bel=^G, clear=\030$<40>, cr=^M, cub1=^H, cud1=^J, cuf1=^U, 14498 cup=\020%p1%{32}%+%c%p2%{32}%+%c, cuu1=^Z, 14499 ed=\027$<40>, el=\026$<20>, home=\031$<40>, ind=^J, 14500 kcub1=^H, kcud1=^J, kcuf1=^U, kcuu1=^Z, 14501vc404-s|volker-craig 404 w/standout mode, 14502 cud1=^J, rmso=^O, smso=^N, use=vc404, 14503# From: <wolfgang@cs.sfu.ca> 14504# (vc414: merged in cup/dl1/home from an old vc414h-noxon) 14505vc414|vc414h|Volker-Craig 414H in sane escape mode., 14506 OTbs, am, 14507 cols#80, lines#24, 14508 clear=\E\034$<40>, cud1=\E^K, cuf1=^P, 14509 cup=\E\021%p2%c%p1%c$<40>, cuu1=\E^L, dch1=\E3, 14510 dl1=\E\023$<40>, ed=\E^X, el=\E\017$<10/>, home=\E^R, 14511 ich1=\E\:, il1=\E\032$<40>, kcub1=^H, kcud1=\E^K, kcuf1=^P, 14512 kcuu1=\E^L, kf0=\EA, kf1=\EB, kf2=\EC, kf3=\ED, kf4=\EE, 14513 kf5=\EF, kf6=\EG, kf7=\EH, khome=\E^R, lf0=PF1, lf1=PF2, 14514 lf2=PF3, lf3=PF4, lf4=PF5, lf5=PF6, lf6=PF7, lf7=PF8, 14515 rmso=\E^_, smso=\E^Y, 14516vc415|volker-craig 415, 14517 clear=^L, use=vc404, 14518 14519######## OBSOLETE PERSONAL-MICRO CONSOLES AND EMULATIONS 14520# 14521 14522#### IBM PC and clones 14523# 14524 14525# The pcplot IBM-PC terminal emulation program is really messed up. It is 14526# supposed to emulate a vt-100, but emulates the wraparound bug incorrectly, 14527# doesn't support scrolling regions, ignores add line commands, and ignores 14528# delete line commands. Consequently, the resulting behavior looks like a 14529# crude adm3a-type terminal. 14530# Steve Jacobson 8/85 14531pcplot|pc-plot terminal emulation program, 14532 xenl@, 14533 csr@, dl@, dl1@, il@, il1@, rc@, sc@, use=vt100, 14534# KayPro II from Richard G Turner <rturner at Darcom-Hq.ARPA> 14535# I've found that my KayPro II, running MDM730, continues to emulate an 14536# ADM-3A terminal, just like I was running TERM.COM. On our 4.2 UNIX 14537# system the following termcap entry works well: 14538# I have noticed a couple of minor glitches, but nothing I can't work 14539# around. (I added two capabilities from the BRL entry -- esr) 14540kaypro|kaypro2|kaypro II, 14541 OTbs, am, 14542 cols#80, lines#24, 14543 bel=^G, clear=\032$<1/>, cr=^M, cud1=^J, cuf1=^L, 14544 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dl1=\ER, ed=^W, 14545 el=^X, home=^^, il1=\EE, ind=^J, kcud1=^J, kcuf1=^L, kcuu1=^K, 14546 14547# From IBM, Thu May 5 19:35:27 1983 14548# (ibmpc: commented out <smir>=\200R because we don't know <rmir> -- esr) 14549ibm-pc|ibm5051|5051|IBM Personal Computer (no ANSI.SYS), 14550 OTbs, am, 14551 cols#80, lines#24, 14552 bel=^G, clear=^L^K, cr=^M^^, cub1=^], cud1=^J, cuf1=^\, 14553 cuu1=^^, home=^K, ind=\n$<10>, kcud1=^_, 14554 14555ibmpc|wy60-PC|wyse60-PC|IBM PC/XT running PC/IX, 14556 OTbs, am, bw, eo, hs, km, msgr, ul, 14557 cols#80, it#8, lines#24, 14558 acsc=j\331k\277l\332m\300n\305q\304t\303u\264v\301w\302x\263, 14559 bel=^G, blink=\E[5m, bold=\E[1m, clear=\Ec, cr=^M, 14560 cub=\E[%p1%dD, cub1=\E[D, cud=\E[%p1%dB, cud1=\E[B, 14561 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 14562 cuu=\E[%p1%dA, cuu1=\E[A, ech=\E[%p1%dX, ed=\E[J, el=\E[K, 14563 home=\E[H, hpa=\E[%i%p1%dG, ind=\E[S\E[B, 14564 indn=\E[%p1%dS\E[%p1%dB, invis=\E[30;40m, kbs=^H, 14565 kcbt=^], kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 14566 kdch1=\177, kend=\E[Y, kf1=\240, kf10=\251, kf2=\241, 14567 kf3=\242, kf4=\243, kf5=\244, kf6=\245, kf7=\246, kf8=\247, 14568 kf9=\250, khome=\E[H, kich1=\E[^H, knp=\E[U, kpp=\E[V, 14569 ll=\E[24;1H, nel=^M, rev=\E[7m, ri=\E[T\E[A, 14570 rin=\E[%p1%dT\E[%p1%dA, rmso=\E[m, rmul=\E[m, 14571 sgr=\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;m, 14572 sgr0=\E[m, smso=\E[7m, smul=\E[4m, 14573 14574#### Apple II 14575# 14576# Apple II firmware console first, then various 80-column cards and 14577# terminal emulators. For two cents I'd toss all these in the UFO file 14578# along with the 40-column apple entries. 14579# 14580 14581# From: brsmith@umn-cs.cs.umn.edu (Brian R. Smith) via BRL 14582# 'it#8' tells UNIX that you have tabs every 8 columns. This is a 14583# function of TIC, not the firmware. 14584# The clear key on a IIgs will do something like clear-screen, 14585# depending on what you're in. 14586appleIIgs|appleIIe|appleIIc|Apple 80 column firmware interface, 14587 OTbs, am, bw, eo, msgr, 14588 cols#80, it#8, lines#24, 14589 bel=^G, clear=^L, cr=^M, cub1=^H, cud1=^J, cuf1=^\, 14590 cup=\036%p2%{32}%+%c%p1%{32}%+%c, cuu1=^_, ed=^K, el=^], 14591 home=^Y, ht=^I, ind=^W, kbs=^H, kclr=^X, kcub1=^H, kcud1=^J, 14592 kcuf1=^U, kcuu1=^K, kdch1=\177, nel=^M^W, ri=^V, rmso=^N, 14593 smso=^O, 14594# Apple //e with 80-column card, entry from BRL 14595# The modem interface is permitted to discard LF (maybe DC1), otherwise 14596# passing characters to the 80-column firmware via COUT (PR#3 assumed). 14597# Auto-wrap does not work right due to newline scrolling delay, which also 14598# requires that you set "stty cr2". 14599# Note: Cursor addressing is only available via the Pascal V1.1 entry, 14600# not via the BASIC PR#3 hook. All this nonsense can be avoided only by 14601# using a terminal emulation program instead of the built-in firmware. 14602apple2e|Apple //e, 14603 bw, msgr, 14604 cols#80, lines#24, 14605 bel=^G, clear=\014$<100/>, cub1=^H, cud1=^J, cuu1=^_, 14606 ed=\013$<4*/>, el=\035$<4/>, home=^Y, ht=^I, ind=^W, 14607 is2=^R^N, kbs=^H, kcub1=^H, kcud1=^J, kcuf1=^U, kcuu1=^K, 14608 nel=\r$<100/>, rev=^O, ri=^V, rmso=^N, rs1=^R^N, sgr0=^N, 14609 smso=^O, 14610# mcvax!vu44!vu45!wilcke uses the "ap" entry together with Ascii Express Pro 14611# 4.20, with incoming and outgoing terminals both on 0, emulation On. 14612apple2e-p|Apple //e via Pascal, 14613 cup=\036%p2%{32}%+%c%p1%{32}%+%c, kbs=^H, kcub1=^H, 14614 kcud1=^J, use=apple2e, 14615# (ASCII Express) MouseTalk "Standard Apple //" emulation from BRL 14616# Enable DC3/DC1 flow control with "stty ixon -ixany". 14617apple-ae|ASCII Express, 14618 OTbs, am, bw, msgr, nxon, xon, 14619 cols#80, it#8, lines#24, 14620 bel=\007$<500/>, clear=^L, cr=^M, cub1=^H, cud1=^J, cuf1=^U, 14621 cup=\036%p2%{32}%+%c%p1%{32}%+%c, cuu1=^_, ed=^K, el=^], 14622 home=^Y, ind=^W, is2=^R^N, kclr=^X, kcub1=^H, kcud1=^J, 14623 kcuf1=^U, kcuu1=^K, rev=^O, ri=^V, rmso=^N, rs1=^R^N, sgr0=^N, 14624 smso=^O, 14625appleII|apple ii plus, 14626 OTbs, am, 14627 cols#80, it#8, lines#24, 14628 clear=^L, cnorm=^TC2, cub1=^H, cud1=^J, cuf1=^\, 14629 cup=\036%p2%{32}%+%c%p1%{32}%+%c, cuu1=^_, cvvis=^TC6, 14630 ed=^K, el=^], flash=\024G1$<200/>\024T1, home=\E^Y, ht=^I, 14631 is2=\024T1\016, kcud1=^J, kcuf1=^U, rmso=^N, sgr0=^N, 14632 smso=^O, 14633# Originally by Gary Ford 21NOV83 14634# From: <ee178aci%sdcc7@SDCSVAX.ARPA> Fri Oct 11 21:27:00 1985 14635apple-80|apple II with smarterm 80 col, 14636 OTbs, am, bw, 14637 cols#80, lines#24, 14638 cbt=^R, clear=\014$<10*/>, cr=\r$<10*/>, cub1=^H, cud1=^J, 14639 cuf1=^\, cup=\036%p2%{32}%+%c%p1%{32}%+%c, cuu1=^_, 14640 ed=\013$<10*/>, el=\035$<10/>, home=^Y, 14641apple-soroc|apple emulating soroc 120, 14642 am, 14643 cols#80, lines#24, 14644 bel=^G, clear=\E*$<300>, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 14645 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, ed=\EY, el=\ET, 14646 home=^^, ind=^J, kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, 14647# From Peter Harrison, Computer Graphics Lab, San Francisco 14648# ucbvax!ucsfmis!harrison .....uucp 14649# ucbvax!ucsfmis!harrison@BERKELEY .......ARPA 14650# "These two work. If you don't have the inverse video chip for the 14651# Apple with videx then remove the :so: and :se: fields." 14652# (apple-videx: this used to be called DaleApple -- esr) 14653apple-videx|Apple with videx videoterm 80 column board with inverse video, 14654 OTbs, am, xenl, 14655 cols#80, it#8, lines#24, 14656 clear=\014$<300/>, cub1=^H, cud1=^J, cuf1=^\, 14657 cup=\036%p2%{32}%+%c%p1%{32}%+%c, cuu1=^_, ed=^K, el=^], 14658 home=^Y, ht=^I, kcub1=^H, kcud1=^J, kcuf1=^U, khome=^Y, 14659 rmso=^Z2, sgr0=^Z2, smso=^Z3, 14660# My system [for reference] : Apple ][+, 64K, Ultraterm display card, 14661# Apple Cat ][ 212 modem, + more all 14662# controlled by ASCII Express: Pro. 14663# From Dave Shaver <isucs1!shaver> 14664apple-uterm-vb|Videx Ultraterm for Apple micros with Visible Bell, 14665 OTbs, am, eo, xt, 14666 cols#80, lines#24, 14667 acsc=, clear=^L, cuf1=^\, 14668 cup=\036%p2%{32}%+%c%p1%{32}%+%c, cuu1=^_, ed=^K, el=^], 14669 flash=^W35^W06, home=^Y, 14670 is2=^V4^W06\017\rVisible Bell Installed.\016\r\n, 14671 rmso=^N, smso=^O, 14672apple-uterm|Ultraterm for Apple micros, 14673 OTbs, am, eo, xt, 14674 cols#80, lines#24, 14675 acsc=, clear=^L, cuf1=^\, 14676 cup=\036%p2%{32}%+%c%p1%{32}%+%c, cuu1=^_, ed=^K, el=^], 14677 home=^Y, is2=^V4^W06\016, rmso=^N, smso=^O, 14678# from trwrba!bwong (Bradley W. Wong): 14679# 14680# This entry assumes that you are using an apple with the UCSD Pascal 14681# language card. SYSTEM.MISCINFO is assumed to be the same as that 14682# supplied with the standard apple except that screenwidth should be set 14683# using SETUP to 80 columns. Note that the right arrow in not mapped in 14684# this termcap entry. This is because that key, on the Apple, transmits 14685# a ^U and would thus preempt the more useful "up" function of vi. 14686# 14687# HMH 2/23/81 14688apple80p|80-column apple with Pascal card, 14689 am, bw, 14690 cols#80, lines#24, 14691 clear=^Y^L, cuf1=^\\:, 14692 cup=\036%p2%{32}%+%c%p1%{32}%+%c, cuu1=^_, ed=^K, el=^], 14693 home=^Y, kcub1=^H, 14694# 14695# Apple II+ equipped with Videx 80 column card 14696# 14697# Terminfo from ihnp4!ihu1g!djc1 (Dave Christensen) via BRL; 14698# manually converted by D A Gwyn 14699# 14700# DO NOT use any terminal emulation with this data base, it works directly 14701# with the Videx card. This has been tested with vi 1200 baud and works fine. 14702# 14703# This works great for vi, except I've noticed in pre-R2, ^U will scroll back 14704# 1 screen, while in R2 ^U doesn't. 14705# For inverse alternate character set add: 14706# <smacs>=^O:<rmacs>=^N: 14707# (apple-v: added it#8 -- esr) 14708apple-videx2|Apple II+ w/ Videx card (similar to Datamedia h1520), 14709 am, xenl, 14710 cols#80, it#8, lines#24, 14711 bel=\007$<100/>, clear=\014$<16*/>, cr=^M, cub1=^H, 14712 cud1=^J, cuf1=^\, cup=\036%p2%{32}%+%c%p1%{32}%+%c, 14713 cuu1=^_, ed=\013$<16*/>, el=^], home=^Y, ht=\011$<8/>, 14714 ind=^J, kbs=^H, kcub1=^H, kcud1=^J, kcuf1=^\, kcuu1=^_, 14715 khome=^Y, rmso=^Z2, smso=^Z3, 14716apple-videx3|vapple|Apple II with 80 col card, 14717 OTbs, am, 14718 cols#80, lines#24, 14719 clear=\Ev, cuf1=\EC, cup=\EY%p1%{32}%+%c%p2%{32}%+%c, 14720 cuu1=\EA, el=\Ex, home=\EH, kcub1=\ED, kcud1=\EB, kcuf1=\EC, 14721 kcuu1=\EA, kf0=\EP, kf1=\EQ, kf2=\ER, kf3=\E\s, kf4=\E!, 14722 kf5=\E", kf6=\E#, kf7=\E$, kf8=\E%%, kf9=\E&, khome=\EH, 14723#From: decvax!cbosgd!cbdkc1!mww Mike Warren via BRL 14724aepro|Apple II+ running ASCII Express Pro--vt52, 14725 OTbs, 14726 cols#80, lines#24, 14727 clear=\014$<300/>, cuf1=\EC, 14728 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, ed=\EJ, 14729 el=\EK, home=\EH, 14730# UCSD addition: Yet another termcap from Brian Kantor's Micro Munger Factory 14731apple-vm80|ap-vm80|apple with viewmax-80, 14732 OTbs, 14733 cols#80, lines#24, 14734 clear=\014$<300/>, cuf1=^\\:, 14735 cup=\036%p1%{32}%+%c%p2%{32}%+%c$<100/>, cuu1=^_, 14736 ed=\013$<300/>, el=^], home=\031$<200/>, 14737 14738#### Apple Lisa & Macintosh 14739# 14740 14741# (lisa: changed <cvvis> to <cnorm> -- esr) 14742lisa|apple lisa console display (black on white), 14743 OTbs, am, eo, msgr, 14744 cols#88, it#8, lines#32, 14745 acsc=jdkclfmenbqattuvvuwsx`, civis=\E[5h, clear=^L, 14746 cnorm=\E[5l, cub1=^H, cud1=\E[B, cuf1=\E[C, 14747 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, dch1=\E[P, dl1=\E[M, 14748 ed=\E[J, el=\E[K, home=\E[H, ht=^I, ich1=\E[@, il1=\E[L, 14749 is2=\E>\E[m\014, kbs=^H, kcub1=\E[D, kcud1=\E[B, 14750 kcuf1=\E[C, kcuu1=\E[A, rmacs=\E[10m, rmso=\E[m, rmul=\E[m, 14751 sgr0=\E[m, smacs=\E[11m, smso=\E[7m, smul=\E[4m, 14752liswb|apple lisa console display (white on black), 14753 is2=\E>\E[0;7m\014, rmso=\E[0;7m, rmul=\E[0;7m, 14754 smso=\E[m, smul=\E[4m, use=lisa, 14755 14756# lisaterm from ulysses!gamma!epsilon!mb2c!jed (John E. Duncan III) via BRL; 14757# <is2> revised by Ferd Brundick <fsbrn@BRL.ARPA> 14758# 14759# These entries assume that the 'Auto Wraparound' is enabled. 14760# Xon-Xoff flow control should also be enabled. 14761# 14762# The vt100 uses :rs2: and :rf: rather than :is2:/:tbc:/:hts: because the tab 14763# settings are in non-volatile memory and don't need to be reset upon login. 14764# Also setting the number of columns glitches the screen annoyingly. 14765# You can type "reset" to get them set. 14766# 14767lisaterm|Apple Lisa or Lisa/2 running LisaTerm vt100 emulation, 14768 OTbs, OTpt, am, xenl, xon, 14769 OTkn#4, cols#80, it#8, lines#24, vt#3, 14770 bel=^G, blink=\E[5m, bold=\E[1m, clear=\E[H\E[2J, cr=^M, 14771 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 14772 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 14773 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, ed=\E[J, 14774 el=\E[K, home=\E[H, ht=^I, hts=\EH, ind=^J, kbs=^H, kcub1=\EOD, 14775 kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kf0=\EOP, kf1=\EOQ, 14776 kf2=\EOR, kf3=\EOS, lf0=F1, lf1=F2, lf2=F3, lf3=F4, rc=\E8, 14777 rev=\E[7m, ri=\EM, rmkx=\E[?1l\E>, rmso=\E[m, rmul=\E[m, 14778 rs1=\E>\E[?1l\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h\E[1;24r, 14779 sc=\E7, sgr0=\E[m, smkx=\E[?1h\E=, smso=\E[7m, smul=\E[4m, 14780 tbc=\E[3g, 14781# Lisaterm in 132 column ("wide") mode. 14782lisaterm-w|Apple Lisa with Lisaterm in 132 column mode, 14783 cols#132, 14784 kbs=^H, kcub1=^H, kcud1=^J, use=lisaterm, 14785# Although MacTerminal has insert/delete line, it is commented out here 14786# since it is much faster and cleaner to use the "lock scrolling region" 14787# method of inserting and deleting lines due to the MacTerminal implementation. 14788# Also, the "Insert/delete ch" strings have an extra character appended to them 14789# due to a bug in MacTerminal V1.1. Blink is disabled since it is not 14790# supported by MacTerminal. 14791mac|macintosh|Macintosh with MacTerminal, 14792 xenl, 14793 OTdN#30, 14794 blink@, dch1=\E[P$<7/>, ich1=\E[@$<9/>, ip=$<7/>, use=lisa, 14795# Lisaterm in 132 column ("wide") mode. 14796mac-w|macterminal-w|Apple Macintosh with Macterminal in 132 column mode, 14797 cols#132, use=mac, 14798 14799#### Radio Shack/Tandy 14800# 14801 14802# (coco3: This had "ta" used incorrectly as a boolean and bl given as "bl#7". 14803# I read these as mistakes for ":it#8:" and ":bl=\007:" respectively -- esr) 14804# From: <{pbrown,ctl}@ocf.berkeley.edu> 12 Mar 90 14805coco3|os9LII|Tandy CoCo3 24*80 OS9 Level II, 14806 OTbs, am, 14807 cols#80, it#8, lines#24, 14808 bel=^G, blink=^_", bold=\E\:^A, civis=^E\s, 14809 clear=\014$<5*/>, cnorm=^E!, cub1=^H, cud1=^J, cuf1=^F, 14810 cup=\002%p2%{32}%+%c%p1%{32}%+%c$<2/>, cuu1=^I, 14811 dl1=^_1, ed=^K, el=^D, home=^A, il1=^_0, kcub1=^H, kcud1=^J, 14812 kcuf1=^I, kcuu1=^L, rev=^_\s, rmso=^_!, rmul=^_#, 14813 sgr0=\037!\E\:\0, smso=^_\s, smul=^_", 14814# (trs2: removed obsolete ":nl=^_:" -- esr) 14815trs2|trsII|trs80II|Radio Shack Model II using P&T CP/M, 14816 OTbs, am, msgr, 14817 cols#80, it#8, lines#24, 14818 bel=^G, clear=^L, cr=^M, cub1=^H, cud1=^_, cuf1=^], 14819 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=^^, dl1=^K, ed=^B, 14820 el=^A, home=^F, ht=^I, il1=^D, ind=^J, kbs=^H, kcub1=^\, 14821 kcud1=^_, kcuf1=^], kcuu1=^^, rmso=^O, sgr0=^O, smso=^N, 14822# From: Kevin Braunsdorf <ksb@mentor.cc.purdue.edu> 14823# (This had extension capabilities 14824# :BN=\E[?33h:BF=\E[?33l:UC=\E[_ q:BC=\E[\177 q:\ 14825# :CN=\ERC:CF=\ERc:NR=\ERD:NM=\ER@: 14826# I also deleted the unnecessary ":kn#2:", ":sg#0:" -- esr) 14827trs16|trs-80 model 16 console, 14828 OTbs, am, 14829 cols#80, it#8, lines#24, 14830 acsc=jak`l_mbquvewcxs, bel=^G, civis=\ERc, clear=^L, 14831 cnorm=\ERC, cr=^M, cub1=^H, cud1=\EB, cuf1=\EC, 14832 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, dch1=\EQ, 14833 dl1=\EM, ed=\EJ, el=\EK, home=\EH, ht=^I, ich1=\EP, il1=\EL, 14834 ind=^J, kbs=^H, kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, 14835 kf0=^A, kf1=^B, kf2=^D, kf3=^L, kf4=^U, kf5=^P, kf6=^N, kf7=^S, 14836 khome=^W, lf0=f1, lf1=f2, lf2=f3, lf3=f4, lf4=f5, lf5=f6, lf6=f7, 14837 lf7=f8, mc4=\E]+, mc5=\E]=, rmacs=\ERg, rmso=\ER@, sgr0=\ER@, 14838 smacs=\ERG, smso=\ERD, 14839 14840#### Atari ST 14841# 14842 14843# From: Simson L. Garfinkel <simsong@media-lab.mit.edu> 14844atari|atari st, 14845 OTbs, am, 14846 cols#80, it#8, lines#25, 14847 clear=\EH\EJ, cub1=\ED, cud1=\EB, cuf1=\EC, 14848 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, dl1=\EM, 14849 ed=\EJ, el=\EK, ht=^I, il1=\EL, kcub1=\ED, kcud1=\EB, 14850 kcuf1=\EC, kcuu1=\EA, ri=\EI, rmso=\Eq, sgr0=\Eq, smso=\Ep, 14851# UniTerm terminal program for the Atari ST: 49-line VT220 emulation mode 14852# From: Paul M. Aoki <aoki@ucbvax.berkeley.edu> 14853uniterm|uniterm49|UniTerm VT220 emulator with 49 lines, 14854 lines#49, 14855 is2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h\E[1;49r\E[49;1H, 14856 use=vt220, 14857# MiNT VT52 emulation. 80 columns, 25 rows. 14858# MiNT is Now TOS, the operating system which comes with all Ataris now 14859# (mainly Atari Falcon). This termcap is for the VT52 emulation you get 14860# under tcsh/zsh/bash/sh/ksh/ash/csh when you run MiNT in `console' mode 14861# From: Per Persson <pp@gnu.ai.mit.edu>, 27 Feb 1996 14862st52|Atari ST with VT52 emulation, 14863 am, km, 14864 cols#80, lines#25, 14865 bel=^G, civis=\Ef, clear=\EH\EJ, cnorm=\Ee, cr=^M, cub1=\ED, 14866 cud1=\EB, cuf1=\EC, cup=\EY%p1%{32}%+%c%p2%{32}%+%c, 14867 cuu1=\EA, dl1=\EM, ed=\EJ, el=\EK, home=\EH, ht=^I, il1=\EL, 14868 ind=^J, ka1=\E#7, ka3=\E#5, kb2=\E#9, kbs=^H, kc1=\E#1, 14869 kc3=\E#3, kclr=\E#7, kcub1=\E#K, kcud1=\E#P, kcuf1=\E#M, 14870 kcuu1=\E#H, kf0=\E#D, kf1=\E#;, kf2=\E#<, kf3=\E#=, kf4=\E#>, 14871 kf5=\E#?, kf6=\E#@, kf7=\E#A, kf8=\E#B, kf9=\E#C, khome=\E#G, 14872 kil1=\E#R, kind=\E#2, kri=\E#8, lf0=f10, nel=^M^J, rc=\Ek, 14873 ri=\EI, rmcup=, rmso=\Eq, rs1=\Ez_\Eb@\EcA, sc=\Ej, sgr0=\Eq, 14874 smcup=\Ee, smso=\Ep, 14875 14876#### Commodore Business Machines 14877# 14878# Formerly located in West Chester, PA; went spectacularly bust in 1994 14879# after years of shaky engineering and egregious mismanagement. Made one 14880# really nice machine (the Amiga) and boatloads of nasty ones (PET, C-64, 14881# C-128, VIC-20). The C-64 is said to have been the most popular machine 14882# ever (most units sold); they can still be found gathering dust in closets 14883# everywhere. 14884# 14885 14886# From: Kent Polk <kent@swrinde.nde.swri.edu>, 30 May 90 14887# Added a few more entries, converted caret-type control sequence (^x) entries 14888# to '\0xx' entries since a couple of people mentioned losing '^x' sequences. 14889# Corrections by Ty Sarna <tsarna@endicor.com>, Sat Feb 28 18:55:15 1998 14890# 14891# :as:, :ae: Support for alternate character sets. 14892# :ve=\E[\040p:vi=\E[\060\040p: cursor visible/invisible. 14893# :xn: vt100 kludginess at column 80/NEWLINE ignore after 80 cols(Concept) 14894# This one appears to fix a problem I always had with a line ending 14895# at 'width+1' (I think) followed by a blank line in vi. The blank 14896# line tended to disappear and reappear depending on how the screen 14897# was refreshed. Note that this is probably needed only if you use 14898# something like a Dnet Fterm with the window sized to some peculiar 14899# dimension larger than 80 columns. 14900# :k0=\E9~: map F10 to k0 - could have F0-9 -> k0-9, but ... F10 was 'k;' 14901# (amiga: removed obsolete :kn#10:, 14902# also added empty <acsc> to suppress a warning --esr) 14903amiga|Amiga ANSI, 14904 OTbs, am, bw, xenl, 14905 cols#80, lines#24, 14906 acsc=, bel=^G, blink=\E[7;2m, bold=\E[1m, cbt=\E[Z, 14907 civis=\E[0 p, clear=\E[H\E[J, cnorm=\E[ p, cub=\E[%p1%dD, 14908 cub1=\E[D, cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, 14909 cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, 14910 cuu1=\E[A, dch=\E[%p1%dP, dch1=\E[P, dim=\E[2m, 14911 dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, 14912 ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, il1=\E[L, ind=\E[S, 14913 indn=\E[%p1%dS, invis=\E[8m, is2=\E[20l, kbs=^H, 14914 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kf0=\E[9~, 14915 kf1=\E[0~, kf2=\E[1~, kf3=\E[2~, kf4=\E[3~, kf5=\E[4~, 14916 kf6=\E[5~, kf7=\E[6~, kf8=\E[7~, kf9=\E[8~, rev=\E[7m, 14917 ri=\E[T, rin=\E[%p1%dT, rmacs=^O, rmso=\E[m, rmul=\E[m, 14918 rs1=\Ec, sgr0=\E[m, smacs=^N, smso=\E[7m, smul=\E[4m, 14919 14920# From: Hans Verkuil <hans@wyst.hobby.nl>, 4 Dec 1995 14921# (amiga: added empty <acsc> to suppress a warning. 14922# I'm told this entry screws up badly with AS225, the Amiga 14923# TCP/IP package once from Commodore, and now sold by InterWorks.--esr) 14924amiga-h|Hans Verkuil's Amiga ANSI, 14925 OTbs, bw, msgr, 14926 cols#80, lines#24, 14927 acsc=, bel=^G, blink=\2337;2m, bold=\2331m, cbt=\233Z, 14928 civis=\2330 p, clear=\233H\233J, cnorm=\233 p, cr=^M, 14929 cub=\233%p1%dD, cub1=\233D, cud=\233%p1%dB, cud1=\233B, 14930 cuf=\233%p1%dC, cuf1=\233C, cup=\233%i%p1%d;%p2%dH, 14931 cuu=\233%p1%dA, cuu1=\233A, dch=\233%p1%dP, dch1=\233P, 14932 dim=\2332m, ech=\233%p1%dP, ed=\233J, el=\233K, flash=^G, 14933 home=\233H, ht=^I, ich=\233%p1%d@, ich1=\233@, ind=\233S, 14934 indn=\233%p1%dS, invis=\2338m, is2=\23320l, kbs=^H, 14935 kcub1=\233D, kcud1=\233B, kcuf1=\233C, kcuu1=\233A, 14936 kdch1=\177, kf0=\2339~, kf1=\2330~, kf2=\2331~, kf3=\2332~, 14937 kf4=\2333~, kf5=\2334~, kf6=\2335~, kf7=\2336~, kf8=\2337~, 14938 kf9=\2338~, nel=\233B\r, rev=\2337m, ri=\233T, 14939 rin=\233%p1%dT, rmacs=^O, rmcup=\233?7h, rmso=\2330m, 14940 rmul=\2330m, rs1=\Ec, sgr0=\2330m, smacs=^N, smcup=\233?7l, 14941 smso=\2337m, smul=\2334m, 14942 14943# From: Henning 'Faroul' Peters <Faroul@beyond.kn-bremen.de>, 25 Sep 1999 14944amiga-8bit|Amiga ANSI using 8-bit controls, 14945 acsc=, dl=\233%p1%dM, dl1=\233M, il=\233%p1%dL, il1=\233L, 14946 ind=\204, indn@, ri=\215, rin@, use=amiga-h, 14947 14948# From: Ruediger Kuhlmann <terminfo@ruediger-kuhlmann.de>, 18 Jul 2000 14949# requires use of appropriate preferences settings. 14950amiga-vnc|Amiga using VNC console (black on light gray), 14951 am, da, db, msgr, ndscr, 14952 btns#1, colors#16, cols#80, lines#24, lm#0, ncv#0, pairs#256, 14953 bel=^G, blink=\E[7;2m, bold=\E[1m, civis=\E[0p, 14954 clear=\E[H\E[J, cnorm=\E[p\E[>?6l, cr=^M, 14955 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=\E[D, 14956 cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, 14957 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 14958 cvvis=\E[>?6h, dch=\E[%p1%dP, dch1=\E[P, dim=\E[2m, 14959 dl=\E[%p1%dM, dl1=\E[1M, ed=\E[J, el=\E[K, flash=^G, 14960 ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, il1=\E[1L, ind=\ED, 14961 indn=\E[%p1%dS, invis=\E8m, 14962 is2=\E[>?2;18l\E[>?26;?6;20;>?15;?7;>?22;>?8h, 14963 kbs=^H, kcbt=\233Z, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, 14964 kcuu1=\E[A, kdch1=\177, kf0=\E[9~, kf1=\E[0~, kf2=\E[1~, 14965 kf3=\E[2~, kf4=\E[3~, kf5=\E[4~, kf6=\E[5~, kf7=\E[6~, 14966 kf8=\E[7~, kf9=\E[8~, khlp=\E[?~, khome=\E[44~, kll=\E[45~, 14967 kmous=\E[M, knp=\E[42~, kpp=\E[41~, nel=\EE, oc=\E[0m, 14968 rev=\E[7m, ri=\EM, rin=\E[%p1%dT, rmcup=\E[?7h\E[r\E[J, 14969 rmkx=\E[?1l, rmso=\E[21m, rmul=\E[24m, rs1=\Ec, 14970 rs2=\E[>?2;18l\E[>?26;?6;20;>?15;?7;>?22;>?8h, 14971 setab=\E[%?%p1%{8}%>%t%'F'%p1%+%d%e4%p1%d%;m, 14972 setaf=\E[%?%p1%{8}%>%t%'2'%p1%+%d%e3%p1%d%;m, 14973 sgr0=\E[0m\017\E[30;85;>15m, smcup=\E[?7h, smkx=\E[?1h, 14974 smso=\E[1m, smul=\E[4m, 14975 14976# Commodore B-128 microcomputer from Doug Tyrol <det@HEL-ACE.ARPA> 14977# I'm trying to write a termcap for a commodore b-128, and I'm 14978# having a little trouble. I've had to map most of my control characters 14979# to something that unix will accept (my delete-char is a ctrl-t, etc), 14980# and create some functions (like cm), but thats life. 14981# The problem is with the arrow keys - right, and up work fine, but 14982# left deletes the previous character and down I just can't figure out. 14983# Jove knows what I want, but I don't know what it's sending to me (it 14984# isn't thats bound to next-line in jove). 14985# Anybody got any ideas? Here's my termcap. 14986# DAG -- I changed his "^n" entries to "\n"; see if that works. 14987# 14988commodore|b-128|Commodore B-128 micro, 14989 am, bw, 14990 OTdN#20, cols#80, lines#24, pb#150, 14991 OTbc=^H, OTnl=^M, clear=\E\006$<10/>, cr=^M, cud1=^J, 14992 cuf1=^F, cup=\E\013%p1%2d\,%p2%2d\,$<20/>, cuu1=^P, 14993 dch1=\177$<10*/>, dl1=\Ed$<10*/>, el=\Eq$<10/>, 14994 home=\E^E, ht=\011$<5/>, ich1=\E\n$<5/>, il1=\Ei$<10/>, 14995 kcub1=^B, kcud1=^J, kcuf1=^F, kcuu1=^P, khome=\E^E, rmir=, 14996 smir=, 14997 14998#### North Star 14999# 15000# North Star Advantage from Lt. Fickie <brl-ibd!fickie> via BRL 15001northstar|North Star Advantage, 15002 OTbs, 15003 cols#80, lines#24, 15004 clear=\004$<200/>, 15005 cup=\E=%p1%{32}%+%c%p2%{32}%+%c$<1/>, ed=\017$<200/>, 15006 el=\016$<200/>, home=\034\032$<200/>, 15007 15008#### Osborne 15009# 15010# Thu Jul 7 03:55:16 1983 15011# 15012# As an aside, be careful; it may sound like an anomaly on the 15013# Osborne, but with the 80-column upgrade, it's too easy to 15014# enter lines >80 columns! 15015# 15016# I've already had several comments... 15017# The Osborne-1 with the 80-col option is capable of being 15018# 52, 80, or 104 characters wide; default to 80 for compatibility 15019# with most systems. 15020# 15021# The tab is destructive on the Ozzie; make sure to 'stty -tabs'. 15022osborne-w|osborne1-w|osborne I in 104-column mode, 15023 msgr, ul, xt, 15024 cols#104, lines#24, 15025 bel=^G, clear=^Z, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 15026 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW, 15027 dl1=\ER, el=\ET, ich1=\EQ, il1=\EE, ind=^J, kcub1=^H, kcud1=^J, 15028 kcuf1=^L, kcuu1=^K, rmso=\E(, rmul=\Em, smso=\E), smul=\El, 15029# Osborne I from ptsfa!rhc (Robert Cohen) via BRL 15030osborne|osborne1|osborne I in 80-column mode, 15031 OTbs, am, mir, msgr, ul, xhp, 15032 OTdB#4, cols#80, lines#24, 15033 clear=^Z, cub1=\010$<4>, cud1=^J, cuf1=^L, 15034 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, 15035 dch1=\EW$<4/>, dl1=\ER, el=\ET, il1=\EE, is2=^Z, kbs=^H, 15036 kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, rmir=, rmso=\E), 15037 rmul=\Em, smir=\EQ, smso=\E(, smul=\El, 15038# 15039# Osborne Executive definition from BRL 15040# Similar to tvi920 15041# Added by David Milligan and Tom Smith (SMU) 15042osexec|Osborne executive, 15043 OTbs, am, 15044 OTug#1, cols#80, lines#24, xmc#1, 15045 OTnl=^J, bel=^G, clear=^Z, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 15046 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW, 15047 dl1=\ER, ed=\EY, el=\ET, home=^^, hts=\E1, ich1=\EQ, il1=\EE, 15048 is2=\Eq\Ek\Em\EA\Ex0, kbs=^H, kcub1=^H, kcud1=^J, kcuf1=^L, 15049 kcuu1=^K, kf0=^A@\r, kf1=^AA\r, kf2=^AB\r, kf3=^AC\r, 15050 kf4=^AD\r, kf5=^AE\r, kf6=^AF\r, kf7=^AG\r, kf8=^AH\r, 15051 kf9=^AI\r, rmir=, rmso=\Ek, rmul=\Em, smir=, smso=\Ej, 15052 smul=\El, tbc=\E3, 15053 15054#### Console types for obsolete UNIX clones 15055# 15056# Coherent, Minix, Venix, and several lesser-known kin were OSs for 8088 15057# machines that tried to emulate the UNIX look'n'feel. Coherent and Venix 15058# were commercial, Minix an educational tool sold in conjunction with a book. 15059# Memory-segmentation limits and a strong tendency to look like V7 long after 15060# it was obsolete made all three pretty lame. Venix croaked early. Coherent 15061# and Minix were ported to 32-bit Intel boxes, only to be run over by a 15062# steamroller named `Linux' (which, to be fair, traces some lineage to Minix). 15063# Coherent's vendor, the Mark Williams Company, went belly-up in 1994. There 15064# are also, I'm told, Minix ports that ran on Amiga and Atari machines and 15065# even as single processes under SunOS and the Macintosh OS. 15066# 15067 15068# This is the entry provided with minix 1.7.4, with bogus :ri: removed. 15069minix|minix console (v1.7), 15070 am, xenl, 15071 cols#80, it#8, lines#25, 15072 bel=^G, blink=\E[5m, bold=\E[1m, clear=\E[H\E[0J, cr=^M, 15073 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=\E[B, 15074 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 15075 cuu=\E[%p1%dA, cuu1=\E[A, dch=\E[%p1%dP, dch1=\E[P, 15076 dl=\E[%p1%dM, dl1=\E[M, ed=\E[0J, el=\E[K, home=\E[H, ht=^I, 15077 ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, il1=\E[L, ind=^J, 15078 is2=\E[0m, kbs=^H, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, 15079 kcuu1=\E[A, kf0=\E[Y, kf1=\E[V, kf2=\E[U, kf3=\E[T, kf4=\E[S, 15080 kf5=\E[G, khome=\E[H, lf0=End, lf1=PgUp, lf2=PgDn, lf3=Num +, 15081 lf4=Num -, lf5=Num 5, nel=^M^J, rev=\E[7m, ri=\EM, 15082 rmso=\E[0m, rmul=\E[0m, sgr0=\E[0m, smso=\E[7m, smul=\E[4m, 15083# Corrected Jan 14, 1997 by Vincent Broman <broman@nosc.mil> 15084minix-old|minix console (v1.5), 15085 xon, 15086 cols#80, it#8, lines#25, 15087 bel=^G, blink=\E[5m, bold=\E[1m, clear=\E[H\E[0J, cr=^M, 15088 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=\E[B, 15089 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 15090 cuu=\E[%p1%dA, cuu1=\E[A, dch=\E[%p1%dP, dch1=\E[P, 15091 dl=\E[%p1%dM, dl1=\E[M, ed=\E[0J, el=\E[K, home=\E[H, ht=^I, 15092 ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, il1=\E[L, ind=^J, 15093 kbs=^H, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, 15094 kf0=\E[Y, kf1=\E[V, kf2=\E[U, kf3=\E[T, kf4=\E[S, kf5=\E[G, 15095 khome=\E[H, nel=^M^J, rev=\E[7m, ri=\EM, rmso=\E[0m, 15096 rmul=\E[0m, sgr0=\E[0m, smso=\E[7m, smul=\E[4m, 15097# The linewrap option can be specified by editing /usr/include/minix/config.h 15098# before recompiling the minix 1.5 kernel. 15099minix-old-am|minix console with linewrap, 15100 am, use=minix-old, 15101 15102pc-minix|minix console on an Intel box, 15103 use=klone+acs, use=minix, 15104 15105# According to the Coherent 2.3 manual, the PC console is similar 15106# to a z19. The differences seem to be (1) 25 lines, (2) no status 15107# line, (3) standout is broken, (4) ins/del line is broken, (5) 15108# has blinking and bold. 15109pc-coherent|pcz19|coherent|IBM PC console running Coherent, 15110 am, mir, 15111 cols#80, it#8, lines#25, 15112 bel=^G, clear=\EE, cr=^M, cub1=^H, cud1=\EB, cuf1=\EC, 15113 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, dch1=\EN, 15114 ed=\EJ, el=\EK, home=\EH, ht=^I, ind=^J, kbs=^H, kcub1=\ED, 15115 kcud1=\EB, kcuf1=\EC, kcuu1=\EA, khome=\EH, ri=\EI, rmir=\EO, 15116 rmso=\Eq, sgr0=\Eq, smir=\E@, smso=\Ep, 15117 15118# According to the Venix 1.1 manual, the PC console is similar 15119# to a DEC vt52. Differences seem to be (1) arrow keys send 15120# different strings, (2) enhanced standout, (3) added insert/delete line. 15121# Note in particular that it doesn't have automatic margins. 15122# There are other keys (f1-f10, kpp, knp, kcbt, kich1, kdch1) but they 15123# not described here because this derives from an old termcap entry. 15124pc-venix|venix|IBM PC console running Venix, 15125 cols#80, it#8, lines#25, 15126 bel=^G, clear=\EH\EJ, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 15127 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, dl1=\EM, 15128 ed=\EJ, el=\EK, ht=^I, il1=\EL, ind=^J, kbs=^H, kcub1=\EK, 15129 kcud1=\EP, kcuf1=\EM, kcuu1=\EH, khome=\EG, ri=\EI, 15130 15131#### Miscellaneous microcomputer consoles 15132# 15133# If you know anything more about any of these, please tell me. 15134# 15135 15136# The MAI Basic Four computer was obsolete at the end of the 1980s. 15137# It may be used as a terminal by putting it in "line" mode as seen on 15138# one of the status lines. 15139# Initialization is similar to CIT80. <is2> will set ANSI mode for you. 15140# Hardware tabs set by <if> at 8-spacing. Auto line wrap causes glitches so 15141# wrap mode is reset by <cvvis>. Using <ind>=\E[S caused errors so I 15142# used \ED instead. 15143# From: bf347@lafn.org (David Lawyer), 28 Jun 1997 15144mai|basic4|MAI Basic Four in ansi mode, 15145 am, da, db, mir, msgr, 15146 cols#82, it#8, lines#25, 15147 bel=^G, blink=\E[5m, bold=\E[1m, clear=^]^_, cnorm=\E[?7h, 15148 cr=^M, csr=\E[%i%p1%d;%p2%dr, cub1=^H, cud1=^J, cuf1=^X, 15149 cup=\E[%i%p1%d;%p2%dH, cuu1=^Z, cvvis=\E[?7l, dch1=\E[1P, 15150 dl1=\E[M, ed=^_, el=^^, home=^], ht=^I, 15151 if=/usr/lib/tabset/vt100, il1=\E[L, ind=\ED, 15152 is2=\E>\E[?1h\E[?7h\E[?5l\017\E(B\E[m\E[20l\E[1;24r\E[24;1H, 15153 kbs=^H, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, 15154 kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf5=\EOT, kf6=\EOU, 15155 kf7=\EOV, kf8=\EOW, nel=^M\ED, rc=\E8, rev=\E[7m, ri=\E[T, 15156 rmir=\E[4l, rmso=\E[m, rmul=\E[m, sc=\E7, sgr0=\E[m, 15157 smir=\E[4h, smso=\E[7m, smul=\E[4m, 15158# basis from Peter Harrison, Computer Graphics Lab, San Francisco 15159# ucbvax!ucsfmis!harrison ...uucp / ucbvax!ucsfmis!harrison@BERKELEY ...ARPA 15160# 15161# On Sat, 7 Aug 1999, Torsten Jerzembeck <toje@nightingale.ms.sub.org> wrote: 15162# The Basis 108 was a Apple II clone, manufactured by the "Basis 15163# Mikrocomputer GmbH" in Munster, Germany (the company still exists today, 15164# about 1,5 km from where I live, but doesn't build own computers any 15165# more). A Basis 108 featured a really heavy (cast aluminium?) case, was 15166# equipped with one or two 5.25" disk drives, had a monochrome and colour 15167# video output for a TV set or a dedicated monitor and several slots for 15168# Apple II cards. Basis 108 were quite popular at german schools before 15169# the advent of the IBM PC. They run, for example, the UCSD Pascal 15170# development system (which I used even in 1993 to program the steering 15171# and data recording for our school's experimental solar panel :), Apple DOS 15172# or CP/M. 15173# (basis: removed obsolete ":ma=^K^P^R^L^L :nl=5000*^J:" -- esr) 15174basis|BASIS108 computer with terminal translation table active, 15175 clear=\E*$<300/>, cud1=\n$<5000/>, ed=\EY, el=\ET, kbs=^H, 15176 kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, rmso=\E), sgr0=\E), 15177 smso=\E(, use=adm3a, 15178# luna's BMC terminal emulator 15179luna|luna68k|LUNA68K Bitmap console, 15180 cols#88, lines#46, use=ansi-mini, 15181megatek|pegasus workstation terminal emulator, 15182 am, os, 15183 cols#83, lines#60, 15184# The Xerox 820 was a Z80 micro with a snazzy XEROX PARC-derived 15185# interface (pre-Macintosh by several years) that went nowhere. 15186xerox820|x820|Xerox 820, 15187 am, 15188 cols#80, lines#24, 15189 bel=^G, clear=1^Z, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 15190 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, ed=^Q, el=^X, 15191 home=^^, ind=^J, 15192 15193#### Videotex and teletext 15194# 15195 15196# \E\:1} switch to te'le'informatique mode (ascii terminal/ISO 6429) 15197# \E[?3l 80 columns 15198# \E[?4l scrolling on 15199# \E[12h local echo off 15200# \Ec reset: G0 U.S. charset (to get #,@,{,},...), 80 cols, clear screen 15201# \E)0 G1 DEC set (line graphics) 15202# 15203# From: Igor Tamitegama <igor@ppp1493-ft.teaser.fr>, 18 Jan 1997 15204m2-nam|minitel|minitel-2|minitel-2-nam|France Telecom Minitel 2 mode te'le'informatique, 15205 OTbs, eslok, hs, xenl, 15206 cols#80, it#8, lines#24, wsl#72, xmc#0, 15207 acsc=aaffggjjkkllmmnnooqqssttuuvvwwxx, bel=^G, 15208 blink=\E[5m, bold=\E[1m, civis=\E[<1h, clear=\E[H\E[J, 15209 cnorm=\E[<1l, cr=^M, csr=\E[%i%p1%d;%p2%dr, 15210 cub=\E[%p1%dD, cub1=\E[D, cud=\E[%p1%dB, cud1=\E[B, 15211 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 15212 cuu=\E[%p1%dA, cuu1=\E[A, dch=\E[%p1%dP, dch1=\E[P, 15213 dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, flash=^G, fsl=^J, 15214 home=\E[H, ht=^I, il=\E[%p1%dL, il1=\E[L, ind=^J, ip=$<7/>, 15215 is1=\E\:1}\Ec\E[?4l\E[12h, is2=\Ec\E[12h\E)0, 15216 is3=\E[?3l kbs=\010, kclr=\E[2J, kcub1=\E[D, kcud1=\E[B, 15217 kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[P, kdl1=\E[M, kf0=\EOp, 15218 kf1=\EOq, kf10=\EOp, kf2=\EOr, kf3=\EOs, kf4=\EOt, kf5=\EOu, 15219 kf6=\EOv, kf7=\EOw, kf8=\EOx, kf9=\EOy, khome=\E[H, 15220 kich1=\E[4h, kil1=\E[4l, knp=\EOn, kpp=\EOR, ll=\E[24;80H, 15221 mc0=\E[i, nel=^M^J, rc=\E8, rev=\E[7m, ri=\EM, rmacs=^O, 15222 rmir=\E[4l, rmso=\E[27m, rmul=\E[24m, 15223 rs1=\Ec\E[?4l\E[12h, rs2=\Ec\E)0, sc=\E7, sgr0=\E[m, 15224 smacs=^N, smir=\E[4h, smso=\E[7m, smul=\E[4m, tsl=^_@A, 15225 u6=\E[%i%d;%dR, u7=\E[6n, 15226 15227# From: Alexandre Montaron <canal@mygale.org>, 18 Jun 1998 15228# 15229minitel1|minitel 1, 15230 am, bw, eslok, hs, hz, msgr, 15231 colors#8, cols#40, lines#24, pairs#8, 15232 acsc=+.\,\,./f0g1, bel=^G, blink=\EH, civis=^T, clear=^L, 15233 cnorm=^Q, cr=^M, cub1=^H, cud1=^J, cuf1=^I, 15234 cup=\037%p1%{65}%+%c%p2%{65}%+%c, cuu1=^K, el=^X, 15235 enacs=^Y, fsl=^J, home=^^, ind=^J, 15236 is2=\E;`ZQ\E\:iC\E\:iE\021, nel=^M^J, op=\EG, 15237 rep=%p1%c\022%p2%{63}%+%c, rev=\E], ri=^K, rmso=\E\\, 15238 setf=\E%?%p1%{1}%=%tD%e%p1%{3}%=%tF%e%p1%{4}%=%tA%e%p1%{6}%=%tC%e%p1%{64}%+%c%;, 15239 sgr=%?%p1%t\E]%;%?%p3%t\E]%;%?%p4%t\EH%;, 15240 sgr0=\EI\E\\, smso=\E], tsl=\037@%p1%{65}%+%c, 15241# is2=Fnct TE, Fnct MR, Fnct CM et pour finir: curseur ON. 15242minitel1b|minitel 1-bistandard (in 40cols mode), 15243 mir, 15244 cub=\E[%p1%dD, cud=\E[%p1%dB, cuf=\E[%p1%dC, 15245 cuu=\E[%p1%dA, dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, 15246 dl1=\E[M, ed=\E[J, el1=\E[1K, il=\E[%p1%dL, il1=\E[L, 15247 is1=\E;iYA\E;jYC, kclr=\E[2J, kctab=^I, kcub1=\E[D, 15248 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[P, kdl1=\E[M, 15249 kel=^X, khome=\E[H, kich1=\E[4h, kil1=\E[L, rmir=\E[4l, 15250 smir=\E[4h, smkx=\E;iYA\E;jYC, use=minitel1, 15251# <rmkx> posait des problemes (logout en sortant de vi). 15252minitel1b-80|minitel 1-bistandard (standard teleinformatique), 15253 am@, bw@, hz@, 15254 colors@, cols#80, it#8, pairs@, 15255 blink=\E[5m, bold=\E[1m, civis=\037@A\024\n, 15256 clear=\E[H\E[2J, cnorm=\037@A\021\n, cuf1=\E[C, 15257 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, el=\E[K, home=\E[H, 15258 ht=^I, ind=\ED, is1@, is2@, kent=\EOM, kf0=\EOp, kf1=\EOq, 15259 kf2=\EOr, kf3=\EOs, kf4=\EOt, kf5=\EOu, kf6=\EOv, kf7=\EOw, 15260 kf8=\EOx, kf9=\EOy, nel=\EE, op@, rc=\E8, rep@, rev=\E[7m, 15261 ri=\EM, rmkx@, rmso=\E[27m, rmul=\E[24m, sc=\E7, setf@, 15262 sgr=\E[%?%p1%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p6%t1;%;m, 15263 sgr0=\E[m, smkx@, smso=\E[7m, smul=\E[4m, use=minitel1b, 15264 15265######## OBSOLETE VDT TYPES 15266# 15267# These terminals are *long* dead -- these entries are retained for 15268# historical interest only. 15269 15270#### Amtek Business Machines 15271# 15272 15273# (abm80: early versions of this entry apparently had ":se=\E^_:so=\E^Y", 15274# but these caps were commented out in 8.3; also, removed overridden 15275# ":do=^J:" -- esr) 15276abm80|amtek business machines 80, 15277 OTbs, am, bw, 15278 cols#80, lines#24, 15279 cbt=^T, clear=\E^\, cub1=^H, cud1=\E^K, cuf1=^P, 15280 cup=\E\021%p2%{32}%+%c%p1%{32}%+%c, cuu1=\E^L, 15281 dl1=\E^S, ed=\E^X, el=\E^O, home=\E^R, il1=\E^Z, 15282 15283#### Bell Labs blit terminals 15284# 15285# These were AT&T's official entries. The 5620 FAQ maintained by 15286# David Breneman <daveb@dgtl.com> has this to say: 15287# 15288# Actually, in the beginning was the Jerq, and the Jerq was white with a 15289# green face, and Locanthi and Pike looked upon the Jerq and said the Jerq 15290# was good. But lo, upon the horizon loomed a mighty management-type person 15291# (known now only by the initials VP) who said, the mighty Jerq must stay 15292# alone, and could not go forth into the world. So Locanthi and Pike put the 15293# Jerq to sleep, cloned its parts, and the Blit was brought forth unto the 15294# world. And the Jerq lived the rest of its days in research, but never 15295# strayed from those paths. 15296# 15297# In all seriousness, the Blit was originally known as the Jerq, but when 15298# it started to be shown outside of the halls of the Bell Labs Research 15299# organization, the management powers that be decided that the name could 15300# not remain. So it was renamed to be Blit. This was in late 1981. 15301# 15302# (The AT&T 5620 was the commercialized Blit. Its successors were the 630, 15303# 730, and 730+.) 15304# 15305 15306blit|jerq|blit running teletype rom, 15307 am, eo, ul, xon, 15308 cols#87, it#8, lines#72, 15309 bel=^G, clear=^L, cr=^M, cub1=\ED, cud1=^J, cuf1=\EC, 15310 cup=\EY%p2%{32}%+%c%p1%{32}%+%c, cuu1=\EA, 15311 dch=\Ee%p1%{32}%+%c, dch1=\Ee!, dl=\EE%p1%{32}%+%c, 15312 dl1=\EE!, el=\EK, ht=^I, ich=\Ef%p1%{32}%+%c, ich1=\Ef!, 15313 il=\EF%p1%{32}%+%c, il1=\EF!, ind=^J, kbs=^H, kcub1=\ED, 15314 kcud1=\EB, kcuf1=\EC, kcuu1=\EA, kf1=\Ex, kf2=\Ey, kf3=\Ez, 15315 15316# (cbblit: here's a BSD termcap that says <cud1=\EG> -- esr) 15317cbblit|fixterm|blit running columbus code, 15318 cols#88, 15319 ed=\EJ, flash=\E^G, ich1@, mc4=^T, mc5=^R, mc5p=\EP%p1%03d, 15320 rmir=\ER, rmso=\EV!, rmul=\EV", smir=\EQ, smso=\EU!, 15321 smul=\EU", use=blit, 15322 15323oblit|ojerq|first version of blit rom, 15324 am, da, db, eo, mir, ul, xon, 15325 cols#88, it#8, lines#72, 15326 bel=^G, clear=^L, cr=^M, cub1=\ED, cud1=^J, cuf1=\EC, 15327 cup=\EY%p2%{32}%+%c%p1%{32}%+%c, cuu1=\EA, dch1=\EO, 15328 dl=\Ee%p1%{32}%+%c, dl1=\EE, ed=\EJ, el=\EK, flash=\E^G, 15329 ht=^I, il=\Ef%p1%{32}%+%c, il1=\EF, ind=^J, kbs=^H, rmir=\ER, 15330 smir=\EQ, 15331 15332#### Bolt, Beranek & Newman (bbn) 15333# 15334# The BitGraph was a product of the now-defunct BBN Computer Corporation. 15335# The parent company, best known as the architects of the Internet, is 15336# still around. 15337# 15338# Jeff DelPapa <dp@world.std.com> writes: 15339# The bitgraph was a large white box that contained a monochrome bitmap 15340# display, and a 68000 to run it. You could download code and run it on 15341# the cpu, it had 128kb (I think) of memory. I used one in the late 15342# 70's, sure beat a vt100. It had one strange feature tho -- it used 15343# the cpu to bitblt pixels to scroll, it took longer than the refresh 15344# rate, and looked like a rubber sheet stretching, then snapping 15345# upwards. It had everything the early mac had, except a floppy drive a 15346# small screen (it had a 17" crisp beauty) and a real OS. They (Bolt 15347# Beranek and Neuman) sold at most a few hundred of them to the real 15348# world. DOD may have bought more... 15349# 15350 15351# Entries for the BitGraph terminals. The problem 15352# with scrolling in vi can only be fixed by getting BBN to put 15353# smarter scroll logic in the terminal or changing vi or padding 15354# scrolls with about 500 ms delay. 15355# 15356# I always thought the problem was related to the terminal 15357# counting newlines in its input buffer before scrolling and 15358# then moving the screen that much. Then vi comes along and 15359# paints lines in on the bottom line of the screen, so you get 15360# this big white gap. 15361 15362bitgraph|bg2.0nv|bg3.10nv|bbn bitgraph 2.0 or later (normal video), 15363 flash=\E[?5h$<200/>\E[?5l, is2=\E>\E[?5l\E[?7h, 15364 use=bg2.0, 15365bg2.0rv|bg3.10rv|bbn bitgraph 2.0 (reverse video), 15366 flash=\E[?5l$<200/>\E[?5h, is2=\E>\E[?5h\E[?7h, 15367 use=bg2.0, 15368bg2.0|bg3.10|bbn bitgraph 2.0 or later (no init), 15369 OTbs, xenl, 15370 cols#85, lines#64, 15371 bel=^G, clear=\E[H\E[J$<150>, cr=^M, 15372 csr=\E[%i%p1%d;%p2%dr, cub1=^H, cud1=\E[B, cuf1=\E[C, 15373 cup=%i\E[%p1%d;%p2%dH, cuu1=\E[A, dl1=\E[M$<2*>, 15374 ed=\E[J$<150>, el=\E[K$<2>, ht=^I, il1=\E[L$<2*>, 15375 ind=\n$<280>, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, 15376 kcuu1=\E[A, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, lf1=PF1, 15377 lf2=PF2, lf3=PF3, lf4=PF4, rc=\E8, rmkx=\E>, rmso=\E[m, sc=\E7, 15378 sgr0=\E[m, smkx=\E=, smso=\E[7m, 15379 15380bg1.25rv|bbn bitgraph 1.25 (reverse video), 15381 flash=\E[?5l$<200/>\E[?5h, is2=\E>\E[?5h\E[?7h, 15382 use=bg1.25, 15383bg1.25nv|bbn bitgraph 1.25 (normal video), 15384 flash=\E[?5h$<200/>\E[?5l, is2=\E>\E[?5l\E[?7h, 15385 use=bg1.25, 15386# (bg1.25: I added <rmam>/<smam> based on the init string -- esr) 15387bg1.25|bbn bitgraph 1.25, 15388 cols#85, lines#64, 15389 bel=^G, clear=\E[H\E[J$<150>, cr=^M, cub1=^H, cud1=\E[B, 15390 cuf1=\E[C, cup=%i\E[%p1%d;%p2%dH, cuu1=\E[A, 15391 dl1=\E[M$<2*>, ed=\E[J$<150>, el=\E[K$<2>, ht=^I, 15392 il1=\E[L$<2*>, ind=\n$<280>, kcub1=\ED, kcud1=\EB, 15393 kcuf1=\EC, kcuu1=\EA, kf1=\EP, kf2=\EQ, kf3=\ER, kf4=\ES, 15394 lf1=PF1, lf2=PF2, lf3=PF3, lf4=PF4, ll=\E[64;1H, rmam=\E[?7l, 15395 rmkx=\E>, rmso=\E[m, sgr0=\E[m, smam=\E[?7h, smkx=\E=, 15396 smso=\E[7m, 15397 15398#### Bull (bq, dku, vip) 15399# 15400# (Adapted for terminfo; AIX extension capabilities translated -- esr) 15401 15402#============================================# 15403# BULL QUESTAR 210 `SDP' terminals emulation # 15404#============================================# 15405# 15406# Description written by R.K.Saunders (Bull Transac) 15407# 15408# Modifications written by F. Girard (Bull MTS) 15409# 19-05-87 V02.00.01 15410# 17-12-87 V02.00.02 15411# 15-09-89 V02.00.05 15412# 15413# Typical technical selections F1 (modes SDP/ROLL): 15414# ------------------------------------------------------- 15415# | 01 02 03 04 05 06 07 08 09 10 | 15416# | 1010 0011 1010 0110 0110 0001 0100 0000 0000 0000 | 15417# | | 15418# | 11 12 13 14 15 16 17 18 19 20 | 15419# | 0000 0110 100? 0000 0000 0000 0001 0000 0000 0001 | 15420# | | 15421# | 21 22 23 24 25 26 27 28 29 30 | 15422# | 0011 0000 0001 1000 0000 0000 0000 0000 0000 0000 | 15423# | | 15424# | 31 32 33 34 35 36 37 38 39 40 | 15425# | 1010 0011 0000 0000 0000 0000 0000 0000 0000 0000 | 15426# ------------------------------------------------------- 15427# Typical firmware identification F5 "etat 6": 15428# P287.02.04b (AZERTY) 15429# P297.11.04 (24-pin: 2732) or P798.11.04 (28-pin: 2764) 15430# P298.03.03 (monochrome) or P374.03.02 (colour) 15431# 15432# SM SDP mode (VIP command): ^[[?=h 15433# RIS (erases screen): ^[c 15434# DMI disable keyboard: ^[` 15435# SM double rendition mode: ^[[?>h 15436# RM solicited status mode: ^[[5l 15437# RM character mode: ^[[>l 15438# RM echoplex mode: ^[[12l 15439# RM column tab mode: ^[[18l 15440# RM forbid SS2 keyboard mode: ^[[?<l 15441# SM scroll mode: ^[[=h 15442# FCF enable XON/XOFF: ^[P1s^[\ 15443# MTL select end msg character: ^[[^Wp 15444# EMI enable keyboard: ^[b 15445# RIS retour etat initial: ^[c 15446# enable FC keypad: ^[[?<h, 15447# MPW map status line window: ^[PY99:98^[\ 15448# SCP select status line: ^[[0;98v 15449# ED erase entire partition: ^[[2J 15450# SCP select main partition: ^[[v 15451# SM character insertion mode: ^[[4h 15452# RM character replacement mode: ^[[4l 15453# COO cursor on: ^[[r 15454# COO cursor off: ^[[1r 15455# SGR dim (turquoise) rev attr: ^[[2;7m 15456# SGR Data normal attr: ^[[m 15457# SO Line-graphic mode ON: ^N 15458# SI Line-graphic mode OFF: ^O 15459# MC start routing to printer: ^[[5i 15460# MC stop routing to printer: ^M^[[4i 15461# 15462 15463# This entry covers the following terminals: 15464# dku7102, tws2102, and tws models 2105 to 2112 15465tws-generic|dku7102|Bull Questar tws terminals, 15466 am, eslok, hs, mir, msgr, xenl, xhp@, xon, 15467 cols#80, it#8, lines#24, wsl#80, 15468 acsc=``aaffggj)k\,l&m#n/ooppq*rrsst'u-v+w.x%yyzz{{||}}~~, 15469 bel=^G, blink=\E[0;5m, cbt=\E[Z, civis=\E[1r, clear=\E[2J, 15470 cnorm=\E[r, cr=^M, cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, 15471 cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%df, 15472 cuu=\E[%p1%dA, cuu1=\E[A, dch=\E[%p1%dP, dch1=\E[P, 15473 dim=\E[0;2m, dl=\E[%p1%dM, dl1=\E[M, 15474 dsl=\EPY99\:98\E\\\E[0;98v\E[2J\E[v, ed=\E[J, el=\E[K, 15475 fsl=\E[v, home=\E[H, ht=\E[I, hts=\EH, il=\E[%p1%dL, 15476 il1=\E[L, ind=^J, invis=\E[0;8m, 15477 is1=\E[?=h\Ec\E`\E[?>h\EPY99\:98\E\\, 15478 is2=\E[5;>;12;18;?<l\E[=h\EP1s\E\\\E[\027p, 15479 is3=\Eb\E[?<h, kbs=^H, kcbt=\E[Z, kctab=\E[g, kcub1=\E[D, 15480 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[P, kdl1=\E[M, 15481 ked=\E[J, kel=\E[K, kf1=\E[1u\027, kf2=\E[2u\027, 15482 kf3=\E[3u\027, kf4=\E[4u\027, kf5=\E[5u\027, 15483 kf6=\E[6u\027, kf7=\E[7u\027, kf8=\E[8u\027, khome=\E[H, 15484 khts=\EH, kil1=\E[L, krmir=\E[4l, ll=\E[H\E[A, mc0=\E[0i, 15485 mc4=\r\E[4i, mc5=\E[5i, rev=\E[0;7m, rmacs=^O, 15486 rmcup=\E[0;98v\E[2J\E[v, rmir=\E[4l, rmso=\E[m, 15487 rmul=\E[m, rs2=\E[?=h\Ec, s0ds=^O, s1ds=^N, 15488 sgr=\E[0%?%p1%p3%|%t;7%;%?%p2%t;4%;%?%p4%t;5%;%?%p5%t;2%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, 15489 sgr0=\E[m\017, smacs=^N, smcup=\E[?>h\EPY99\:98\E\\, 15490 smir=\E[4h, smso=\E[0;7m, smul=\E[0;4m, tbc=\E[2g, 15491 tsl=\EPY99\:98\E\\\E[0;98v\E[2;7m, 15492tws2102-sna|dku7102-sna|BULL Questar tws2102 for SNA, 15493 dsl=\E[0;98v\E[2J\E[v, fsl=\E[v, is3=\Eb, tsl=\E[0;98v, 15494 use=tws-generic, 15495tws2103|xdku|BULL Questar tws2103, 15496 ht=^I, use=tws-generic, 15497tws2103-sna|dku7103-sna|BULL Questar tws2103 for SNA, 15498 ht=^I, use=tws2102-sna, 15499dku7102-old|BULL Questar 200 DKU7102 (microcode version < 6), 15500 clear=\E[2J\E[H, cup@, dl@, dl1@, 15501 dsl=\EPY99\:98\E\\\E[0;98v\E[2J\E[H\E[v, el=\E[K\E[m, 15502 il@, il1@, tsl=\EPY99\:98\E\\\E[0;98v\E[H\E[2;7m, 15503 use=tws-generic, 15504dku7202|BULL Questar 200 DKU7202 (colour/character attributes), 15505 blink=\E[0;2;4m, dim=\E[0;5m, ht=^I, is3=\E[?3h\Eb, 15506 smso=\E[0;4;5;7m, smul=\E[0;2m, use=tws-generic, 15507 15508#=========================================================# 15509# BULL QUESTAR 303 & 310 `DEC VT 320' terminals emulation # 15510#=========================================================# 15511# 15512# Description written by J. Staerck (BULL SA) 15513# Copyright (c) 1989 BULL SA 15514#--------------------------------------------------------------------------- 15515# This entry is used for terminals with vt320 emulation mode 15516# and following set-up : 15517# 8 bit ISO Latin Character Set (ISO 8859-1), 15518# 7 bit Control Characters, 15519# 80 columns screen. 15520# Hereafter are some DEC vt terminals' commands. (valid on vt200 and 300) 15521# They are used in string capabilities with vt220-320 emulation mode. 15522# In the following DEC definitions, two kinds of terminfo databases are 15523# provided : 15524# 1. the first with Command Sequence Introducer starting with escape 15525# sequence in 7 bits characters ex. ESC [ : 2 chars. in 7-bit mode. 15526# 2. the second with Command Sequence Introducer starting with escape 15527# sequence in 8 bits characters ex. ESC [ : 1 char. 'CSI' =x9B. 15528# Soft Terminal Reset esc [ ! p 15529# RIS (erases screen): esc c 15530# DECKPNM numeric keypad mode: esc > 15531# DECKPAM applic. keypad mode: esc = 15532# DECSTBM Scrolling region: esc [ r 15533# SCS select G0 = US: esc ( B 15534# SCS select G1 = line-graphic: esc ) 0 15535# Select 7-bit C1 controls: esc sp F 15536# Select 8-bit C1 controls: esc sp G 15537# Select cursor home: esc [ H 15538# Select erase screen: esc [ J 15539# SM KAM lock keyboard: esc [ 2 h 15540# RM KAM unlock keyboard: esc [ 2 l 15541# SM SRM local echo off: esc [ 1 2 h 15542# RM SRM local echo on: esc [ 1 2 l 15543# SM LNM New line : esc [ 2 0 h 15544# RM LNM return = CR only: esc [ 2 0 l 15545# SM DECCKM cursor keys mode: esc [ ? 1 h 15546# RM DECCKM appli. keys mode: esc [ ? 1 l 15547# SM DECANM ANSI mode on: esc [ ? 2 h 15548# RM DECANM ANSI mode off: esc [ ? 2 l 15549# SM DECCOLM 132-column screen: esc [ ? 3 h 15550# RM DECCOLM 80-column screen: esc [ ? 3 l 15551# SM DECSCLM Smooth scroll: esc [ ? 4 h 15552# RM DECSCLM Jump scroll: esc [ ? 4 l 15553# SM DECSCNM screen light backgr. esc [ ? 5 h 15554# RM DECSCNM screen dark backgr. esc [ ? 5 l 15555# SM DECOM move within margins: esc [ ? 6 h 15556# RM DECOM move outside margins: esc [ ? 6 l 15557# SM DECAWM auto right margin: esc [ ? 7 h 15558# RM DECAWM auto right margin: esc [ ? 7 l 15559# SM DECARM auto repeat: esc [ ? 8 h 15560# RM DECARM auto repeat: esc [ ? 8 l 15561# DECSASD Select active main: esc [ 0 $ } 15562# DECSASD Select active status: esc [ 1 $ } 15563# DECSSDT Select status none: esc [ 0 $ ~ 15564# DECSSDT Select status indic.: esc [ 1 $ ~ 15565# DECSSDT Select status host-wr: esc [ 2 $ ~ 15566# SM DECTCEM Visible cursor: esc [ ? 2 5 h 15567# RM DECTCEM Invisible cursor: esc [ ? 2 5 l 15568# SM DECNCRM 7 bits NCR set: esc [ ? 4 2 h 15569# RM DECNCRM Multi or ISO latin: esc [ ? 4 2 l 15570# SM DECNKM numeric keypad mode: esc [ ? 6 6 h 15571# RM DECNKM numeric keypad appl.: esc [ ? 6 6 l 15572# SM DECKBUM clavier informatique esc [ ? 6 8 h 15573# RM DECKBUM clavier bureautique: esc [ ? 6 8 l 15574# DECSCL vt300 mode 8-bit ctrl: esc [ 6 3 " p 15575# or DECSCL vt300 mode 8-bit ctrl: esc [ 6 3 ; 0 " p 15576# or DECSCL vt300 mode 8-bit ctrl: esc [ 6 3 ; 2 " p 15577# DECSCL vt300 mode 7-bit ctrl: esc [ 6 3 ; 1 " p 15578# Char. and Line attributes: esc [ Ps ... Ps m 15579# with: 0 All off, 1 Bold, 4 Underline, 5 Blinking, 7 Reverse 15580# and : 22 Bold off, 24 Underline off, 25 Blinking off, 27 Reverse off 15581# 15582 15583# This entry covers BQ303, BQ306, BQ310, Q303, Q306, Q310 15584bq300|Bull vt320 ISO Latin 1 80 columns terminal, 15585 am, eo, eslok, hs, km, mc5i, mir, msgr, xenl, xon, 15586 cols#80, it#8, lines#24, vt#3, wsl#80, 15587 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 15588 bel=^G, blink=\E[5m, bold=\E[1m, civis=\E[?25l, 15589 clear=\E[H\E[J, cnorm=\E[?25h, cr=^M, 15590 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=\E[D, 15591 cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, 15592 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 15593 cvvis=\E[?25h, dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, 15594 dl1=\E[M, dsl=\E[1$}\E[2$~\n\E[0$}, ech=\E[%p1%dX, 15595 ed=\E[J, el=\E[K, el1=\E[1K, enacs=\E(B\E)0, 15596 flash=\E[?5h$<50>\E[?5l, fsl=\E[0$}, home=\E[H, ht=^I, 15597 hts=\EH, ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L, ind=\ED, 15598 is1=\E[63;1"p\E[2h, 15599 is2=\E[?2h\E[?3l\E[?5l\E[?7h\E[?8h\E>\E[?1l\E F\E[?42l\E[?4l, 15600 is3=\E[0$}\E[?25h\E[2l\E[H\E[J, ka1=\EOw, ka3=\EOy, 15601 kb2=\EOu, kbs=^H, kc1=\EOq, kc3=\EOs, kcub1=\E[D, kcud1=\E[B, 15602 kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[3~, kf1=\EOP, kf10=\E[21~, 15603 kf11=\E[23~, kf12=\E[24~, kf13=\E[25~, kf14=\E[26~, 15604 kf15=\E[28~, kf16=\E[29~, kf17=\E[31~, kf18=\E[32~, 15605 kf19=\E[33~, kf2=\EOQ, kf20=\E[34~, kf3=\EOR, kf4=\EOS, 15606 kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, kfnd=\E[1~, 15607 khlp=\E[28~, kich1=\E[2~, knp=\E[6~, kpp=\E[5~, 15608 krdo=\E[29~, kslt=\E[4~, lf1=pf1, lf2=pf2, lf3=pf3, lf4=pf4, 15609 mc0=\E[i, mc4=\E[4i, mc5=\E[5i, nel=\EE, rc=\E8, rev=\E[7m, 15610 ri=\EM, rmacs=^O, rmam=\E[?7l, rmcup=\E[?7h, rmir=\E[4l, 15611 rmkx=\E[?1l\E>, rmso=\E[27m, rmul=\E[24m, rs1=\E[!p, 15612 rs2=\E[?3l, s0ds=\E(B, s1ds=\E(0, sc=\E7, 15613 sgr=\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;m%?%p9%t\E(0%e\E(B%;, 15614 sgr0=\E[0m\E(B, smacs=^N, smam=\E[?7h, 15615 smcup=\E[?7l\E[?1l\E(B, smir=\E[4h, smso=\E[7m, 15616 smul=\E[4m, tbc=\E[3g, tsl=\E[1$}\E[2$~, 15617bq300-rv|Bull vt320 reverse 80 columns, 15618 flash=\E[?5l$<50>\E[?5h, 15619 is2=\E[?2h\E[?3l\E[?5h\E[?7h\E[?8h\E>\E[?1l\E F\E[?42l\E[?4l, 15620 use=bq300, 15621bq300-w|Bull vt320 132 columns, 15622 cols#132, wsl#132, 15623 is2=\E[?2h\E[?3h\E[?5l\E[?7h\E[?8h\E>\E[?1l\E F\E[?42l\E[?4l, 15624 rs2=\E[?3h, use=bq300, 15625bq300-w-rv|Bull vt320 reverse mode 132 columns, 15626 cols#132, wsl#132, 15627 flash=\E[?5l$<50>\E[?5h, 15628 is2=\E[?2h\E[?3h\E[?5h\E[?7h\E[?8h\E>\E[?1l\E F\E[?42l\E[?4l, 15629 rs2=\E[?3h, use=bq300, 15630 15631# This entry is used for terminals with vt320 emulation mode 15632# and following set-up : 15633# 8 bit ISO Latin Character Set (ISO 8859-1), 15634# 8 bit Control Characters, (CSI coded as x9B for ESC [) 15635# 80 columns screen. 15636# Soft Terminal Reset csi ! p 15637# RIS (erases screen): esc c 15638# DECKPNM numeric keypad mode: esc > 15639# DECKPAM applic. keypad mode: esc = 15640# DECSTBM Scrolling region: esc [ r 15641# SCS select G0 = US: esc ( B 15642# SCS select G1 = line-graphic: esc ) 0 15643# Select 7-bit C1 controls: esc sp F 15644# Select 8-bit C1 controls: esc sp G 15645# Select cursor home: csi H 15646# Select erase screen: csi J 15647# SM KAM lock keyboard: csi 2 h 15648# RM KAM unlock keyboard: csi 2 l 15649# SM SRM local echo off: csi 1 2 h 15650# RM SRM local echo on: csi 1 2 l 15651# SM LNM New line : csi 2 0 h 15652# RM LNM return = CR only: csi 2 0 l 15653# SM DECCKM cursor keys mode: csi ? 1 h 15654# RM DECCKM appli. keys mode: csi ? 1 l 15655# SM DECANM ANSI mode on: csi ? 2 h 15656# RM DECANM ANSI mode off: csi ? 2 l 15657# SM DECCOLM 132-column screen: csi ? 3 h 15658# RM DECCOLM 80-column screen: csi ? 3 l 15659# SM DECSCLM Smooth scroll: csi ? 4 h 15660# RM DECSCLM Jump scroll: csi ? 4 l 15661# SM DECSCNM screen light backgr. csi ? 5 h 15662# RM DECSCNM screen dark backgr. csi ? 5 l 15663# SM DECOM move within margins: csi ? 6 h 15664# RM DECOM move outside margins: csi ? 6 l 15665# SM DECAWM auto right margin: csi ? 7 h 15666# RM DECAWM auto right margin: csi ? 7 l 15667# SM DECARM auto repeat: csi ? 8 h 15668# RM DECARM auto repeat: csi ? 8 l 15669# DECSASD Select active main: csi 0 $ } 15670# DECSASD Select active status: csi 1 $ } 15671# DECSSDT Select status none: csi 0 $ ~ 15672# DECSSDT Select status indic.: csi 1 $ ~ 15673# DECSSDT Select status host-wr: csi 2 $ ~ 15674# SM DECTCEM Visible cursor: csi ? 2 5 h 15675# RM DECTCEM Invisible cursor: csi ? 2 5 l 15676# SM DECNCRM 7 bits NCR set: csi ? 4 2 h 15677# RM DECNCRM Multi or ISO latin: csi ? 4 2 l 15678# DECSCL vt300 mode 8-bit ctrl: csi 6 3 " p 15679# or DECSCL vt300 mode 8-bit ctrl: csi 6 3 ; 0 " p 15680# DECSCL vt300 mode 7-bit ctrl: csi 6 3 ; 1 " p 15681# Char. and Line attributes: csi Ps ... Ps m 15682# with: 0 All off, 1 Bold, 4 Underline, 5 Blinking, 7 Reverse 15683# and : 22 Bold off, 24 Underline off, 25 Blinking off, 27 Reverse off 15684# (bq300-8: <cub1>,<cuf1>,<cuu1>,<cud1>,<dl1>,<il1> to get under 1024 --esr) 15685bq300-8|Bull vt320 full 8 bits 80 columns, 15686 am, eo, eslok, hs, km, mc5i, mir, msgr, xenl, xon, 15687 cols#80, it#8, lines#24, vt#3, wsl#80, 15688 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 15689 bel=^G, blink=\2335m, bold=\2331m, civis=\233?25l, 15690 clear=\233H\233J, cnorm=\233?25h, cr=^M, 15691 csr=\233%i%p1%d;%p2%dr, cub=\233%p1%dD, cud=\233%p1%dB, 15692 cuf=\233%p1%dC, cup=\233%i%p1%d;%p2%dH, cuu=\233%p1%dA, 15693 cvvis=\233?25h, dch=\233%p1%dP, dch1=\233P, 15694 dl=\233%p1%dM, dsl=\2331$}\2332$~\n\2330$}, 15695 ech=\233%p1%dX, ed=\233J, el=\233K, el1=\2331K, 15696 enacs=\E(B\E)0, flash=\233?5h$<50>\233?5l, fsl=\2330$}, 15697 home=\233H, ht=^I, hts=\EH, ich=\233%p1%d@, il=\233%p1%dL, 15698 ind=\ED, is1=\E[63;2"p\E[2h, 15699 is2=\E[?2h\E[?3l\E[?5l\E[?7h\E[?8h\E>\E[?1l\E G\E[?42l\E[?4l, 15700 is3=\2330$}\233?25h\2332l\233H\233J, ka1=\217w, 15701 ka3=\217y, kb2=\217u, kbs=^H, kc1=\217q, kc3=\217s, 15702 kcub1=\233D, kcud1=\233B, kcuf1=\233C, kcuu1=\233A, 15703 kdch1=\2333~, kf1=\217P, kf10=\23321~, kf11=\23323~, 15704 kf12=\23324~, kf13=\23325~, kf14=\23326~, kf15=\23328~, 15705 kf16=\23329~, kf17=\23331~, kf18=\23332~, kf19=\23333~, 15706 kf2=\217Q, kf20=\23334~, kf3=\217R, kf4=\217S, kf6=\23317~, 15707 kf7=\23318~, kf8=\23319~, kf9=\23320~, kfnd=\2331~, 15708 khlp=\23328~, kich1=\2332~, knp=\2336~, kpp=\2335~, 15709 krdo=\23329~, kslt=\2334~, lf1=pf1, lf2=pf2, lf3=pf3, 15710 lf4=pf4, mc0=\233i, mc4=\2334i, mc5=\2335i, nel=\EE, rc=\E8, 15711 rev=\2337m, ri=\EM, rmacs=^O, rmam=\233?7l, rmcup=\233?7h, 15712 rmir=\2334l, rmkx=\233?1l\E>, rmso=\23327m, rmul=\23324m, 15713 rs1=\E[!p, rs2=\E[?3l, s0ds=\E(B, s1ds=\E(0, sc=\E7, 15714 sgr=\233%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;m%?%p9%t\E(0%e\E(B%;, 15715 sgr0=\2330m\E(B, smacs=^N, smam=\233?7h, 15716 smcup=\233?7l\233?1l\E(B, smir=\2334h, smso=\2337m, 15717 smul=\2334m, tbc=\2333g, tsl=\2331$}\2332$~, 15718bq300-8rv|Bull vt320 8-bit reverse mode 80 columns, 15719 flash=\233?5l$<50>\233?5h, 15720 is2=\E[?2h\E[?3l\E[?5h\E[?7h\E[?8h\E>\E[?1l\E G\E[?42l\E[?4l, 15721 use=bq300-8, 15722bq300-8w|Bull vt320 8-bit 132 columns, 15723 cols#132, wsl#132, 15724 is2=\E[?2h\E[?3h\E[?5l\E[?7h\E[?8h\E>\E[?1l\E G\E[?42l\E[?4l, 15725 rs2=\233?3h, use=bq300-8, 15726bq300-w-8rv|Bull vt320 8-bit reverse mode 132 columns, 15727 cols#132, wsl#132, 15728 flash=\233?5l$<50>\233?5h, 15729 is2=\E[?2h\E[?3h\E[?5h\E[?7h\E[?8h\E>\E[?1l\E G\E[?42l\E[?4l, 15730 rs2=\233?3h, use=bq300-8, 15731 15732# This entry is used for terminals with vt320 emulation mode 15733# a 102 keys keyboard (PC scancode !) and following set-up : 15734# 8 bit ISO Latin Character Set (ISO 8859-1), 15735# 7 bit Control Characters, 15736# 80 columns screen. 15737bq300-pc|Questar 303 with PC keyboard ISO Latin 1 80 columns, 15738 kbs=^H, kdch1=\E[3~, kend=\E[4~, kf1=\E[17~, kf10=\E[28~, 15739 kf11=\E[29~, kf12=\E[31~, kf13@, kf14@, kf15@, kf16@, kf17@, 15740 kf18@, kf19@, kf2=\E[18~, kf20@, kf3=\E[19~, kf4=\E[20~, 15741 kf5=\E[21~, kf6=\E[23~, kf7=\E[24~, kf8=\E[25~, kf9=\E[26~, 15742 kfnd@, khlp@, khome=\E[1~, kich1=\E[2~, knp=\E[6~, kpp=\E[5~, 15743 krdo@, kslt@, lf1@, lf2@, lf3@, lf4@, use=bq300, 15744bq300-pc-rv|Questar 303 with PC keyboard reverse mode 80 columns, 15745 flash=\E[?5l$<50>\E[?5h, 15746 is2=\E[?2h\E[?3l\E[?5h\E[?7h\E[?8h\E>\E[?1l\E F\E[?42l\E[?4l, 15747 use=bq300-pc, 15748bq300-pc-w|Questar 303 with PC keyboard 132 columns terminal, 15749 cols#132, wsl#132, 15750 is2=\E[?2h\E[?3h\E[?5l\E[?7h\E[?8h\E>\E[?1l\E F\E[?42l\E[?4l, 15751 rs2=\E[?3h, use=bq300-pc, 15752bq300-pc-w-rv|Questar 303 with PC keyboard reverse mode 132 columns, 15753 cols#132, wsl#132, 15754 flash=\E[?5l$<50>\E[?5h, 15755 is2=\E[?2h\E[?3h\E[?5h\E[?7h\E[?8h\E>\E[?1l\E F\E[?42l\E[?4l, 15756 rs2=\E[?3h, use=bq300-pc, 15757# 8 bit ISO Latin Character Set (ISO 8859-1), 15758# 8 bit Control Characters, 15759# 80 columns screen. 15760bq300-8-pc|Q306-8-pc|Questar 303 with PC keyboard in full 8 bits 80 columns, 15761 kbs=^H, kdch1=\2333~, kend=\2334~, kf1=\23317~, 15762 kf10=\23328~, kf11=\23329~, kf12=\23331~, kf13@, kf14@, 15763 kf15@, kf16@, kf17@, kf18@, kf19@, kf2=\23318~, kf20@, 15764 kf3=\23319~, kf4=\23320~, kf5=\23321~, kf6=\23323~, 15765 kf7=\23324~, kf8=\23325~, kf9=\23326~, kfnd@, khlp@, 15766 khome=\2331~, kich1=\2332~, knp=\2336~, kpp=\2335~, krdo@, 15767 kslt@, lf1@, lf2@, lf3@, lf4@, use=bq300-8, 15768bq300-8-pc-rv|Questar 303 with PC keyboard full 8 bits reverse mode 80 columns, 15769 flash=\E[?5l$<50>\E[?5h, 15770 is2=\E[?2h\E[?3l\E[?5h\E[?7h\E[?8h\E>\E[?1l\E G\E[?42l\E[?4l, 15771 use=bq300-8-pc, 15772bq300-8-pc-w|Questar 303 with PC keyboard full 8 bits 132 columns, 15773 cols#132, wsl#132, 15774 is2=\E[?2h\E[?3h\E[?5l\E[?7h\E[?8h\E>\E[?1l\E G\E[?42l\E[?4l, 15775 rs2=\E[?3h, use=bq300-8-pc, 15776bq300-8-pc-w-rv|Questar 303 with PC keyboard full 8 bits reverse 132 columns, 15777 cols#132, wsl#132, 15778 flash=\E[?5l$<50>\E[?5h, 15779 is2=\E[?2h\E[?3h\E[?5h\E[?7h\E[?8h\E>\E[?1l\E G\E[?42l\E[?4l, 15780 rs2=\E[?3h, use=bq300-8-pc, 15781 15782#======================================================# 15783# BULL QUESTAR 310 `VIP 7800/8800' terminals emulation # 15784#======================================================# 15785 15786# normal mode, 8 bits, 80 columns terminal. 15787# RES reset : ^[e 15788# RIS reset initial state: ^[c 15789# BLE bell enable ^[h 15790# BLD bell disable ^[g 15791# CAMS char. attr. mode set ^[[D 15792# CAMR char. attr. mode reset ^[[G 15793# CLR clear ^[` 15794# KBU keyboard unlock (set) ^[[W 15795# KBL keyboard lock (reset) ^[[X 15796# CM character mode (async.) ^[k 15797# NEP non echoplex mode (by host) ^[l 15798# EP echoplex mode (by host) ^[m 15799# IM insert mode set ^[[I 15800# IM insert mode reset ^[[J 15801# RMS roll mode set ^[r 15802# RMR roll mode reset ^[q 15803# SM78 set mode vip7800 ^[[1q 15804# SD scroll up (72 lines) ^[[0s 15805# SD scroll down (72 lines) ^[[1s 15806# RBM block mode reset ^[[E 15807# SLS status line set ^[w 15808# SLR status line reset ^[v 15809# SLL status line lock ^[O 15810# LGS Line-graphic mode set ^[G 15811# LGR Line-graphic mode reset ^[F 15812# TBC tab clear (at cursor pos.) ^[[g 15813# TBI tab initialize ^[[N 15814# TBS tab set (at cursor pos.) ^[p 15815# PDS print data space ^[[0p 15816# PHD print host data ^[[3p 15817# PDT print data terminator ^[[<p 15818# PRES print adapter reset ^[[2p 15819# SSPR multi-part. reset ^[[<>u 15820# SSP0 partition 0 set ^[[00u 15821# SSP1 partition n format 1 ^[[PnPnSTRINGu 15822# SSP2 partition n format 2 ^[[PnPnSTRINGu 15823# SSP3 partition n format 3 ^[[PnPnu 15824# ATR attribute (visual) 15825# blink : ^[sB 15826# dim : ^[sL 15827# hide (blank) : ^[sH 15828# restore : ^[sR 15829# inverse video : ^[sI 15830# prot. : ^[sP 15831# underline : ^[s_ 15832# reset : ^{ 15833# 15834# This covers the vip7800 and BQ3155-vip7800 15835vip|Bull Questar 3155-7800, 15836 am, eslok, hs, km, mc5i, msgr, xenl, xon, 15837 cols#80, it#8, lines#24, vt#3, wsl#80, 15838 acsc=0pjdkblamcnkqitgufvhwexj, bel=^G, blink=\EsB, 15839 cbt=\E[Z, clear=\E`, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 15840 cup=\E[%i%p1%03d%p2%03df, cuu1=\EA, dch1=\E[P, dim=\EsL, 15841 dl1=\E[M, dsl=\Ev, ed=\EJ, el=\EK, 15842 flash=\007$<80>\007$<80>\007, fsl=\EO, home=\EH, ht=^I, 15843 hts=\Ep, ich1=\E[I, ind=^J, invis=\EsH, 15844 is2=\E[00u\E[<>001001024080024080u\E[01u, 15845 is3=\Er\E[W\E`, kHOM=\EH, kLFT=\Eo, kRIT=\Eu, kbs=^H, 15846 kcbt=\E[Z, kclr=\E`, kctab=\E[g, kcub1=\ED, kcud1=\EB, 15847 kcuf1=\EC, kcuu1=\EA, kdch1=\E[P, kdl1=\E[M, ked=\EJ, 15848 kel=\EK, kf1=\E0, kf10=\ET, kf11=\E\\, kf12=\E\^, kf13@, kf14@, 15849 kf15@, kf16@, kf17@, kf18@, kf19@, kf2=\E2, kf20@, kf21=\E1, 15850 kf22=\E5, kf23=\E7, kf24=\E9, kf25=\E;, kf26=\E=, kf27=\E?, 15851 kf28=\EQ, kf29=\ES, kf3=\E6, kf30=\EV, kf31=\E], kf32=\E_, 15852 kf4=\E8, kf5=\E\:, kf6=\E<, kf7=\E>, kf8=\EP, kf9=\ER, 15853 khome=\EH, khts=\Ep, kich1=\E[I, kil1=\E[L, kind=\E[0s, 15854 kll=\EH\EA, kri=\E[1s, krmir=\E[J, ktbc=\E[N, lf1=pf1, 15855 lf2=pf2, lf3=pf3, lf4=pf4, ll=\EH\EA, mc0=\E[0p, mc4=\E[<p, 15856 mc5=\E[3p, nel=^M, prot=\EsP, rev=\EsI, 15857 ri=\EA\EJ\EH\E[L$<10>, rmacs=\EF, rmir=\E[J, rmso=\EsR, 15858 rmul=\EsR, rs1=\Ec, rs2=\E[G, s0ds=\EF, s1ds=\EG, 15859 sgr0=\EsR\EsU\EF, smacs=\EG, smir=\E[I, smso=\EsI, 15860 smul=\Es_, tbc=\E[N, tsl=\Ew, 15861# normal screen, 8 bits, 132 columns terminal. 15862vip-w|vip7800-w|Q310-vip-w|Q310-vip-w-am|Questar 3155-vip7800 wide, 15863 cols#132, wsl#132, 15864 is2=\E[00u\E[<>001001024132024132u\E[01u, use=vip, 15865vip-H|vip7800-H|Q310-vip-H|Q310-vip-H-am|Questar 3155-vip7800 72 lines, 15866 lines#72, 15867 is2=\E[00u\E[<>001001024080072080u\E[01u, use=vip, 15868vip-Hw|vip7800-Hw|Q310-vip-Hw|Questar 3155-vip7800 wide 72 lines, 15869 cols#132, lines#72, wsl#132, 15870 is2=\E[00u\E[<>001001024132072132u\E[01u, use=vip, 15871 15872#### Chromatics 15873# 15874 15875# I have put the long strings in <smcup>/<rmcup>. Ti sets up a window 15876# that is smaller than the screen, and puts up a warning message 15877# outside the window. Te erases the warning message, puts the 15878# window back to be the whole screen, and puts the cursor at just 15879# below the small window. I defined <cnorm> and <civis> to really turn 15880# the cursor on and off, but I have taken this out since I don't 15881# like the cursor being turned off when vi exits. 15882cg7900|chromatics|chromatics 7900, 15883 am, 15884 cols#80, lines#40, 15885 bel=^G, clear=^L, cr=^M, cub1=^H, cud1=^J, cuf1=^], 15886 cup=\001M%p2%d\,%p1%d\,, cuu1=^K, dch1=^A<1, dl1=^A<2, 15887 ed=^Al, el=^A`, home=^\, ich1=^A>1, il1=^A>2, ind=^J, ll=^A|, 15888 rmcup=\001W0\,40\,85\,48\,\014\001W0\,0\,85\,48\,\001M0\,40\,, 15889 rmso=\001C1\,\001c2\,, 15890 smcup=\001P0\001O1\001R1\001C4\,\001c0\,\014\001M0\,42\,WARNING DOUBLE ENTER ESCAPE and \025\001C1\,\001c2\,\001W0\,0\,79\,39\,, 15891 smso=\001C4\,\001c7\,, uc=\001\001_\001\0, 15892 15893#### Computer Automation 15894# 15895 15896ca22851|computer automation 22851, 15897 am, 15898 cols#80, lines#24, 15899 bel=^G, clear=\014$<8>, cr=^M, cub1=^U, cud1=^J, cuf1=^I, 15900 cup=\002%i%p1%c%p2%c, cuu1=^V, ed=^\, el=^], home=^^, ind=^J, 15901 kcub1=^U, kcud1=^W, kcuu1=^V, khome=^^, 15902 15903#### Cybernex 15904# 15905 15906# This entry has correct padding and the undocumented "ri" capability 15907cyb83|xl83|cybernex xl-83, 15908 OTbs, am, 15909 cols#80, lines#24, 15910 bel=^G, clear=\014$<62>, cr=^M, cub1=^H, cud1=^J, cuf1=^I, 15911 cup=\027%p1%{32}%+%c%p2%{32}%+%c, cuu1=^N, 15912 ed=\020$<62>, el=\017$<3>, home=^K, ind=^J, kcub1=^H, 15913 kcud1=^J, kcuf1=^I, kcuu1=^N, ri=^N, 15914# (mdl110: removed obsolete ":ma=^Z^P:" and overridden ":cd=145^NA^W:" -- esr) 15915cyb110|mdl110|cybernex mdl-110, 15916 OTbs, am, 15917 cols#80, lines#24, 15918 bel=^G, clear=\030$<70>, cr=^M, cub1=^H, cud1=^J, cuf1=^U, 15919 cup=\020%p1%{32}%+%c%p2%{32}%+%c, cuu1=^Z, 15920 dch1=\016A\036$<3.5>, dl1=\016A\016\036$<40>, 15921 ed=\016@\026$<6>, el=\016@\026$<145>, home=^Y, 15922 ht=\011$<43>, ich1=\016A\035$<3.5>, 15923 il1=\016A\016\035$<65>, ind=^J, rmso=^NG, smso=^NF, 15924 15925#### Datapoint 15926# 15927# Datapoint is gone. They used to be headquartered in Texas. 15928# They created ARCnet, an Ethernet competitor that flourished for a while 15929# in the early 1980s before 3COM got wise and cut its prices. The service 15930# side of Datapoint still lives (1995) in the form of Intelogic Trace. 15931# 15932 15933dp3360|datapoint|datapoint 3360, 15934 OTbs, am, 15935 cols#82, lines#25, 15936 bel=^G, clear=^]^_, cr=^M, cub1=^H, cud1=^J, cuf1=^X, cuu1=^Z, 15937 ed=^_, el=^^, home=^], ind=^J, 15938 15939# From: Jan Willem Stumpel <jw.stumpel@inter.nl.net>, 11 May 1997 15940# The Datapoint 8242 Workstation was sold at least between 1985 15941# and 1989. To make the terminal work with this entry, press 15942# CONTROL-INT-INT to take the terminal off-line, and type (opt). 15943# Set the options AUTO ROLL, ROLL DN, and ESC KBD on, and AUTO 15944# CR/LF off. Use control-shift-[] as escape key, control-I as tab, 15945# shift-F1 to shift-F5 as F6 to F10 (unshifted F1 to F5 are in 15946# fact unusable because the strings sent by the terminal conflict 15947# with other keys). 15948# The terminal is capable of displaying "box draw" characters. 15949# For each graphic character you must send 2 ESC's (\E\E) followed 15950# by a control character as follows: 15951# character meaning 15952# ========= ======= 15953# ctrl-E top tee 15954# ctrl-F right tee 15955# ctrl-G bottom tee 15956# ctrl-H left tee 15957# ctrl-I cross 15958# ctrl-J top left corner 15959# ctrl-K top right corner 15960# ctrl-L bottom left corner 15961# ctrl-M bottom right corner 15962# ctrl-N horizontal line 15963# ctrl-O vertical line 15964# Unfortunately this cannot be fitted into the termcap/terminfo 15965# description scheme. 15966dp8242|datapoint 8242, 15967 msgr, 15968 cols#80, lines#25, 15969 bel=^G, civis=^Y, clear=\025\E\004\027\030, cnorm=^X, 15970 cr=^M, cub1=^H, cud1=^J, 15971 cup=\011%p2%'\0'%+%c%p1%'\0'%+%c, dl1=\E^Z, ed=^W, el=^V, 15972 home=^U, ht=^I, il1=\E^T, ind=^C, 15973 is1=\E\014\E\016\0\230\0\317\025\027\030\E\004, 15974 kbs=^H, kcub1=^D, kcud1=^B, kcuf1=^F, kcuu1=^E, kf1=^G\Ee, 15975 kf10=\EK\Ea, kf2=^I\Ed, kf3=^J\Ec, kf4=^J\Eb, kf5=^S\Ea, 15976 kf6=\EO\Ee, kf7=\EN\Ed, kf8=\EM\Ec, kf9=\EL\Eb, nel=^M^J, 15977 rep=\E\023%p1%c%p2%c, ri=^K, rmso=\E^D, rmul=\E^D, 15978 rs1=\E\014\E\016\0\230\0\317\025\027\030\E\004, 15979 smso=\E^E, smul=\E^F, 15980 wind=\E\014\E\016%p1%'\0'%+%c%p2%'\0'%+%c%p3%'\0'%+%c%p4%'\0'%+%c\025, 15981 15982#### DEC terminals (Obsolete types: DECwriter and vt40/42/50) 15983# 15984# These entries are DEC's official terminfos for its older terminals. 15985# Contact Bill Hedberg <hedberg@hannah.enet.dec.com> of Terminal Support 15986# Engineering for more information. Updated terminfos and termcaps 15987# are kept available at ftp://gatekeeper.dec.com/pub/DEC/termcaps. 15988# 15989 15990gt40|dec gt40, 15991 OTbs, os, 15992 cols#72, lines#30, 15993 bel=^G, cr=^M, cub1=^H, cud1=^J, 15994gt42|dec gt42, 15995 OTbs, os, 15996 cols#72, lines#40, 15997 bel=^G, cr=^M, cub1=^H, cud1=^J, 15998vt50|dec vt50, 15999 OTbs, 16000 cols#80, lines#12, 16001 bel=^G, clear=\EH\EJ, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 16002 cuu1=\EA, ed=\EJ, el=\EK, ht=^I, ind=^J, 16003vt50h|dec vt50h, 16004 OTbs, 16005 cols#80, lines#12, 16006 bel=^G, clear=\EH\EJ, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 16007 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, ed=\EJ, 16008 el=\EK, ht=^I, ind=^J, ri=\EI, 16009# (vt61: there's a BSD termcap that claims <dl1=\EPd>, <il1=\EPf.> <kbs=^H>) 16010vt61|vt-61|vt61.5|dec vt61, 16011 cols#80, lines#24, 16012 bel=^G, clear=\EH\EJ$<120>, cr=\r$<20>, cub1=^H, cud1=^J, 16013 cuf1=\EC$<20>, cup=\EY%p1%{32}%+%c%p2%{32}%+%c$<20>, 16014 cuu1=\EA$<20>, ed=\EJ$<120>, el=\EK$<70>, ht=^I, 16015 ind=\n$<20>, kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, 16016 ri=\E$<20>I, 16017 16018# The gigi does standout with red! 16019# (gigi: I added <rmam>/<smam> based on the init string, corrected cub1 -- esr) 16020gigi|vk100|dec gigi graphics terminal, 16021 OTbs, am, xenl, 16022 cols#84, lines#24, 16023 bel=^G, clear=\E[H\E[2J, cr=^M, cub=\E[%p1%dD, cub1=^H, 16024 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 16025 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, ed=\E[J, 16026 el=\E[K, ht=^I, ind=^J, 16027 is2=\E>\E[?3l\E[?4l\E[?5l\E[?20l\E[?7h\E[?8h, 16028 kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kf1=\EOP, 16029 kf2=\EOQ, kf3=\EOR, kf4=\EOS, khome=\E[H, ri=\EM, 16030 rmam=\E[?7l, rmkx=\E[?1l\E>, rmso=\E[m, rmul=\E[m, 16031 sgr0=\E[m, smam=\E[?7h, smkx=\E[?1h\E=, smso=\E[7;31m, 16032 smul=\E[4m, 16033 16034# DEC PRO-350 console (VT220-style). The 350 was DEC's attempt to produce 16035# a PC differentiated from the IBM clones. It was a total, ludicrous, 16036# grossly-overpriced failure (among other things, DEC's OS didn't include 16037# a format program, so you had to buy pre-formatted floppies from DEC at 16038# a hefty premium!). 16039pro350|decpro|dec pro console, 16040 OTbs, 16041 cols#80, it#8, lines#24, 16042 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 16043 clear=\EH\EJ, cub1=^H, cud1=\EB, cuf1=\EC, 16044 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, ed=\EJ, 16045 el=\EK, home=\EH, ht=^I, kcub1=\ED, kcud1=\EB, kcuf1=\EC, 16046 kcuu1=\EA, kf0=\EE, kf1=\EF, kf2=\EG, kf3=\EH, kf4=\EI, 16047 kf5=\EJ, kf6=\Ei, kf7=\Ej, khome=\EH, ri=\EI, rmacs=\EG, 16048 rmso=\E^N, rmul=\E^C, smacs=\EF, smso=\E^H, smul=\E^D, 16049 16050dw1|decwriter I, 16051 OTbs, hc, os, 16052 cols#72, 16053 bel=^G, cr=^M, cub1=^H, cud1=^J, ind=^J, 16054dw2|decwriter|dw|decwriter II, 16055 OTbs, hc, os, 16056 cols#132, 16057 bel=^G, cr=^M, cub1=^H, cud1=^J, ind=^J, kbs=^H, 16058# \E(B Use U.S. character set (otherwise # => british pound !) 16059# \E[20l Disable "linefeed newline" mode (else puts \r after \n,\f,\v) 16060# \E[w 10 char/in pitch 16061# \E[1;132 full width horizontal margins 16062# \E[2g clear all tab stops 16063# \E[z 6 lines/in 16064# \E[66t 66 lines/page (for \f) 16065# \E[1;66r full vertical page can be printed 16066# \E[4g clear vertical tab stops 16067# \E> disable alternate keypad mode (so it transmits numbers!) 16068# \E[%i%p1%du set tab stop at column %d (origin == 1) 16069# (Full syntax is \E[n;n;n;n;n;...;nu where each 'n' is 16070# a tab stop) 16071# 16072# The dw3 does standout with wide characters. 16073# 16074dw3|la120|decwriter III, 16075 OTbs, hc, os, 16076 cols#132, 16077 bel=^G, cr=^M, cub1=^H, cud1=^J, ht=^I, ind=^J, 16078 is1=\E(B\E[20l\E[w\E[0;132s\E[2g\E[z\E[66t\E[1;66r\E[4g\E>, 16079 is2=\E[9;17;25;33;41;49;57;65;73;81;89;97;105;113;121;129u\r, 16080 kbs=^H, rmso=\E[w, sgr0=\E[w, smso=\E[6w, 16081dw4|decwriter IV, 16082 OTbs, am, hc, os, 16083 cols#132, 16084 bel=^G, cr=^M, cub1=^H, cud1=^J, ht=^I, ind=^J, is2=\Ec, kbs=^H, 16085 kf0=\EOP, kf1=\EOQ, kf2=\EOR, kf3=\EOS, 16086 16087# These aren't official 16088ln03|dec ln03 laser printer, 16089 hc, 16090 cols#80, lines#66, 16091 bel=^G, cr=^M, cud1=^J, hd=\EK, ht=^I, hu=\EL, ind=^J, nel=^M^J, 16092 rmso=\E[22m, rmul=\E[24m, sgr0=\E[m, smso=\E[1m, 16093 smul=\E[4m, 16094ln03-w|dec ln03 laser printer 132 cols, 16095 cols#132, 16096 bel=^G, cr=^M, cud1=^J, ht=^I, ind=^J, kbs=^H, kcub1=^H, 16097 kcud1=^J, nel=^M^J, use=ln03, 16098 16099#### Delta Data (dd) 16100# 16101 16102# Untested. The cup sequence is hairy enough that it probably needs work. 16103# The idea is ctrl(O), dd(row), dd(col), where dd(x) is x - 2*(x%16) + '9'. 16104# There are BSD-derived termcap entries floating around for this puppy 16105# that are *certainly* wrong. 16106delta|dd5000|delta data 5000, 16107 OTbs, am, 16108 cols#80, lines#27, 16109 bel=^G, clear=^NR, cub1=^H, cud1=^J, cuf1=^Y, 16110 cup=\017%p1%p1%{16}%m%{2}%*%-%{57}%+%c%p2%p2%{16}%m%{2}%*%-%{57}%+%c, 16111 cuu1=^Z, dch1=^NV, el=^NU, home=^NQ, ind=^J, 16112 16113#### Digital Data Research (ddr) 16114# 16115 16116# (ddr: I added <rmam>/<smam> based on the init string -- esr) 16117ddr|rebus3180|ddr3180|Rebus/DDR 3180 vt100 emulator, 16118 OTbs, am, xenl, 16119 cols#80, it#8, lines#24, vt#3, 16120 blink=\E[5m$<2/>, bold=\E[1m$<2/>, 16121 clear=\E[H\E[2J$<50/>, csr=\E[%i%p1%d;%p2%dr, cub1=^H, 16122 cud1=^J, cuf1=\E[C$<2/>, cup=\E[%i%p1%d;%p2%dH$<5/>, 16123 cuu1=\E[A$<2/>, ed=\E[J$<50/>, el=\E[K$<3/>, home=\E[H, 16124 ht=^I, ind=\ED$<5/>, is2=\E[1;24r\E[24;1H, kbs=^H, 16125 kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kf1=\EOP, 16126 kf2=\EOQ, kf3=\EOR, kf4=\EOS, rc=\E8, rev=\E[7m$<2/>, 16127 rf=/usr/share/tabset/vt100, ri=\EM$<5/>, rmam=\E[7l, 16128 rmkx=\E[?1l\E>, rmso=\E[m, rmul=\E[m$<2/>, 16129 rs1=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sc=\E7, 16130 sgr0=\E[m$<2/>, smam=\E[7l, smkx=\E[?1h\E=, smso=\E[7m, 16131 smul=\E[4m$<2/>, 16132 16133#### Evans & Sutherland 16134# 16135 16136# Jon Leech <leech@cs.unc.edu> tells us: 16137# The ps300 was the Evans & Sutherland Picture System 300, a high 16138# performance 3D vector graphics system with a bunch of specialized hardware. 16139# Approximate date of release was 1982 (early 80s, anyway), and it had several 16140# evolutions including (limited) color versions such as the PS330C. PS300s 16141# were effectively obsolete by the late 80s, replaced by raster graphics 16142# systems, although specialized applications like molecular modelling 16143# hung onto them for a while longer. AFAIK all E&S vector graphics systems 16144# are out of production, though of course E&S is very much alive (in 1996). 16145# (ps300: changed ":pt@:" to "it@" -- esr) 16146# 16147ps300|Picture System 300, 16148 xt, 16149 it@, 16150 rmso@, rmul@, smso@, smul@, use=vt100, 16151 16152#### General Electric (ge) 16153# 16154 16155terminet1200|terminet300|tn1200|tn300|terminet|GE terminet 1200, 16156 OTbs, hc, os, 16157 cols#120, 16158 bel=^G, cr=^M, cud1=^J, ind=^J, 16159 16160#### Heathkit/Zenith 16161# 16162 16163# Here is a description of the H19 DIP switches: 16164# 16165# S401 16166# 0-3 = baud rate as follows: 16167# 16168# 3 2 1 0 16169# --- --- --- --- 16170# 0 0 1 1 300 baud 16171# 0 1 0 1 1200 baud 16172# 1 0 0 0 2400 baud 16173# 1 0 1 0 4800 baud 16174# 1 1 0 0 9600 baud 16175# 1 1 0 1 19.2K baud 16176# 16177# 4 = parity (0 = no parity) 16178# 5 = even parity (0 = odd parity) 16179# 6 = stick parity (0 = normal parity) 16180# 7 = full duplex (0 = half duplex) 16181# 16182# S402 16183# 0 = block cursor (0 = underscore cursor) 16184# 1 = no key click (0 = keyclick) 16185# 2 = wrap at end of line (0 = no wrap) 16186# 3 = auto LF on CR (0 = no LF on CR) 16187# 4 = auto CR on LF (0 = no CR on LF) 16188# 5 = ANSI mode (0 = VT52 mode) 16189# 6 = keypad shifted (0 = keypad unshifted) 16190# 7 = 50Hz refresh (1 = 60Hz refresh) 16191# 16192# Factory Default settings are as follows: 16193# 7 6 5 4 3 2 1 0 16194# S401 1 0 0 0 1 1 0 0 16195# S402 0 0 0 0 0 0 0 0 16196# (h19: I added <rmam>/<smam> based on the init string; 16197# also added empty <acsc> to suppress a tic warning -- esr) 16198h19-a|h19a|heath-ansi|heathkit-a|heathkit h19 ansi mode, 16199 OTbs, am, mir, msgr, 16200 cols#80, it#8, lines#24, 16201 acsc=, bel=^G, clear=\E[2J, cnorm=\E[>4l, cr=^M, cub1=^H, 16202 cud1=\E[1B, cuf1=\E[1C, cup=\E[%i%p1%d;%p2%dH, 16203 cuu1=\E[1A, cvvis=\E[>4h, dch1=\E[1P, dl1=\E[1M$<1*>, 16204 ed=\E[J, el=\E[K, home=\E[H, ht=^I, il1=\E[1L$<1*>, ind=^J, 16205 is2=\E<\E[>1;2;3;4;5;6;7;8;9l\E[m\E[11m\E[?7h, 16206 kbs=^H, kcub1=\E[1D, kcud1=\E[1B, kcuf1=\E[1C, kcuu1=\E[1A, 16207 kf1=\EOS, kf2=\EOT, kf3=\EOU, kf4=\EOV, kf5=\EOW, kf6=\EOP, 16208 kf7=\EOQ, kf8=\EOR, khome=\E[H, lf6=blue, lf7=red, lf8=white, 16209 ri=\EM, rmacs=\E[11m, rmam=\E[?7l, rmir=\E[4l, rmso=\E[m, 16210 smacs=\E[10m, smam=\E[?7h, smir=\E[4h, smso=\E[7m, 16211h19-bs|heathkit w/keypad shifted, 16212 rmkx=\Eu, smkx=\Et, use=h19-b, 16213h19-us|h19us|h19-smul|heathkit w/keypad shifted/underscore cursor, 16214 rmkx=\Eu, smkx=\Et, use=h19-u, 16215# (h19: merged in <ip> from BSDI hp19-e entry>; 16216# also added empty <acsc> to suppress a tic warning --esr) 16217# From: Tim Pierce <twp@skepsis.com>, 23 Feb 1998 16218# Tim tells us that: 16219# I have an old Zenith-19 terminal at home that still gets a lot of use. 16220# This terminal suffers from the same famous insert-mode padding lossage 16221# that has been acknowledged for the Z29 terminal. Emacs is nearly 16222# unusable on this box, since even a half-scroll up or down the window 16223# causes flaming terminal death. 16224# 16225# On the Z19, the only way I have found around this problem is to remove 16226# the :al: and :dl: entries entirely. No amount of extra padding will 16227# help (I have tried up to 20000). Removing <il1=\EL$> and <dl1=\EM$> 16228# makes Emacs a little slower, but it remains in the land of the living. 16229# Big win. 16230h19|heath|h19-b|heathkit|heath-19|z19|zenith|heathkit h19, 16231 OTbs, am, eslok, hs, mir, msgr, 16232 cols#80, it#8, lines#24, 16233 acsc=, bel=^G, clear=\EE, cnorm=\Ey4, cr=^M, cub1=^H, cud1=\EB, 16234 cuf1=\EC, cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, 16235 cvvis=\Ex4, dch1=\EN, ed=\EJ, el=\EK, fsl=\Ek\Ey5, home=\EH, 16236 ht=^I, ind=^J, ip=<1.5/>, kbs=^H, kcub1=\ED, kcud1=\EB, 16237 kcuf1=\EC, kcuu1=\EA, kf1=\ES, kf2=\ET, kf3=\EU, kf4=\EV, 16238 kf5=\EW, kf6=\EP, kf7=\EQ, kf8=\ER, khome=\EH, lf6=blue, 16239 lf7=red, lf8=white, ri=\EI, rmacs=\EG, rmir=\EO, rmso=\Eq, 16240 smacs=\EF, smir=\E@, smso=\Ep, 16241 tsl=\Ej\Ex5\EY8%p1%{32}%+%c\Eo\Eo, 16242h19-u|heathkit with underscore cursor, 16243 cnorm@, cvvis@, use=h19-b, 16244h19-g|h19g|heathkit w/block cursor, 16245 cnorm=\Ex4, use=h19-b, 16246alto-h19|altoh19|altoheath|alto-heath|alto emulating heathkit h19, 16247 lines#60, 16248 dl1=\EM, il1=\EL, use=h19, 16249 16250# The major problem with the Z29 is that it requires more padding than the Z19. 16251# 16252# The problem with declaring an H19 to be synonymous with a Z29 is that 16253# it needs more padding. It especially loses if a program attempts 16254# to put the Z29 into insert mode and insert text at 9600 baud. It 16255# even loses worse if the program attempts to insert tabs at 9600 16256# baud. Adding padding to text that is inserted loses because in 16257# order to make the Z29 not die, one must add so much padding that 16258# whenever the program tries to use insert mode, the effective 16259# rate is about 110 baud. 16260# 16261# What program would want to put the terminal into insert mode 16262# and shove stuff at it at 9600 baud you ask? 16263# 16264# Emacs. Emacs seems to want to do the mathematically optimal 16265# thing in doing a redisplay rather than the practical thing. 16266# When it is about to output a line on top of a line that is 16267# already on the screen, instead of just killing to the end of 16268# the line and outputting the new line, it compares the old line 16269# and the new line and if there are any similarities, it 16270# constructs the new line by deleting the text on the old line 16271# on the terminal that is already there and then inserting new 16272# text into the line to transform it into the new line that is 16273# to be displayed. The Z29 does not react kindly to this. 16274# 16275# But don't cry for too long.... There is a solution. You can make 16276# a termcap entry for the Z29 that says the Z29 has no insert mode. 16277# Then Emacs cannot use it. "Oh, no, but now inserting into a 16278# line will be really slow", you say. Well there is a sort of a 16279# solution to that too. There is an insert character option on 16280# the Z29 that will insert one character. Unfortunately, it 16281# involves putting the terminal into ansi mode, inserting the 16282# character, and changing it back to H19 mode. All this takes 12 16283# characters. Pretty expensive to insert one character, but it 16284# works. Either Emacs doesn't try to use its inserting hack when 16285# it's only given an insert character ability or the Z29 doesn't 16286# require padding with this (the former is probably more likely, 16287# but I haven't checked it out). 16288# (z29: added empty <acsc> to suppress a tic warning, merged in 16289# status line capabilities from BRL entry --esr) 16290z29|zenith29|z29b|zenith z29b, 16291 OTbs, OTpt, am, eslok, hs, mir, msgr, 16292 OTkn#10, cols#80, lines#24, 16293 OTbc=\ED, acsc=, bel=^G, cbt=\E-, clear=\EE$<14>, cnorm=\Ey4, 16294 cr=^M, cub1=^H, cud1=\EB, cuf1=\EC, 16295 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\E$<1>A, 16296 cvvis=\Ex4, dch1=\EN$<0.1*>, dl1=\EM$<1/>, dsl=\Ey1, 16297 ed=\EJ$<14>, el=\EK$<1>, fsl=\Ek\Ey5, home=\EH, ht=^I, 16298 ich1=\E<\E[1@\E[?2h$<1>, il1=\EL$<1/>, ind=\n$<2>, 16299 is2=\E<\E[?2h\Ev, kbs=^H, kcub1=\ED, kcud1=\EB, kcuf1=\EC, 16300 kcuu1=\EA, kf0=\E~, kf1=\ES, kf2=\ET, kf3=\EU, kf4=\EV, 16301 kf5=\EW, kf6=\EP, kf7=\EQ, kf8=\ER, kf9=\E0I, khome=\EH, 16302 lf0=home, ri=\EI$<2/>, rmacs=\EF, rmir=\EO, rmso=\Eq, 16303 rmul=\Es0, smacs=\EG, smir=\E@, smso=\Ep, smul=\Es8, 16304 tsl=\Ej\Ex5\Ex1\EY8%+ \Eo, 16305# z29 in ansi mode. Assumes that the cursor is in the correct state, and that 16306# the world is stable. <rs1> causes the terminal to be reset to the state 16307# indicated by the name. kc -> key click, nkc -> no key click, uc -> underscore 16308# cursor, bc -> block cursor. 16309# From: Mike Meyers 16310# (z29a: replaced nonexistent <if=/usr/share/tabset/zenith29> befause <hts> 16311# looks vt100-compatible -- esr) 16312z29a|z29a-kc-bc|h29a-kc-bc|heath/zenith 29 in ansi mode, 16313 OTbs, OTpt, am, eslok, hs, mir, msgr, 16314 OTkn#10, cols#80, it#8, lines#24, 16315 OTbc=\ED, bel=^G, blink=\E[5m, bold=\E[2m, clear=\E[2J, 16316 cr=^M, csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 16317 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, 16318 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 16319 dch=\E[%p1%dP, dch1=\E[1P, dim=\E[2m, dl=\E[%p1%dM, 16320 dsl=\E[>1l, ed=\E[J, el=\E[K, fsl=\E[u\E[>5l, home=\E[H, 16321 ht=^I, hts=\EH, if=/usr/share/tabset/vt100, il=\E[%p1%dL, 16322 ind=\ED, kbs=^H, kclr=\E[J, kcub1=\EOD, kcud1=\EOB, 16323 kcuf1=\EOC, kcuu1=\EOA, ked=\E[J, kf0=\E[~, kf1=\EOS, 16324 kf2=\EOT, kf3=\EOU, kf4=\EOV, kf5=\EOW, kf6=\EOP, kf7=\EOQ, 16325 kf8=\EOR, kf9=\EOX, khome=\E[H, lf0=help, mc0=\E#7, 16326 nel=^M\ED, rc=\E[r, rev=\E[7m, ri=\EM, rmcup=\E[?7h, 16327 rmso=\E[m, rmul=\E[m, 16328 rs1=\E<\E[1;24r\E[24;1H\E[?7h\E[>4h\E[>1;2;3;5;6;7;8;9l\E[m\E[11m, 16329 sc=\E[s, sgr0=\E[m, smcup=\E[?7l, smso=\E[7;2m, smul=\E[4m, 16330 tbc=\E[3g, tsl=\E[s\E[>5;1h\E[25;%i%dH\E[1K, 16331z29a-kc-uc|h29a-kc-uc|z29 ansi mode with keyckick and underscore cursor, 16332 rs1=\E<\E[1;24r\E[24;1H\E[?7h\E[>1;2;3;4;5;6;7;8;9l\E[m\E[11m, 16333 use=z29a, 16334z29a-nkc-bc|h29a-nkc-bc|z29 ansi mode with block cursor and no keyclick, 16335 rs1=\E<\E[1;24r\E[24;1H\E[?7h\E[>2;4h\E[>1;3;5;6;7;8;9l\E[m\E[11m, 16336 use=z29a, 16337z29a-nkc-uc|h29a-nkc-uc|z29 ansi mode with underscore cursor and no keyclick, 16338 rs1=\E<\E[1;24r\E[24;1H\E[?7h\E[>2h\E[>1;3;4;5;6;7;8;9l\E[m\E[11m, 16339 use=z29a, 16340# From: Jeff Bartig <jeffb@dont.doit.wisc.edu> 31 Mar 1995 16341z39-a|z39a|zenith39-a|zenith39-ansi|Zenith 39 in ANSI mode, 16342 am, eslok, hs, mc5i, mir, msgr, xon, 16343 cols#80, lines#24, 16344 acsc=0a``aaffggjjkkllmmnnooqqssttuuvvwwxx~~, bel=^G, 16345 blink=\E[5m, bold=\E[1m, cbt=\E[1Z, civis=\E[>5h, 16346 clear=\E[2J\E[H, cnorm=\E[>5l, cr=^M, 16347 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 16348 cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, 16349 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, 16350 dch=\E[%p1%dP, dch1=\E[1P, dim=\E[2m, dl=\E[%p1%dM, 16351 dl1=\E[1M, dsl=\E[>1l, ed=\E[0J, el=\E[0K, el1=\E[1K, 16352 fsl=\E[u, home=\E[H, ht=^I, hts=\EH, il=\E[%p1%dL, il1=\E[1L, 16353 ind=^J, is2=\E<\E[>1;3;5;6;7l\E[0m\E[2J, ka1=\EOw, 16354 ka3=\EOu, kb2=\EOy, kbs=^H, kc1=\EOq, kc3=\EOs, kcub1=\E[D, 16355 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, ked=\E[J, kf1=\EOS, 16356 kf2=\EOT, kf3=\EOU, kf4=\EOV, kf5=\EOW, kf6=\EOP, kf7=\EOQ, 16357 kf8=\EOR, kf9=\EOX, khlp=\E[~, khome=\E[H, ll=\E[24;1H, 16358 mc0=\E[?19h\E[i, mc4=\E[4i, mc5=\E[5i, rc=\E[u, rev=\E[7m, 16359 rmacs=\E(B, rmir=\E[4l, rmkx=\E[>7l, rmso=\E[0m, 16360 rmul=\E[0m, rs2=\E<\Ec\0, sc=\E[s, sgr0=\E[0m, smacs=\E(0, 16361 smir=\E[4h, smkx=\E[>7h, smso=\E[7m, smul=\E[4m, tbc=\E[3g, 16362 tsl=\E[s\E[>1h\E[25;%i%p1%dH, 16363 16364# From: Brad Brahms <Brahms@USC-ECLC> 16365z100|h100|z110|z-100|h-100|heath/zenith z-100 pc with color monitor, 16366 cnorm=\Ey4\Em70, cvvis=\Ex4\Em71, use=z100bw, 16367# (z100bw: removed obsolete ":kn#10:", added empty <acsc> -- esr) 16368z100bw|h100bw|z110bw|z-100bw|h-100bw|heath/zenith z-100 pc, 16369 OTbs, OTpt, mir, msgr, 16370 OTkn#10, cols#80, it#8, lines#24, 16371 acsc=, clear=\EE$<5*/>, cnorm=\Ey4, cub1=^H, cud1=\EB, 16372 cuf1=\EC, cup=\EY%p1%{32}%+%c%p2%{32}%+%c$<1*/>, 16373 cuu1=\EA, cvvis=\Ex4, dch1=\EN$<1*/>, dl1=\EM$<5*/>, 16374 ed=\EJ, el=\EK, home=\EH, ht=^I, il1=\EL$<5*/>, kbs=^H, 16375 kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, kf0=\EJ, kf1=\ES, 16376 kf2=\ET, kf3=\EU, kf4=\EV, kf5=\EW, kf6=\EP, kf7=\EQ, kf8=\ER, 16377 kf9=\EOI, khome=\EH, ri=\EI, rmacs=\EG, rmir=\EO, rmso=\Eq, 16378 smacs=\EF, smir=\E@, smso=\Ep, 16379p19|h19-b with il1/dl1, 16380 dl1=\EM$<2*/>, il1=\EL$<2*/>, use=h19-b, 16381# From: <ucscc!B.fiatlux@ucbvax.berkeley.edu> 16382# (ztx: removed duplicate :sr: -- esr) 16383ztx|ztx11|zt-1|htx11|ztx-1-a|ztx-10 or 11, 16384 OTbs, am, eslok, hs, 16385 cols#80, it#8, lines#24, 16386 clear=\EE, cub1=^H, cud1=^J, cuf1=\EC, 16387 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, dl1=\EM, 16388 dsl=\Ey1, ed=\EJ, el=\EK, fsl=\Ek\Ey5, home=\EH, ht=^I, 16389 il1=\EL, is2=\Ej\EH\Eq\Ek\Ev\Ey1\Ey5\EG\Ey8\Ey9\Ey>, 16390 kbs=^H, kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, kf0=\ES, 16391 kf1=\EB, kf2=\EU, kf3=\EV, kf4=\EW, kf5=\EP, kf6=\EQ, kf7=\ER, 16392 ri=\EI, rmso=\Eq, rmul=\Eq, smso=\Es5, smul=\Es2, 16393 tsl=\Ej\Ex5\Ex1\EY8%+ \Eo, 16394 16395#### IMS International (ims) 16396# 16397# There was a company called IMS International located in Carson City, 16398# Nevada, that flourished from the mid-70s to mid-80s. They made S-100 16399# bus/Z80 hardware and a line of terminals called Ultimas. 16400# 16401 16402# From: Erik Fair <fair@ucbarpa.berkeley.edu> Sun Oct 27 07:21:05 1985 16403ims950-b|bare ims950 no init string, 16404 is2@, use=ims950, 16405# (ims950: removed obsolete ":ko@:" -- esr) 16406ims950|ims televideo 950 emulation, 16407 xenl@, 16408 flash@, kbs@, kcub1@, kcud1@, kcuf1@, kcuu1@, kf0@, kf1@, kf2@, kf3@, 16409 kf4@, kf5@, kf6@, kf7@, kf8@, kf9@, khome@, use=tvi950, 16410# (ims950-rv: removed obsolete ":ko@:" -- esr) 16411ims950-rv|ims tvi950 rev video, 16412 xenl@, 16413 flash@, kbs@, kcub1@, kcud1@, kcuf1@, kcuu1@, kf0@, kf1@, kf2@, kf3@, 16414 kf4@, kf5@, kf6@, kf7@, kf8@, kf9@, khome@, use=tvi950-rv, 16415ims-ansi|ultima2|ultimaII|IMS Ultima II, 16416 OTbs, am, 16417 cols#80, it#8, lines#24, 16418 clear=\E[H\E[2J, cub1=^H, cud1=\ED, 16419 cup=\E[%i%p1%2d;%p2%2dH, cuu1=\EM, ed=\E[0J, el=\E[0K, 16420 ht=^I, if=/usr/share/tabset/vt100, 16421 is2=\E[m\E[>14l\E[?1;?5;20l\E>\E[1m\r, kcub1=\E[D, 16422 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, khome=\E[H, ri=\EM, 16423 rmso=\E[m\E[1m, rmul=\E[m\E[1m, sgr0=\E[m, smso=\E[7m, 16424 smul=\E[4m, 16425 16426#### Intertec Data Systems 16427# 16428# I think this company is long dead as of 1995. They made an early CP/M 16429# micro called the "Intertec Superbrain" that was moderately popular, 16430# then sank out of sight. 16431# 16432 16433superbrain|intertec superbrain, 16434 OTbs, am, bw, 16435 cols#80, lines#24, 16436 OTbc=^U, bel=^G, clear=\014$<5*>, cr=^M, cub1=^H, cud1=^J, 16437 cuf1=^F, cup=\EY%p1%{32}%+%c%p2%{32}%+%c$<20>, cuu1=^K, 16438 ed=\E~k<10*>, el=\E~K$<15>, ht=^I, ind=^J, kcub1=^U, 16439 kcud1=^J, kcuf1=^F, kcuu1=^K, rmcup=^L, smcup=^L, 16440# (intertube: a Gould entry via BRL asserted smul=\E0@$<200/>, 16441# rmul=\E0A$<200/>; my guess is the highlight letter is bit-coded like an ADM, 16442# and the reverse is actually true. Try it. -- esr) 16443intertube|intertec|Intertec InterTube, 16444 OTbs, am, 16445 cols#80, lines#25, 16446 bel=^G, clear=^L, cr=^M, cub1=^H, cud1=^J, cuf1=^F, 16447 cup=\EY%p1%{32}%+%c%p2%{32}%+%c$<50>, cuu1=^Z, home=^A, 16448 ind=^J, rmso=\E0@, smso=\E0P, 16449# The intertube 2 has the "full duplex" problem like the tek 4025: if you 16450# are typing and a command comes in, the keystrokes you type get interspersed 16451# with the command and it messes up 16452intertube2|intertec data systems intertube 2, 16453 OTbs, 16454 cup=\016%p1%c\020%p2%{10}%/%{16}%*%p2%{10}%m%+%c, 16455 el=\EK, hpa=\020%p1%{10}%/%{16}%*%p1%{10}%m%+%c, 16456 ll=^K^X\r, vpa=\013%p1%c, use=intertube, 16457 16458#### Ithaca Intersystems 16459# 16460# This company made S100-bus personal computers long ago in the pre-IBM-PC 16461# past. They used to be reachable at: 16462# 16463# Ithaca Intersystems 16464# 1650 Hanshaw Road 16465# Ithaca, New York 14850 16466# 16467# However, the outfit went bankrupt years ago. 16468# 16469 16470# The Graphos III was a color graphics terminal from Ithaca Intersystems. 16471# These entries were written (originally in termcap syntax) by Brian Yandell 16472# <yandell@stat.wisc.edu> and Mike Meyer <mikem@stat.wisc.edu> at the 16473# University of Wisconsin. 16474 16475# (graphos: removed obsolete and syntactically incorrect :kn=4:, 16476# removed <if=/usr/share/tabset/init.graphos> and 16477# <rf=/usr/share/tabset/init.graphos> no such file & no <hts> -- esr) 16478graphos|graphos III, 16479 am, mir, 16480 cols#80, it#8, lines#24, 16481 clear=\E[H\E[2J, cnorm=\Ez56;2;0;0z\Ez73z\Ez4;1;1z, 16482 cr=^M, cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=\E[B, 16483 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 16484 cuu=\E[%p1%dA, cuu1=\E[A, 16485 cvvis=\Ez4;2;1z\Ez56;2;80;24z, dch1=\E[P, dl=\E[%p1%dM, 16486 dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, ht=^I, il=\E[%p1%dL, 16487 il1=\E[L, ind=\ED, kbs=^H, kcub1=\E[D, kcud1=\E[B, 16488 kcuf1=\E[C, kcuu1=\E[A, kf1=\EOP, kf2=\EOQ, kf3=\EOR, 16489 kf4=\EOS, khome=\E[H, nel=^M\ED, rc=\E8, ri=\EM, rmdc=\E[4l, 16490 rmir=\E[4l, rmso=\E[m, sc=\E7, sgr0=\E[m, smdc=\E[4h, 16491 smir=\E[4h, smso=\E[7m, 16492graphos-30|graphos III with 30 lines, 16493 lines#30, 16494 cvvis=\Ez4;2;1z\Ez56;2;80;30z, use=graphos, 16495 16496#### Modgraph 16497# 16498# These people used to be reachable at: 16499# 16500# Modgraph, Inc 16501# 1393 Main Street, 16502# Waltham, MA 02154 16503# Vox: (617)-890-5796. 16504# 16505# However, if you call that number today you'll get an insurance company. 16506# I have mail from "Michael Berman, V.P. Sales, Modgraph" dated 16507# 26 Feb 1997 that says: 16508# 16509# Modgraph GX-1000, replaced by GX-2000. Both are out of production, have been 16510# for ~7 years. Modgraph still in business. Products are rugged laptop and 16511# portable PC's and specialized CRT and LCD monitors (rugged, rack-mount 16512# panel-mount etc). I can be emailed at sonfour@aol.com 16513# 16514# Peter D. Smith <pdsmith@nbbn.com> notes that his modgraph manual was 16515# dated 1984. According to the manual, it featured Tek 4010/4014 16516# graphics and DEC VT100/VT52 + ADM-3A emulation with a VT220-style keyboard. 16517# 16518 16519modgraph|mod24|modgraph terminal emulating vt100, 16520 xenl@, 16521 cols#80, lines#24, 16522 cvvis=\E\^9;0s\E\^7;1s, 16523 is2=\E\^9;0s\E\^7;1s\E[3g\E\^11;9s\E\^11;17s\E\^11;25s\E\^11;33s\E\^11;41s\E\^11;49s\E\^11;57s\E\^11;65s\E\^11;73s\E\^11;81s\E\^11;89s, 16524 rf@, ri=\EM\E[K$<5/>, use=vt100, 16525# The GX-1000 manual is dated 1984. This looks rather like a VT-52. 16526modgraph2|modgraph gx-1000 80x24 with keypad not enabled, 16527 am, da, db, 16528 cols#80, it#8, lines#24, 16529 clear=\EH\EJ$<50/>, cub1=^H, cuf1=\EC$<2/>, 16530 cup=\EY%p1%{32}%+%c%p2%{32}%+%c$<5/>, cuu1=\EA$<2/>, 16531 ed=\EJ$<50/>, el=\EK$<3/>, ht=^I, 16532 is2=\E<\E\^5;2s\E\^7;1s\E[3g\E\^11;9s\E\^11;17s\E\^11;25s\E\^11;33s\E\^11;41s\E\^11;49s\E\^11;57s\E\^11;65s\E\^11;73s\E\^11;81s\E\^11;89s\E\^12;0s\E\^14;2s\E\^15;9s\E\^25;1s\E\^9;1s\E\^27;1, 16533 ri=\EI$<5/>, 16534# 16535# Modgraph from Nancy L. Cider <nancyc@brl-tbd> 16536# BUG NOTE from Barbara E. Ringers <barb@brl-tbd>: 16537# If we set TERM=vt100, and set the Modgraph screen to 24 lines, setting a 16538# mark and using delete-to-killbuffer work correctly. However, we would 16539# like normal mode of operation to be using a Modgraph with 48 line setting. 16540# If we set TERM=mod (which is a valid entry in termcap with 48 lines) 16541# the setting mark and delete-to-killbuffer results in the deletion of only 16542# the line the mark is set on. 16543# We've discovered that the delete-to-killbuffer works correctly 16544# with TERM=mod and screen set to 80x48 but it's not obvious. Only 16545# the first line disappears but a ctrl-l shows that it did work 16546# correctly. 16547modgraph48|mod|Modgraph w/48 lines, 16548 OTbs, OTpt, am, xenl, 16549 cols#80, it#8, lines#48, vt#3, 16550 OTnl=^J, bel=^G, blink=\E[5m, bold=\E[1m, clear=\E[;H\E[2J, 16551 cr=^M, csr=\E[%i%p1%d;%p2%dr, cub1=^H, cud1=^J, cuf1=\E[C, 16552 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, ed=\E[J, el=\E[K, 16553 flash=\E[?5h\E[0q\E[1;2q\E[?5l\E[0q\E[4;3q, 16554 home=\E[H, ht=^I, is2=\E<\E[1;48r\E[0q\E[3;4q\E=\E[?1h, 16555 kbs=^H, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, 16556 kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, rc=\E8, rev=\E[7m, 16557 ri=\EM, rmkx=\E[?1l\E>, rmso=\E[m, rmul=\E[m, 16558 rs1=\E=\E[0q\E>, sc=\E7, sgr0=\E[m, smkx=\E[?1h\E=, 16559 smso=\E[7m, smul=\E[4m, 16560 16561#### Morrow Designs 16562# 16563# This was George Morrow's company. They started in the late 1970s making 16564# S100-bus machines. They used to be reachable at: 16565# 16566# Morrow 16567# 600 McCormick St. 16568# San Leandro, CA 94577 16569# 16570# but they're long gone now (1995). 16571# 16572 16573# The mt70 terminal was shipped with the Morrow MD-3 microcomputer. 16574# Jeff's specimen was dated June 1984. 16575# From: Jeff Wieland <wieland@acn.purdue.edu> 24 Feb 1995 16576mt70|mt-70|Morrow MD-70; native Morrow mode, 16577 am, mir, msgr, xon, 16578 cols#80, it#8, lines#24, 16579 acsc=+z\,{-x.yOi`|jGkFlEmDnHqJtLuKvNwMxI, bel=^G, 16580 cbt=\EI, civis=\E"0, clear=^Z, cnorm=\E"2, cr=^M, cub1=^H, 16581 cud1=^J, cuf1=^L, cup=\E=%p1%{32}%+%c%p2%{32}%+%c$<1>, 16582 cuu1=^K, dch1=\EW, dim=\EG2, dl1=\ER, ed=\EY, el=\ET$<10>, 16583 flash=\EK1$<200>\EK0, home=^^, ht=^I, ich1=\EQ, il1=\EE, 16584 ind=^J, invis@, is1=\E"2\EG0\E], kbs=^H, kcbt=^A^Z\r, 16585 kclr=^An\r, kcub1=^AL\r, kcud1=^AK\r, kcuf1=^AM\r, 16586 kcuu1=^AJ\r, kdch1=\177, kf1=^A@\r, kf10=^AI\r, kf11=^A`\r, 16587 kf12=^Aa\r, kf13=^Ab\r, kf14=^Ac\r, kf15=^Ad\r, kf16=^Ae\r, 16588 kf17=^Af\r, kf18=^Ag\r, kf19=^Ah\r, kf2=^AA\r, kf20=^Ai\r, 16589 kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, 16590 kf8=^AG\r, kf9=^AH\r, khlp=^AO\r, khome=^AN\r, nel=^_, 16591 rmacs=\E%%, rmcup=, smacs=\E$, smcup=\E"2\EG0\E], 16592 smul=\EG1, tbc=\E0, use=adm+sgr, 16593 16594#### Motorola 16595# 16596 16597# Motorola EXORterm 155 from {decvax, ihnp4}!philabs!sbcs!megad!seth via BRL 16598# (Seth H Zirin) 16599ex155|Motorola Exorterm 155, 16600 OTbs, am, bw, 16601 OTkn#5, OTug#1, cols#80, lines#24, 16602 cbt=\E[, clear=\EX, cud1=\EB, cuf1=\ED, 16603 cup=\EE%p1%{32}%+%c%p2%{32}%+%c, ed=\ET, el=\EU, 16604 home=\E@, ht=\EZ, kbs=^H, kcbt=\E[, kclr=\EX, kcub1=^H, 16605 kcud1=^J, kcuf1=^L, kcuu1=^K, ked=\ET, kel=\EU, khome=\E@, 16606 rmso=\Ec\ED, rmul=\Eg\ED, smso=\Eb\ED, smul=\Ef\ED, 16607 16608#### Omron 16609# 16610# This company is still around in 1995, manufacturing point-of-sale systems. 16611 16612omron|Omron 8025AG, 16613 OTbs, am, da, db, 16614 cols#80, lines#24, 16615 bel=^G, clear=\EJ, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, cuu1=\EA, 16616 cvvis=\EN, dch1=\EP, dl1=\EM, ed=\ER, el=\EK, home=\EH, 16617 il1=\EL, ind=\ES, ri=\ET, rmso=\E4, smso=\Ef, 16618 16619#### Ramtek 16620# 16621# Ramtek was a vendor of high-end graphics terminals around 1979-1983; they 16622# were competition for things like the Tektronics 4025. 16623# 16624 16625# Ramtek 6221 from BRL, probably by Doug Gwyn 16626# The following SET-UP modes are assumed for normal operation: 16627# UNDERLINE_CURSOR ANSI_MODE AUTO_XON/XOFF_ON 16628# NEWLINE_OFF 80_COLUMNS 16629# Other SET-UP modes may be set for operator convenience or communication 16630# requirements; I recommend 16631# SMOOTH_SCROLL AUTO_REPEAT_ON 3_#_SHIFTED WRAP_AROUND_ON 16632# Hardware tabs are assumed to be every 8 columns; they can be set up by the 16633# "reset", "tset", or "tabs" utilities (use rt6221-w, 160 columns, for this). 16634# Note that the Control-E key is useless on this brain-damaged terminal. No 16635# delays are specified; use "stty ixon -ixany" to enable DC3/DC1 flow control! 16636rt6221|Ramtek 6221 80x24, 16637 OTbs, OTpt, msgr, xon, 16638 OTkn#4, cols#80, it#8, lines#24, vt#3, 16639 acsc=, bel=^G, blink=\E[5m, bold=\E[1m, civis=\E[>5l, 16640 clear=\E[1;1H\E[J, cnorm=\E[>5h\E[>9h, cr=^M, 16641 csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, 16642 cud=\E[%p1%dB, cud1=^K, cuf=\E[%p1%dC, cuf1=\E[C, 16643 cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\EM, 16644 cvvis=\E[>7h\E[>9l, ed=\E[J, el=\E[K, home=\E[1;1H, ht=^I, 16645 hts=\EH, ind=^J, is2=\E)0, kbs=^H, kcub1=\E[D, kcud1=\E[B, 16646 kcuf1=\E[C, kcuu1=\E[A, kf0=\EOP, kf1=\EOQ, kf2=\EOR, 16647 kf3=\EOS, lf0=PF1, lf1=PF2, lf2=PF3, lf3=PF4, ll=\E[24;1H, 16648 nel=\EE, rc=\E8, rev=\E[7m, ri=\EM, rmacs=^O, rmkx=\E>, 16649 rmso=\E[m, rmul=\E[m, 16650 rs1=\E[1w\E[>37m\E[>39m\E[1v\E[20l\E[?3l\E[?6l\E[>5h\E[>6h\E[>7h\E[>8l\E[>9h\E[>10l\E[1;24r\E[m\E[q\E(B\017\E)0\E#5\E>, 16651 sc=\E7, sgr0=\E[m, smacs=^N, smkx=\E=, smso=\E[7m, 16652 smul=\E[4m, tbc=\E[3g, 16653# [TO DO: Check out: short forms of ho/cl and ll; reset (\Ec)]. 16654rt6221-w|Ramtek 6221 160x48, 16655 cols#160, lines#48, 16656 ll=\E[48;1H, use=rt6221, 16657 16658#### RCA 16659# 16660 16661# RCA VP3301 or VP3501 16662rca|rca vp3301/vp3501, 16663 OTbs, 16664 cols#40, lines#24, 16665 clear=^L, cuf1=^U, cup=\EY%p1%{32}%+%c%p2%{32}%+%c, 16666 cuu1=^K, home=^Z, rmso=\E\ES0, smso=\E\ES1, 16667 16668 16669#### Selanar 16670# 16671 16672# Selanar HiREZ-100 from BRL, probably by Doug Gwyn 16673# The following SET-UP modes are assumed for normal operation: 16674# SET_DEFAULT_TABS 48_LINES 80_COLUMNS 16675# ONLINE ANSI CURSOR_VISIBLE 16676# VT102_AUTO_WRAP_ON VT102_NEWLINE_OFF VT102_MONITOR_MODE_OFF 16677# LOCAL_ECHO_OFF US_CHAR_SET WPS_TERMINAL_DISABLED 16678# CPU_AUTO_XON/XOFF_ENABLED PRINT_FULL_SCREEN 16679# For use with graphics software, all graphics modes should be set to factory 16680# default. Other SET-UP modes may be set for operator convenience or 16681# communication requirements. No delays are specified; use "stty ixon -ixany" 16682# to enable DC3/DC1 flow control! 16683# I commented out the scrolling capabilities since they are too slow. 16684hirez100|Selanar HiREZ-100, 16685 OTbs, OTpt, mir, msgr, xon, 16686 OTkn#4, cols#80, it#8, lines#48, vt#3, 16687 acsc=, bel=^G, blink=\E[5m, bold=\E[1m, clear=\E[H\E[J, 16688 cr=^M, cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=^J, 16689 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 16690 cuu=\E[%p1%dA, cuu1=\EM, dch=\E[%p1%dP, dch1=\E[P, 16691 dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, ht=^I, 16692 hts=\EH, il=\E[%p1%dL, il1=\E[L, is2=\E<\E)0, kbs=^H, 16693 kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kf0=\EOP, 16694 kf1=\EOQ, kf2=\EOR, kf3=\EOS, lf0=PF1, lf1=PF2, lf2=PF3, 16695 lf3=PF4, ll=\E[48H, mc0=\E[i, mc4=\E[4i\E[?4i, 16696 mc5=\E[?5i\E[5i, nel=\EE, rc=\E8, rev=\E[7m, rmacs=^O, 16697 rmkx=\E[?1l\E>, rmso=\E[m, rmul=\E[m, 16698 rs1=\030\E2\E<\E[4i\E[?4i\E[12h\E[2;4;20l\E[?0;7h\E[?1;3;6;19l\E[r\E[m\E(B\017\E)0\E>, 16699 sc=\E7, sgr0=\E[m, smacs=^N, smkx=\E[?1h\E=, smso=\E[7m, 16700 smul=\E[4m, tbc=\E[3g, 16701hirez100-w|Selanar HiREZ-100 in 132-column mode, 16702 cols#132, use=hirez100, 16703 16704#### Signetics 16705# 16706 16707# From University of Wisconsin 16708vsc|Signetics Vsc Video driver by RMC, 16709 am, msgr, 16710 cols#80, it#8, lines#26, 16711 clear=\E[;H\E[2J$<50/>, cr=^M, cub1=^H, cud1=^J, cuf1=\E[C, 16712 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, el=\E[K, home=\E[H, 16713 ht=^I, ind=^J, kbs=^H, kcub1=^H, kcud1=^J, nel=^M^J, rev=^_\s, 16714 rmso=^_!, rmul=^_#, sgr0=^_!, smso=^_\s, smul=^_", 16715 16716#### Soroc 16717# 16718# Alan Frisbie <frisbie@flying-disk.com> writes: 16719# 16720# As you may recall, the Soroc logo consisted of their name, 16721# with the letter "S" superimposed over an odd design. This 16722# consisted of a circle with a slightly smaller 15 degree (approx.) 16723# wedge with rounded corners inside it. The color was sort of 16724# a metallic gold/yellow. 16725# 16726# If I had been more of a beer drinker it might have been obvious 16727# to me, but it took a clue from their service department to make 16728# me exclaim, "Of course!" The circular object was the top of 16729# a beer can (the old removable pop-top style) and "Soroc" was an 16730# anagram for "Coors". 16731# 16732# I can just imagine the founders of the company sitting around 16733# one evening, tossing back a few and trying to decide what to 16734# call their new company and what to use for a logo. 16735# 16736 16737# (soroc120: removed obsolete ":ma=^K^P^R^L^L :" -- esr) 16738soroc120|iq120|soroc|soroc iq120, 16739 clear=\E*$<2>, cud1=^J, ed=\EY, el=\ET, kcub1=^H, kcud1=^J, 16740 kcuf1=^L, kcuu1=^K, use=adm3a, 16741soroc140|iq140|soroc iq140, 16742 OTbs, am, mir, 16743 cols#80, lines#24, 16744 bel=^G, cbt=\EI, clear=\E+, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 16745 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\Ew, 16746 dl1=\Er$<.7*>, ed=\Ey, el=\Et, home=^^, il1=\Ee$<1*>, ind=^J, 16747 kbs=^H, kcuf1=^L, kcuu1=^K, kf0=^A0\r, kf1=^A@\r, kf2=^AA\r, 16748 kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, 16749 kf8=^AG\r, kf9=^AH\r, khome=^^, ll=^^^K, rmir=\E8, 16750 rmso=\E\177, rmul=\E^A, smir=\E9, smso=\E\177, smul=\E^A, 16751 16752#### Southwest Technical Products 16753# 16754# These guys made an early personal micro called the M6800. 16755# The ct82 was probably its console terminal. 16756# 16757 16758# (swtp: removed obsolete ":bc=^D:" -- esr) 16759swtp|ct82|southwest technical products ct82, 16760 am, 16761 cols#82, lines#20, 16762 bel=^G, clear=^L, cr=^M, cub1=^D, cud1=^J, cuf1=^S, 16763 cup=\013%p2%c%p1%c, cuu1=^A, dch1=^\^H, dl1=^Z, ed=^V, el=^F, 16764 home=^P, ich1=^\^X, il1=^\^Y, ind=^N, 16765 is2=\034\022\036\023\036\004\035\027\011\023\036\035\036\017\035\027\022\011, 16766 ll=^C, ri=^O, rmso=^^^F, smso=^^^V, 16767 16768#### Synertek 16769# 16770# Bob Manson <manson@pattyr.acs.ohio-state.edu> writes (28 Apr 1995): 16771# 16772# Synertek used to make ICs, various 6502-based single-board process 16773# control and hobbyist computers, and assorted peripherals including a 16774# series of small inexpensive terminals (I think they were one of the 16775# first to have a "terminal-on-a-keyboard", where the terminal itself 16776# was only slightly larger than the keyboard). 16777# 16778# They apparently had a KTM-1 model, which I've never seen. The KTM-2/40 16779# was a 40x24 terminal that could connect to a standard TV through a 16780# video modulator. The KTM-2/80 was the 80-column version (the 2/40 16781# could be upgraded to the 2/80 by adding 2 2114 SRAMs and a new ROM). 16782# I have a KTM-2/80 still in working order. The KTM-2s had fully 16783# socketed parts, used 2 6507s, a 6532 as keyboard scanner, a program 16784# ROM and 2 ROMs as character generators. They were incredibly simple, 16785# and I've never had any problems with mine (witness the fact that mine 16786# was made in 1981 and is still working great... I've blown the video 16787# output transistor a couple of times, but it's a 2N2222 :-) 16788# 16789# The KTM-3 (which is what is listed in the terminfo file) was their 16790# attempt at putting a KTM-2 in a box (and some models came with a 16791# CRT). It wasn't much different from the KTM-2 hardware-wise, but the 16792# control and escape sequences are very different. The KTM-3 was always 16793# real broken, at least according to the folks I've talked to about it. 16794# 16795# The padding in the entry is probably off--these terminals were very 16796# slow (it takes like 100ms for the KTM-2 to clear the screen...) And 16797# anyone with any sanity replaced the ROMs with something that provided 16798# a reasonable subset of VT100 functionality, since the usual ROMs were 16799# obviously very primitive... oh, you could get an upgraded ROM from 16800# Synertek for some incredible amount of money, but what hacker with an 16801# EPROM burner would do that? :) 16802# 16803# Sorry I don't have any contact info; I believe they were located in 16804# Sunnyvale, and I'm fairly sure they are still manufacturing ICs 16805# (they've gone to ASICs and FPGAs), but I doubt they're in the computer 16806# business these days. 16807# 16808 16809# Tested, seems to work fine with vi. 16810synertek|ktm|synertek380|synertek ktm 3/80 tubeless terminal, 16811 am, 16812 cols#80, lines#24, 16813 clear=^Z, cub1=^H, cuf1=^L, 16814 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, ed=\EJ, el=\EK, 16815 16816#### Tab Office Products 16817# 16818# TAB Products Co. - Palo Alto, California 16819# Electronic Office Products, 16820# 1451 California Avenue 94304 16821# 16822# I think they're out of business. 16823# 16824 16825# The tab 132 uses xon/xoff, so no padding needed. 16826# <smkx>/<rmkx> have nothing to do with arrow keys. 16827# <is2> sets 80 col mode, normal video, autowrap on (for <am>). 16828# Seems to be no way to get rid of status line. 16829# The manual for this puppy was dated June 1981. It claims to be VT52- 16830# compatible but looks more vt100-like. 16831tab132|tab|tab132-15|tab 132/15, 16832 da, db, 16833 OTdN@, cols#80, lines#24, lm#96, 16834 cud1=^J, cup=\E[%i%p1%d;%p2%dH, dch1=\E[P, dl1=\E[M, 16835 il1=\E[L, is2=\E[?7h\E[?3l\E[?5l, kcub1=\E[D, kcud1=\E[B, 16836 kcuu1=\E[A, rmir=\E[4l, rmkx@, smir=\E[4h, smkx@, use=vt100, 16837tab132-w|tab132 in wide mode, 16838 cols#132, 16839 is2=\E[?7h\E[?3h\E[?5l, use=tab132, 16840tab132-rv|tab132 in reverse-video mode, 16841 is2=\E[?7h\E[?3l\E[?5h, use=tab132, 16842tab132-w-rv|tab132 in reverse-video/wide mode, 16843 is2=\E[?7h\E[?3h\E[?5h, use=tab132-w, 16844 16845 16846#### Teleray 16847# 16848# Research Incorporated 16849# 6425 Flying Cloud Drive 16850# Eden Prairie, MN 55344 16851# Vox: (612)-941-3300 16852# 16853# The Teleray terminals were all discontinued in 1992-93. RI still services 16854# and repairs these beasts, but no longer manufactures them. The Teleray 16855# people believe that all the types listed below are very rare now (1995). 16856# There was a newer line of Telerays (Model 7, Model 20, Model 30, and 16857# Model 100) that were ANSI-compatible. 16858# 16859# Note two things called "teleray". Reorder should move the common one 16860# to the front if you have either. A dumb teleray with the cursor stuck 16861# on the bottom and no obvious model number is probably a 3700. 16862# 16863 16864t3700|dumb teleray 3700, 16865 OTbs, 16866 cols#80, lines#24, 16867 bel=^G, clear=^L, cr=^M, cub1=^H, cud1=^J, ind=^J, 16868t3800|teleray 3800 series, 16869 OTbs, 16870 cols#80, it#8, lines#24, 16871 bel=^G, clear=^L, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 16872 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, ed=\EJ, el=\EK, 16873 home=\EH, ht=^I, ind=^J, ll=\EY7\s, 16874t1061|teleray|teleray 1061, 16875 OTbs, am, km, xhp, xt, 16876 cols#80, it#8, lines#24, xmc#1, 16877 bel=^G, clear=\014$<1>, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 16878 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, dch1=\EQ, 16879 dl1=\EM$<2*>, ed=\EJ$<1>, el=\EK, home=\EH, ht=^I, hts=\EF, 16880 ich1=\EP, il1=\EL$<2*>, ind=^J, ip=$<0.4*>, 16881 is2=\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, 16882 kf1=^Z1, kf2=^Z2, kf3=^Z3, kf4=^Z4, kf5=^Z5, kf6=^Z6, kf7=^Z7, 16883 kf8=^Z8, rmso=\ER@, rmul=\ER@, smso=\s\ERD, smul=\ERH, 16884 tbc=\EG, 16885t1061f|teleray 1061 with fast PROMs, 16886 dl1=\EM, il1=\EL, ip@, use=t1061, 16887# "Teleray Arpa Special", officially designated as 16888# "Teleray Arpa network model 10" with "Special feature 720". 16889# This is the new (1981) fast microcode updating the older "arpa" proms 16890# (which gave meta-key and programmable-fxn keys). 720 is much much faster, 16891# converts the keypad to programmable function keys, and has other goodies. 16892# Standout mode is still broken (magic cookie, etc) so is suppressed as no 16893# programs handle such lossage properly. 16894# Note: this is NOT the old termcap's "t1061f with fast proms." 16895# From: J. Lepreau <lepreau@utah-cs> Tue Feb 1 06:39:37 1983, Univ of Utah 16896# (t10: removed overridden ":so@:se@:us@:ue@:" -- esr) 16897t10|teleray 10 special, 16898 OTbs, km, xhp, xt, 16899 cols#80, it#8, lines#24, xmc#2, 16900 clear=\Ej$<30/>, cub1=^H, cuf1=\EC, 16901 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, dch1=\EQ, 16902 dl1=\EM, ed=\EJ, el=\EK, home=\EH, ht=^I, ich1=\EP, il1=\EL, 16903 ind=\Eq, pad=\0, ri=\Ep, rmso=\ER@, rmul=\ER@, smso=\ERD, 16904 smul=\ERH, 16905# teleray 16 - map the arrow keys for vi/rogue, shifted to up/down page, and 16906# back/forth words. Put the function keys (f1-f10) where they can be 16907# found, and turn off the other magic keys along the top row, except 16908# for line/local. Do the magic appropriate to make the page shifts work. 16909# Also toggle ^S/^Q for those of us who use Emacs. 16910t16|teleray 16, 16911 am, da, db, mir, xhp, xt, 16912 cols#80, lines#24, 16913 bel=^G, clear=\E[H\E[2J, cr=^M, cub1=^H, cud1=\E[B, 16914 cuf1=\E[C, cup=%i\E[%p1%d;%p2%df, cuu1=\E[A, dch1=\E[P, 16915 dl1=\E[M, ed=\E[0J, el=\E[0K, home=\E[H, ht=^I, il1=\E[L, 16916 ind=^J, kf1=^Z1, kf10=^Z0, kf2=^Z2, kf3=^Z3, kf4=^Z4, kf5=^Z5, 16917 kf6=^Z6, kf7=^Z7, kf8=^Z8, kf9=^Z9, ri=\E[T, 16918 rmcup=\E[V\E[24;1f\E[?38h, rmir=\E[4l, rmso=\E[m, 16919 rmul=\E[m, sgr0=\E[m, smcup=\E[U\E[?38l, smir=\E[4h, 16920 smso=\E[7m, smul=\E[4m, 16921 16922#### Texas Instruments (ti) 16923# 16924 16925# The Silent 700 was so called because it was built around a quiet thermal 16926# printer. It was portable, equipped with an acoustic coupler, and pretty 16927# neat for its day. 16928ti700|ti733|ti735|ti745|ti800|ti silent 700/733/735/745 or omni 800, 16929 OTbs, hc, os, 16930 cols#80, 16931 bel=^G, cr=\r$<162>, cub1=^H, cud1=^J, ind=^J, 16932 16933# 16934# Texas Instruments 916 VDT 7 bit control mode 16935# 16936ti916|ti916-220-7|Texas Instruments 916 VDT 8859/1 vt220 mode 7 bit CTRL, 16937 da, db, in, msgr, 16938 cbt=\E[Z, civis=\E[?25l, clear=\E[H\E[2J$<6>, 16939 cnorm=\E[?25h, cub=\E[%p1%dD, cud=\E[%p1%dB, 16940 cuf=\E[%p1%dC, cup=\E[%p1%i%p1%d;%p2%dH, cuu=\E[%p1%dA, 16941 cvvis=\E[?25h, dch=\E[%p1%dP$<250>, dch1=\E[P, 16942 dl=\E[%p1%dM, ech=\E[%p1%dX$<20>, ed=\E[J$<6>, el=\E[0K, 16943 el1=\E[1K, enacs=\E(B\E)0, ff=^L, flash=\E[?5h\E[?5l$<6>, 16944 hpa=\E[%p1%{1}%+%dG, hts=\E[0W, ich=\E[%p1%d@$<250>, 16945 il=\E[%p1%dL$<36>, ip=$<10>, is2=\E[1;24r\E[24;1H, 16946 kcmd=\E[29~, kdch1=\E[P, kent=^J, kf1=\E[17~, kf10=\E[28~, 16947 kf11=\E[29~, kf12=\E[31~, kf2=\E[18~, kf3=\E[19~, 16948 kf4=\E[20~, kf5=\E[21~, kf6=\E[23~, kf7=\E[24~, kf8=\E[25~, 16949 kf9=\E[26~, khome=\E[H, kich1=\E[@, knp=\E[S, kpp=\E[T, 16950 kprt=^X, prot=\E&, rmacs=\017$<2>, rs2=\E[!p, 16951 smacs=\016$<2>, tbc=\E[3g, vpa=\E[%p1%{1}%+%dd, 16952 use=vt220, 16953# 16954# Texas Instruments 916 VDT 8 bit control mode 16955# 16956ti916-8|ti916-220-8|Texas Instruments 916 VDT 8859/1 8 vt220 mode bit CTRL, 16957 kcmd=\23329~, kcub1=\233D, kcud1=\233B, kcuf1=\233C, 16958 kcuu1=\233A, kdch1=\233P, kent=^J, kf1=\23317~, 16959 kf10=\23328~, kf11=\23329~, kf12=\23331~, kf2=\23318~, 16960 kf3=\23319~, kf4=\23320~, kf5=\23321~, kf6=\23323~, 16961 kf7=\23324~, kf8=\23325~, kf9=\23326~, khome=\233H, 16962 kich1=\233@, knp=\233S, kpp=\233T, kprt=^X, use=ti916, 16963# 16964# Texas Instruments 916 VDT 8859/1 7 bit control 132 column mode 16965# 16966ti916-132|Texas Instruments 916 VDT vt220 132 column, 16967 cols#132, use=ti916, 16968# 16969# Texas Instruments 916 VDT 8859/1 8 bit control 132 column mode 16970# 16971ti916-8-132|Texas Instruments 916 VDT 8-bit vt220 132 column, 16972 cols#132, use=ti916-8, 16973ti924|Texas Instruments 924 VDT 8859/1 7 bit CTRL, 16974 OTbs, am, xon, 16975 cols#80, it#8, lines#24, 16976 bel=^G, blink=\E[5m, bold=\E[1m, civis=\E[?25l, 16977 clear=\E[2J\E[H, cnorm=\E[?25h, cr=^M, 16978 csr=%i\E[%p1%d;%p2%dr, cub1=\E[D, cud1=\E[B, cuf1=\E[C, 16979 cup=%i\E[%p1%d;%p2%dH, cuu1=\E[A, cvvis=\E[?31h, 16980 dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, ht=^I, hts=\EH, 16981 il1=\E[L, ind=\ED, kbs=^H, kcub1=\E[D, kcud1=\E[B, 16982 kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[P, kf1=\EOP, kf2=\EOQ, 16983 kf3=\EOR, kf4=\EOS, kf5=\E[16~, kf6=\E[17~, kf7=\E[18~, 16984 kf8=\E[19~, kf9=\E[20~, kich1=\E[@, rc=\E8, rev=\E[7m, 16985 ri=\EM, rmso=\E[m, rmul=\E[m, sc=\E7, sgr0=\E[m, smso=\E[7m, 16986 smul=\E[4m, tbc=\E[3g, 16987ti924-8|Texas Instruments 924 VDT 8859/1 8 bit CTRL, 16988 am, xon, 16989 cols#80, it#8, lines#24, 16990 bel=^G, blink=\E[5m, bold=\E[1m, civis=\E[?25l, 16991 clear=\E[2J\E[H, cnorm=\E[?25h, cr=^M, 16992 csr=%i\E[%p1%d;%p2%dr, cub1=\E[D, cud1=\E[B, cuf1=\E[C, 16993 cup=%i\E[%p1%d;%p2%dH, cuu1=\E[A, cvvis=\E[?31h, 16994 dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, ht=^I, hts=\EH, 16995 il1=\E[L, ind=\ED, kbs=^H, kcub1=\E[D, kcud1=\E[B, 16996 kcuf1=\E[C, kcuu1=\E[A, kdch1=P$<\233>, kf1=P$<\217>, 16997 kf2=Q$<\217>, kf3=R$<\217>, kf4=S$<\217>, kf5=~$<\23316>, 16998 kf6=~$<\23317>, kf7=~$<\23318>, kf8=~$<\23319>, 16999 kf9=~$<\23320>, kich1=@$<\233>, rc=\E8, rev=\E[7m, ri=\EM, 17000 rmso=\E[m, rmul=\E[m, sc=\E7, sgr0=\E[m, smso=\E[7m, 17001 smul=\E[4m, tbc=\E[3g, 17002ti924w|Texas Instruments 924 VDT 7 bit - 132 column mode, 17003 cols#132, use=ti924, 17004ti924-8w|Texas Instruments 924 VDT 8 bit - 132 column mode, 17005 cols#132, use=ti924-8, 17006ti931|Texas Instruments 931 VDT, 17007 OTbs, am, xon, 17008 cols#80, lines#24, 17009 bel=^G, blink=\E4P, clear=\EL, cnorm=\E4@, cr=^M, cub1=\ED, 17010 cud1=\EB, cuf1=\EC, cup=\EY%p1%{32}%+%c%p2%{32}%+%c, 17011 cuu1=\EA, dch1=\EQ, dl1=\EO, ed=\EJ, el=\EI, home=\EH, 17012 ich1=\ER\EP\EM, il1=\EN, ind=\Ea, invis=\E4H, 17013 is2=\EGB\E(@B@@\E), kcub1=\ED, kcud1=\EB, kcuf1=\EC, 17014 kcuu1=\EA, kdch1=\EQ, kdl1=\EO, kf1=\Ei1, kf2=\Ei2, kf3=\Ei3, 17015 kf4=\Ei4, kf5=\Ei5, kf6=\Ei6, kf7=\Ei7, kf8=\Ei8, kf9=\Ei9, 17016 kich1=\EP, kil1=\EN, rev=\E4B, ri=\Eb, rmso=\E4@, rmul=\E4@, 17017 sgr0=\E4@, smso=\E4A, smul=\E4D, 17018ti926|Texas Instruments 926 VDT 8859/1 7 bit CTRL, 17019 csr@, ind=\E[1S, ri=\E[1T, use=ti924, 17020# (ti926-8: I corrected this from the broken SCO entry -- esr) 17021ti926-8|Texas Instruments 926 VDT 8859/1 8 bit CTRL, 17022 csr@, ind=\2331S, ri=\2331T, use=ti924-8, 17023ti_ansi|basic entry for ti928, 17024 am, bce, eo, xenl, xon, 17025 colors#8, cols#80, it#8, lines#25, pairs#64, 17026 bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, clear=\E[2J\E[H, 17027 cr=^M, csr=\E[%i%p1%d;%p2%dr, cub1=^H, cud1=\E[B, 17028 cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, dch1=\E[P, 17029 dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, ht=^I, ich1=\E[@, 17030 il1=\E[L, ind=\E[S, kbs=^H, kcub1=\E[D, kcud1=\E[B, 17031 kcuf1=\E[C, kcuu1=\E[A, kend=\E[F, kf0=\E[V, kf1=\E[M, 17032 kf2=\E[N, kf3=\E[O, kf4=\E[P, kf5=\E[Q, kf6=\E[R, kf7=\E[S, 17033 kf8=\E[T, kf9=\E[U, khome=\E[H, knp=\E[G, kpp=\E[I, 17034 op=\E[37;40m, ri=\E[T, rmso=\E[m, rmul=\E[m, 17035 setab=\E[4%p1%dm, setaf=\E[3%p1%dm, sgr0=\E[m, 17036 smso=\E[7m, smul=\E[4m, 17037# 17038# 928 VDT 7 bit control mode 17039# 17040ti928|Texas Instruments 928 VDT 8859/1 7 bit CTRL, 17041 kdch1=\E[P, kend=\E_1\E\\, kent=\E[8~, kf1=\E[17~, 17042 kf10=\E[28~, kf11=\E[29~, kf12=\E[31~, kf13=\E[32~, 17043 kf15=\E[34~, kf2=\E[18~, kf3=\E[19~, kf4=\E[20~, 17044 kf5=\E[21~, kf6=\E[23~, kf7=\E[24~, kf8=\E[25~, kf9=\E[26~, 17045 kich1=\E[@, knp=\E[S, kpp=\E[T, kprt=\E[35~, use=ti_ansi, 17046# 17047# 928 VDT 8 bit control mode 17048# 17049ti928-8|Texas Instruments 928 VDT 8859/1 8 bit CTRL, 17050 kdch1=\233P, kend=\2371\234, kent=\2338~, kf1=\23317~, 17051 kf10=\23328~, kf11=\23329~, kf12=\23331~, kf13=\23332~, 17052 kf15=\23334~, kf2=\23318~, kf3=\23319~, kf4=\23320~, 17053 kf5=\23321~, kf6=\23323~, kf7=\23324~, kf8=\23325~, 17054 kf9=\23326~, khome=\233H, kich1=\233@, knp=\233S, 17055 kpp=\233T, kprt=\23335~, use=ti_ansi, 17056 17057#### Zentec (zen) 17058# 17059 17060# (zen30: removed obsolete :ma=^L ^R^L^K^P:. This entry originally 17061# had just <smso>=\EG6 which I think means standout was supposed to be 17062# dim-reverse using ADM12-style attributes. ADM12 <smul>/<rmul> and 17063# <invis> might work-- esr) 17064zen30|z30|zentec 30, 17065 OTbs, am, mir, ul, 17066 cols#80, lines#24, 17067 bel=^G, clear=\E*, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 17068 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, dch1=\EW, 17069 dim=\EG2, dl1=\ER$<1.5*>, ed=\EY, el=\ET$<1.0*>, home=^^, 17070 il1=\EE$<1.5*>, ind=^J, rmir=\Er, rmul@, smir=\Eq, smso=\EG6, 17071 smul@, use=adm+sgr, 17072# (zen50: this had extension capabilities 17073# :BS=^U:CL=^V:CR=^B: 17074# UK/DK/RK/LK/HM were someone's aliases for ku/kd/kl/kr/kh, 17075# which were also in the original entry -- esr) 17076# (zen50: removed obsolete ":ma=^Hh^Ll^Jj^Kk:" -- esr) 17077zen50|z50|zentec zephyr, 17078 OTbs, am, 17079 cols#80, lines#24, xmc#1, 17080 clear=\E+, cub1=^H, cup=\E=%p1%{32}%+%c%p2%{32}%+%c, 17081 cuu1=^K, dch1=\EW, dl1=\ER, ed=\EY, el=\ET, ich1=\EQ, il1=\EE, 17082 invis@, kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, khome=^^, 17083 rmul@, smul@, use=adm+sgr, 17084 17085# CCI 4574 (Office Power) from Will Martin <wmartin@BRL.ARPA> via BRL 17086cci|cci1|z8001|zen8001|CCI Custom Zentec 8001, 17087 OTbs, am, bw, 17088 cols#80, lines#24, 17089 blink=\EM", clear=\EH\EJ, cnorm=\EP, 17090 csr=\ER%p1%{32}%+%c%p2%{32}%+%c, cub1=^H, cud1=^J, 17091 cuf1=\EC, cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, 17092 cvvis=\EF\EQ\EM \ER 7, dim=\EM!, ed=\EJ, el=\EK, home=\EH, 17093 invis=\EM(, is2=\EM \EF\ET\EP\ER 7, kbs=^H, kcub1=\ED, 17094 kcud1=\EB, kcuf1=\EC, kcuu1=\EA, khome=\EH, mc4=^T, mc5=^R, 17095 rev=\EM$, ri=\EI, rmso=\EM\s, rmul=\EM\s, sgr0=\EM\s, 17096 smso=\EM$, smul=\EM0, 17097 17098######## OBSOLETE UNIX CONSOLES 17099# 17100 17101#### Apollo consoles 17102# 17103# Apollo got bought by Hewlett-Packard. The Apollo workstations are 17104# labeled HP700s now. 17105# 17106 17107# From: Gary Darland <goodmanc@garnet.berkeley.edu> 17108apollo|apollo console, 17109 OTbs, am, mir, 17110 cols#88, lines#53, 17111 clear=^L, cub1=^H, cud1=\EB, cuf1=\EC, 17112 cup=\EM%p1%{32}%+%c%p2%d), cuu1=\EA, dch1=\EP, dl1=\EL, 17113 ed=\EJ, el=\EK, hpa=\EN%p1%d, il1=\EI, ind=\EE, ri=\ED, 17114 rmcup=\EX, rmir=\ER, rmso=\ET, rmul=\EV, smcup=\EW, smir=\EQ, 17115 smso=\ES, smul=\EU, vpa=\EO+\s, 17116 17117# We don't know whether or not the apollo guys replicated DEC's firmware bug 17118# in the VT132 that reversed <rmir>/<smir>. To be on the safe side, disable 17119# both these capabilities. 17120apollo_15P|apollo 15 inch display, 17121 rmir@, smir@, use=vt132, 17122apollo_19L|apollo 19 inch display, 17123 rmir@, smir@, use=vt132, 17124apollo_color|apollo color display, 17125 rmir@, smir@, use=vt132, 17126 17127#### Convergent Technology 17128# 17129# Burroughs bought Convergent shortly before it merged with Univac. 17130# CTOS is (I believe) dead. Probably the aws is too (this entry dates 17131# from 1991 or earlier). 17132# 17133 17134# Convergent AWS workstation from Gould/SEL UTX/32 via BRL 17135# (aws: removed unknown :dn=^K: -- esr) 17136aws|Convergent Technologies AWS workstation under UTX and Xenix, 17137 am, 17138 OTug#0, cols#80, lines#28, xmc#0, 17139 OTbc=^H, OTma=\016h\013j\001k\022l\002m, OTnl=^J, acsc=, 17140 clear=^L, cud1=^K, cuf1=^R, cup=\EC%p2%c%p1%c, cuu1=^A, 17141 dch1=\EDC, dl1=\EDL, ed=\EEF, el=\EEL, hpa=\EH%p1%c, 17142 ich1=\EIC, il1=\EIL, ind=\ESU, kbs=^H, kcub1=^N, kcud1=^K, 17143 kcuf1=^R, kcuu1=^A, ri=\ESD, rmacs=\EAAF, rmso=\EARF, 17144 rmul=\EAUF, smacs=\EAAN, smso=\EARN, smul=\EAUN, 17145 vpa=\EV%p1%c, 17146awsc|Convergent Technologies AWS workstation under CTOS, 17147 am, 17148 OTug#0, cols#80, lines#24, xmc#0, 17149 OTbc=^N, OTma=\016h\013j\001k\022l\002m, acsc=, clear=^L, 17150 cud1=^K, cuf1=^R, cup=\EC%p2%c%p1%c, cuu1=^A, ed=\EEF, 17151 el=\EEL, kbs=^H, kcub1=^N, kcud1=^K, kcuf1=^R, kcuu1=^A, 17152 rmacs=\EAAF, rmso=\EAA, rmul=\EAA, smacs=\EAAN, smso=\EAE, 17153 smul=\EAC, 17154 17155#### DEC consoles 17156# 17157 17158# The MicroVax console. Tim Theisen <tim@cs.wisc.edu> writes: 17159# The digital uVax II's had a graphic display called a qdss. It was 17160# supposed to be a high performance graphic accelerator, but it was 17161# late to market and barely appeared before faster dumb frame buffers 17162# appeared. I have only used this display while running X11. However, 17163# during bootup, it was in text mode, and probably had a terminal emulator 17164# within it. And that is what your termcap entry is for. In graphics 17165# mode the screen size is 1024x864 pixels. 17166qdss|qdcons|qdss glass tty, 17167 OTbs, am, 17168 cols#128, lines#57, 17169 clear=\032$<1/>, cub1=^H, cud1=^J, cuf1=^L, 17170 cup=\E=%p1%c%p2%c, cuu1=^K, 17171 17172#### Fortune Systems consoles 17173# 17174# Fortune made a line of 68K-based UNIX boxes that were pretty nifty 17175# in their day; I (esr) used one myself for a year or so around 1984. 17176# They had no graphics, though, and couldn't compete against Suns and 17177# the like. R.I.P. 17178# 17179 17180# From: Robert Nathanson <c160-3bp@Coral> via tut Wed Oct 5, 1983 17181# (This had extension capabilities 17182# :rv=\EH:re=\EI:rg=0:GG=0:\ 17183# :CO=\E\\:WL=^Aa\r:WR=^Ab\r:CL=^Ac\r:CR=^Ad\r:DL=^Ae\r:RF=^Af\r:\ 17184# :RC=^Ag\r:CW=^Ah\r:NU=^Aj\r:EN=^Ak\r:HM=^Al:PL=^Am\r:\ 17185# :PU=^An\r:PD=^Ao\r:PR=^Ap\r:HP=^A@\r:RT=^Aq\r:TB=\r:CN=\177:MP=\E+F: 17186# It had both ":bs:" and ":bs=^H:"; I removed the latter. Also, it had 17187# ":sg=0:" and ":ug=0:"; evidently the composer was trying (unnecessarily) 17188# to force both magic cookie glitches off. Once upon a time, I 17189# used a Fortune myself, so I know the capabilities of the form ^A[a-z]\r are 17190# function keys; thus the "Al" value for HM was certainly an error. I renamed 17191# EN/PD/PU/CO/CF/RT according to the XENIX/TC mappings, but not HM/DL/RF/RC. 17192# I think :rv: and :re: are start/end reverse video and :rg: is a nonexistent 17193# "reverse-video-glitch" capability; I have put :rv: and :re: in with standard 17194# names below. I've removed obsolete ":nl=5^J:" as there is a :do: -- esr) 17195fos|fortune|Fortune system, 17196 OTbs, am, bw, 17197 cols#80, lines#25, 17198 acsc=j*k(l m"q&v%w#x-, bel=^G, blink=\EN, civis=\E], 17199 clear=\014$<20>, cnorm=\E\\, cr=^M, cub1=^H, cud1=\n$<3>, 17200 cup=\034C%p1%{32}%+%c%p2%{32}%+%c, cuu1=\013$<3>, 17201 cvvis=\E\:, dch1=\034W$<5>, dl1=\034R$<15>, 17202 ed=\034Y$<3*>, el=^\Z, home=\036$<10>, ht=^Z, 17203 ich1=\034Q$<5>, il1=\034E$<15>, ind=^J, is2=^_.., kbs=^H, 17204 kcub1=^Aw\r, kcud1=^Ay\r, kcuf1=^Az\r, kcuu1=^Ax\r, 17205 kend=^Ak\r, kent=^Aq, kf1=^Aa\r, kf2=^Ab\r, kf3=^Ac\r, 17206 kf4=^Ad\r, kf5=^Ae\r, kf6=^Af\r, kf7=^Ag\r, kf8=^Ah\r, 17207 khome=^A?\r, knp=^Ao\r, kpp=^An\r, nel=^M^J, rev=\EH, 17208 rmacs=^O, rmso=^\I`, rmul=^\IP, sgr0=\EI, smacs=\Eo, 17209 smso=^\H`, smul=^\HP, 17210 17211#### Masscomp consoles 17212# 17213# Masscomp has gone out of business. Their product line was purchased by 17214# comany in Georgia (US) called "XS International", parts and service may 17215# still be available through them. 17216# 17217 17218# (masscomp: ":MT:" changed to ":km:"; -- esr) 17219masscomp|masscomp workstation console, 17220 OTbs, km, mir, 17221 cols#80, it#8, lines#24, 17222 clear=\E[2J, cub1=^H, cud1=\E[B, cuf1=\E[C, 17223 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, dch1=\E[P, dl1=\E[M, 17224 ed=\E[J, el=\E[K, ht=^I, il1=\E[L, is2=\EGc\EGb\EGw, kbs=^H, 17225 kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, rmir=\E[4l, 17226 rmso=\E[m, rmul=\EGau, smir=\E[4h, smso=\E[7m, smul=\EGu, 17227masscomp1|masscomp large screen version 1, 17228 cols#104, lines#36, use=masscomp, 17229masscomp2|masscomp large screen version 2, 17230 cols#64, lines#21, use=masscomp, 17231 17232######## OTHER OBSOLETE TYPES 17233# 17234# These terminals are *long* dead -- these entries are retained for 17235# historical interest only. 17236# 17237 17238#### Obsolete non-ANSI software emulations 17239# 17240 17241# CTRM terminal emulator 17242# 1. underlining is not allowed with colors: first, is is simulated by 17243# black on white, second, it disables background color manipulations. 17244# 2. BLINKING, REVERSE and BOLD are allowed with colors, 17245# so we have to save their status in the static registers A, B and H 17246# respectively, to be able to restore them when color changes 17247# (because any color change turns off ALL attributes) 17248# 3. <bold> and <rev> sequences alternate modes, 17249# rather then simply entering them. Thus we have to check the 17250# static register B and H to determine the status, before sending the 17251# escape sequence. 17252# 4. <sgr0> now must set the status of all 3 register (A,B,H) to zero 17253# and then reset colors 17254# 5. implementation of the protect mode would badly penalize the performance. 17255# we would have to use \E&bn sequence to turn off colors (as well as all 17256# other attributes), and keep the status of protect mode in yet another 17257# static variable. If someone really needs this mode, they would have to 17258# create another terminfo entry. 17259# 6. original color-pair is white on black. 17260# store the information about colors into static registers 17261# 7. set foreground color. it performs the following steps. 17262# 1) turn off all attributes 17263# 2) turn on the background and video attributes that have been turned 17264# on before (this information is stored in static registers X,Y,Z,A,B,H,D). 17265# 3) turn on foreground attributes 17266# 4) store information about foreground into U,V,W static registers 17267# 8. turn on background: similar to turn on foreground above 17268ctrm|C terminal emulator, 17269 am, bce, xon, 17270 colors#8, cols#80, lh#0, lines#24, lm#0, lw#0, ncv#2, nlab#0, 17271 pairs#63, pb#19200, vt#6, 17272 bel=^G, blink=\E&dA%{1}%PA, 17273 bold=%?%gH%{0}%=%t\E&dH%{1}%PH%;, cbt=\Ei, 17274 clear=\EH\EJ, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 17275 cup=\E&a%p2%dc%p1%dY, cuu1=\EA, dch1=\EP$<2>, dl1=\EM, 17276 ed=\EJ, el=\EK, hpa=\E&a%p1%dC, ht=\011$<2>, hts=\E1, 17277 il1=\EL, ind=^J, ip=$<2>, is2=\E&jA\r, kbs=^H, kcub1=\Eu\r, 17278 kcud1=\Ew\r, kcuf1=\Ev\r, kcuu1=\Et\r, kf1=\Ep\r, 17279 kf2=\Eq\r, kf3=\Er\r, kf4=\Es\r, kf5=\Et\r, kf6=\Eu\r, 17280 kf7=\Ev\r, kf8=\Ew\r, khome=\Ep\r, 17281 op=\E&bn\E&bB\E&bG\E&bR%{0}%PX%{0}%PY%{0}%PZ%{1}%PW%{1}%PV%{1}%PU, 17282 rev=%?%gB%{0}%=%t\E&dB%{1}%PB%;, rmir=\ER, rmkx=\E&jA, 17283 setb=\E&bn%?%gA%t\E&dA%;%?%gB%t\E&dB%;%?%gH%t\E&dH%;%?%gU%t\E&bR%;%?%gV%t\E&bG%;%?%gW%t\E&bB%;%?%p1%{1}%&%t\E&bb%{1}%e%{0}%;%PZ%?%p1%{2}%&%t\E&bg%{1}%e%{0}%;%PY%?%p1%{4}%&%t\E&br%{1}%e%{0}%;%PX, 17284 setf=\E&bn%?%gA%t\E&dA%;%?%gB%t\E&dB%;%?%gH%t\E&dH%;%?%gX%t\E&br%;%?%gY%t\E&bg%;%?%gZ%t\E&bb%;%?%p1%{1}%&%t\E&bB%{1}%e%{0}%;%PW%?%p1%{2}%&%t\E&bG%{1}%e%{0}%;%PV%?%p1%{4}%&%t\E&bR%{1}%e%{0}%;%PU, 17285 sgr=\E&d@%{0}%PA%{0}%PB%{0}%PD%{0}%PH%?%p1%p3%p5%|%|%t\E&dB%{1}%PB%;%?%p4%t\E&dA%{1}%PA%;%?%p6%t\E&dH%{1}%PH%;%?%p2%t\E&dD%;, 17286 sgr0=\E&d@%{0}%PA%{0}%PB%{0}%PH, smir=\EQ, smkx=\E&jB, 17287 smso=\E&dD, smul=\E&dD, tbc=\E3, vpa=\E&a%p1%dY, 17288 17289# gs6300 - can't use blue foreground, it clashes with underline; 17290# it's simulated with cyan 17291# Bug: The <op> capability probably resets attributes. 17292# (gs6300: commented out <rmln> (no <smln>) --esr) 17293gs6300|emots|AT&T PC6300 with EMOTS terminal emulator, 17294 am, bce, msgr, xon, 17295 colors#8, cols#80, it#8, lines#24, pairs#63, 17296 acsc=++\,\,--..``aaffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 17297 bel=^G, blink=\E[5m, bold=\E[1m, clear=\E[H\E[J, cr=^M, 17298 cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=^J, 17299 cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, 17300 cuu=\E[%p1%dA, cuu1=\E[A, dch=\E[%p1%dP, dch1=\E[P, 17301 dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, ht=^I, 17302 ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, il1=\E[L, ind=^J, 17303 is2=\E[m, kbs=^H, kcbt=^R^I, kcub1=\E[D, kcud1=\E[B, 17304 kcuf1=\E[C, kcuu1=\E[A, kf1=\E[0s, kf2=\E[24s, kf3=\E[1s, 17305 kf4=\E[23s, kf5=\E[2s, kf6=\E[22s, kf7=\E[3s, kf8=\E[21s, 17306 khome=\E[H, mc4=\E[4i, mc5=\E[5i, op=\E[?;m, rev=\E[7m, 17307 ri=\E[L, rmacs=\E[10m, rs1=\Ec, setb=\E[?;%p1%dm, 17308 setf=\E[?%?%p1%{0}%=%t0%e%p1%{1}%=%t2%e%p1%{1}%-%d%;m, 17309 sgr0=\E[m\E[10m, smacs=\E[11m, smso=\E[1m, smul=\E[4m, 17310 17311# From: <earle@smeagol.UUCP> 29 Oct 85 05:40:18 GMT 17312# MS-Kermit with Heath-19 emulation mode enabled 17313# (h19k: changed ":pt@:" to ":it@" 17314h19k|h19kermit|heathkit emulation provided by Kermit (no auto margin), 17315 am@, da, db, xt, 17316 it@, 17317 ht@, use=h19-u, 17318 17319# Apple Macintosh with Versaterm, a terminal emulator distributed by Synergy 17320# Software (formerly Peripherals Computers & Supplies, Inc) of 17321# 2457 Perkiomen Ave., Reading, PA 19606, 1-800-876-8376. They can 17322# also be reached at support@synergy.com. 17323versaterm|versaterm vt100 emulator for the macintosh, 17324 am, xenl, 17325 cols#80, it#8, lines#24, 17326 bel=^G, blink=\E[5m$<2/>, bold=\E[1m$<2/>, 17327 clear=\E[;H\E[2J$<50/>, cr=^M, csr=\E[%i%p1%d;%p2%dr, 17328 cub1=^H, cud1=^J, cuf1=\E[C$<2/>, 17329 cup=\E[%i%p1%d;%p2%dH$<5/>, cuu1=\E[A$<2/>, 17330 dch1=\E[1P$<7/>, dl1=\E[1M$<9/>, ed=\E[J$<50/>, 17331 el=\E[K$<3/>, home=\E[H, ht=^I, ich1=\E[1@$<7/>, 17332 il1=\E[1L$<9/>, is2=\E[1;24r\E[24;1H, kbs=^H, kcub1=\EOD, 17333 kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kf1=\EOP, kf2=\EOQ, 17334 kf3=\EOR, kf4=\EOS, nel=^M^J, rc=\E8, rev=\E[7m$<2/>, 17335 rf=/usr/share/tabset/vt100, ri=\EM$<5/>, 17336 rmkx=\E>\E[?1l, rmso=\E[m$<2/>, rmul=\E[m$<2/>, rs1=\E>, 17337 sc=\E7, sgr0=\E[m$<2/>, smkx=\E=\E[?1h, smso=\E[7m$<2/>, 17338 smul=\E[4m$<2/>, 17339 17340# From: Rick Thomas <ihnp4!btlunix!rbt> 17341# (xtalk: I added <rmam>/<smam> based on the init string. 17342xtalk|IBM PC with xtalk communication program (versions up to 3.4), 17343 am, mir, msgr, xon, 17344 cols#80, it#8, lines#24, vt#3, xmc#1, 17345 acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, 17346 bel=^G, clear=\E[H\E[J$<50>, cr=^M, cub=\E[%p1%dD, cub1=^H, 17347 cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C$<2>, 17348 cup=\E[%i%p1%d;%p2%dH$<5>, cuu=\E[%p1%dA, 17349 cuu1=\E[A$<2>, dl1=\E[M$<99>, ed=\E[J$<50>, el=\E[K$<3>, 17350 el1=\E[1K$<3>, enacs=\E(B\E)0, home=\E[H, ht=^I, hts=\EH, 17351 il1=\E[L$<99>, ind=^J, ka1=\EOq, ka3=\EOs, kb2=\EOr, kbs=^H, 17352 kc1=\EOp, kc3=\EOn, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, 17353 kcuu1=\EOA, kent=\EOM, kf0=\EOy, kf1=\EOP, kf10=\EOx, 17354 kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf5=\EOt, kf6=\EOu, kf7=\EOv, 17355 kf8=\EOl, kf9=\EOw, ri=\EM$<5>, rmacs=^O, rmam=\E[?7l, 17356 rmkx=\E[?1l\E>, rmso=\E[m\s, 17357 rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sgr0=\E[m, 17358 smacs=^N, smam=\E[?7h, smkx=\E[?1h\E=, smso=\E[7m\s, 17359 tbc=\E[3g, 17360 17361# The official PC terminal emulator program of the AT&T Product Centers. 17362# Note - insert mode commented out - doesn't seem to work on AT&T PC. 17363simterm|attpc running simterm, 17364 am, 17365 cols#80, lines#24, 17366 bel=^G, clear=\EH\EJ, cr=^M, cub1=^H, cud1=\EB, cuf1=\EC, 17367 cup=\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, dch1=\ER, 17368 dl1=\EM, ed=\EJ, el=\EK, home=\EH, il1=\EL, ind=^J, rmcup=\EVE, 17369 rmso=\E&d@, sgr0=\E&d@, smcup=\EVS, smso=\E&dB, 17370 17371#### Daisy wheel printers 17372# 17373# This section collects Diablo, DTC, Xerox, Qume, and other daisy 17374# wheel terminals. These are now largely obsolete. 17375# 17376 17377# (diablo1620: removed <if=/usr/share/tabset/xerox1720>, no such file -- esr) 17378diablo1620|diablo1720|diablo450|ipsi|diablo 1620, 17379 hc, os, 17380 cols#132, it#8, 17381 cub1=^H, cud1=^J, cuu1=\E^J, hd=\ED, hpa=\E\011%i%p1%c, 17382 ht=^I, hts=\E1, hu=\EU, kbs=^H, tbc=\E2, 17383diablo1620-m8|diablo1640-m8|diablo 1620 w/8 column left margin, 17384 cols#124, 17385 is2=\r \E9, use=diablo1620, 17386# (diablo1640: removed <if=/usr/share/tabset/xerox1730>, no such file -- esr) 17387diablo1640|diablo1730|diablo1740|diablo630|x1700|diablo|xerox|diablo 1640, 17388 bel=^G, rmso=\E&, rmul=\ER, smso=\EW, smul=\EE, 17389 use=diablo1620, 17390# (diablo1640-lm: removed <if=/usr/share/tabset/xerox1730-lm>, no such 17391# file -- esr) 17392diablo1640-lm|diablo-lm|xerox-lm|diablo 1640 with indented left margin, 17393 cols#124, 17394 rmso=\E&, rmul=\ER, smso=\EW, smul=\EE, use=diablo1620, 17395diablo1740-lm|630-lm|1730-lm|x1700-lm|diablo 1740 printer, 17396 use=diablo1640-lm, 17397# DTC 382 with VDU. Has no <ed> so we fake it with <el>. Standout 17398# <smso=^P\s\002^PF> works but won't go away without dynamite <rmso=^P\s\0>. 17399# The terminal has tabs, but I'm getting tired of fighting the braindamage. 17400# If no tab is set or the terminal's in a bad mood, it glitches the screen 17401# around all of memory. Note that return puts a blank ("a return character") 17402# in the space the cursor was at, so we use ^P return (and thus ^P newline for 17403# newline). Note also that if you turn off :pt: and let Unix expand tabs, 17404# curses won't work (some old BSD versions) because it doesn't clear this bit, 17405# and cursor addressing sends a tab for row/column 9. What a losing terminal! 17406# I have been unable to get tabs set in all 96 lines - it always leaves at 17407# least one line with no tabs in it, and once you tab through that line, 17408# it completely weirds out. 17409# (dtc382: change <rmcup> to <smcup> -- it just does a clear --esr) 17410dtc382|DTC 382, 17411 am, da, db, xhp, 17412 cols#80, lines#24, lm#96, 17413 bel=^G, clear=\020\035$<20>, cnorm=^Pb, cr=^P^M, cub1=^H, 17414 cuf1=^PR, cup=\020\021%p2%c%p1%c, cuu1=^P^L, cvvis=^PB, 17415 dch1=^X, dl1=^P^S, ed=\020\025\020\023\020\023, el=^P^U, 17416 home=^P^R, il1=^P^Z, ind=^J, pad=\177, rmcup=, rmir=^Pi, 17417 rmul=^P \0, smcup=\020\035$<20>, smir=^PI, smul=^P ^P, 17418dtc300s|DTC 300s, 17419 hc, os, 17420 cols#132, 17421 bel=^G, cr=^M, cub1=^H, cud1=^J, cuu1=^Z, ff=^L, hd=\Eh, ht=^I, 17422 hts=\E1, hu=\EH, ind=^J, kbs=^H, tbc=\E3, 17423gsi|mystery gsi terminal, 17424 hc, os, 17425 cols#132, 17426 bel=^G, cr=^M, cub1=^H, cud1=^J, cuu1=^Z, hd=\Eh, ht=^I, hu=\EH, 17427 ind=^J, 17428aj830|aj832|aj|anderson jacobson, 17429 hc, os, 17430 bel=^G, cr=^M, cub1=^H, cud1=^J, cuu1=\E7, hd=\E9, hu=\E8, 17431 ind=^J, 17432# From: Chris Torek <chris@gyre.umd.edu> Thu, 7 Nov 85 18:21:58 EST 17433aj510|Anderson-Jacobson model 510, 17434 am, mir, 17435 cols#80, lines#24, 17436 clear=^L, cub1=^H, cuf1=\EX, 17437 cup=\E#%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EY, 17438 dch1=.1*\E'D, dl1=\E&D$<2*/>, ed=\E'P, el=\E'L, ich1=, 17439 il1=\E&I$<2*/>, ip=$<.1*/>, kcub1=\EW, kcud1=\EZ, 17440 kcuf1=\EX, kcuu1=\EY, pad=\177, rmcup=\E"N, rmir=\E'J, 17441 rmso=\E"I, rmul=\E"U, smcup=\E"N, smir=\E'I, smso=\E"I, 17442 smul=\E"U, 17443# From: <cbosg!ucbvax!pur-ee!cincy!chris> Thu Aug 20 09:09:18 1981 17444# This is incomplete, but it's a start. 17445nec5520|nec|spinwriter|nec 5520, 17446 hc, os, 17447 cols#132, it#8, 17448 bel=^G, cr=^M, cub1=^H, cud1=^J, cuu1=\E9, ff=^L, 17449 hd=\E]s\n\E]W, ht=^I, hts=\E1, hu=\E]s\E9\E]W, ind=^J, 17450 kbs=^H, tbc=\E3, 17451qume5|qume|Qume Sprint 5, 17452 hc, os, 17453 cols#80, it#8, 17454 bel=^G, cr=^M, cub1=^H, cud1=^J, cuu1=^Z, ff=^L, hd=\Eh, ht=^I, 17455 hts=\E1, hu=\EH, ind=^J, kbs=^H, tbc=\E3, 17456# I suspect the xerox 1720 is the same as the diablo 1620. 17457xerox1720|x1720|x1750|xerox 1720, 17458 hc, os, 17459 cols#132, it#8, 17460 bel=^G, cr=^M, cub1=^H, cud1=^J, ff=^L, ht=^I, hts=\E1, ind=^J, 17461 tbc=\E2, 17462 17463#### Miscellaneous obsolete terminals, manufacturers unknown 17464# 17465# If you have any information about these (like, a manufacturer's name, 17466# and a date on the serial-number plate) please send it! 17467 17468cad68-3|cgc3|cad68 basic monitor transparent mode size 3 chars, 17469 OTbs, am, 17470 cols#73, lines#36, 17471 clear=^Z, cub1=^H, cuf1=^L, cuu1=^K, home=^^, 17472cad68-2|cgc2|cad68 basic monitor transparent mode size 2 chars, 17473 OTbs, am, 17474 cols#85, lines#39, 17475 clear=^Z, cub1=^H, cuf1=^L, cuu1=^K, home=^^, kcub1=\E3, 17476 kcud1=\E2, kcuf1=\E4, kcuu1=\E1, kf1=\E5, kf2=\E6, kf3=\E7, 17477 kf4=\E8, rmso=\Em^C, smso=\Em^L, 17478cops10|cops|cops-10|cops 10, 17479 am, bw, 17480 cols#80, lines#24, 17481 bel=^G, clear=\030$<30/>, cr=^M, cub1=^H, cud1=^J, cuf1=^L, 17482 cup=\020%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K, ed=^W, el=^V, 17483 ind=^J, kbs=^H, kcub1=^H, kcud1=^J, kcuf1=^L, kcuu1=^K, 17484 khome=^Y, 17485# (d132: removed duplicate :ic=\E5:, 17486# merged in capabilities from a BRL entry -- esr) 17487d132|datagraphix|datagraphix 132a, 17488 da, db, in, 17489 cols#80, lines#30, 17490 bel=^G, clear=^L, cnorm=\Em\En, cr=^M, cub1=^H, cud1=^J, 17491 cuf1=\EL, cup=\E8%i%p1%3d%p2%3d, cuu1=\EK, cvvis=\Ex, 17492 dch1=\E6, home=\ET, ht=^I, ich1=\E5, il1=\E3, ind=^J, kbs=^H, 17493 kcub1=^H, kcud1=^J, nel=^M^J, ri=\Ew, 17494# The d800 was an early portable terminal from c.1984-85 that looked a lot 17495# like the original Compaq `lunchbox' portable (but no handle). It had a vt220 17496# mode (which is what this entry looks like) and several other lesser-known 17497# emulations. 17498d800|Direct 800/A, 17499 OTbs, am, da, db, msgr, xhp, 17500 cols#80, it#8, lines#24, 17501 acsc=``a1fxgqh0jYk?lZm@nEooppqDrrsstCu4vAwBx3yyzz{{||}}~~, 17502 bel=^G, clear=\E[1;1H\E[2J, cnorm=\E[>12h, cr=^M, cub1=^H, 17503 cud1=^J, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, 17504 cvvis=\E[>12l, ed=\E[J, el=\E[K, ht=^I, ind=\ED, kcub1=\E[D, 17505 kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kf1=\EOP, kf2=\EOQ, 17506 kf3=\EOR, kf4=\EOS, kf5=\EOT, kf6=\EOU, kf7=\EOV, kf8=\EOW, 17507 ri=\EM, rmacs=\E[m, rmso=\E[m, rmul=\E[m, sgr0=\E[m, 17508 smacs=\E[1m, smso=\E[7m, smul=\E[4m, 17509digilog|digilog 333, 17510 OTbs, 17511 cols#80, lines#16, 17512 bel=^G, cr=^M, cub1=^H, cud1=^J, cuf1=^I, cuu1=^O, el=^X, 17513 home=^N, ind=^J, 17514# The DWK was a terminal manufactured in the Soviet Union c.1986 17515dwk|dwk-vt|dwk terminal, 17516 am, 17517 cols#80, it#8, lines#24, 17518 acsc=+\^\,Q-S.M0\177`+a\:f'g#h#i#jXkClJmFnNo~qUs_tEuPv\\wKxW~_, 17519 bel=^G, clear=\EH\EJ, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, 17520 cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, dch1=\EP, 17521 ed=\EJ, el=\EK, home=\EH, ht=^I, ich1=\EQ, ind=^J, kbs=\177, 17522 kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, kdch1=\Ee, 17523 kf1=\Ef1, kf10=\Ef0, kf2=\Ef2, kf3=\Ef3, kf4=\Ef4, kf5=\Ef5, 17524 kf6=\Ef6, kf7=\Ef7, kf8=\Ef8, kf9=\Ef9, kich1=\Ed, knp=\Eh, 17525 kpp=\Eg, nel=^M^J, rev=\ET, ri=\ES, rmacs=\EG, rmso=\EX, 17526 sgr0=\EX, smacs=\EF, smso=\ET, 17527env230|envision230|envision 230 graphics terminal, 17528 xenl@, 17529 mc0=\E[0i, mc4=\E[4i, mc5=\E[5i, 17530 sgr=\E[%?%p1%t;1%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;m, 17531 use=vt100, 17532# These execuports were impact-printer ttys with a 30- or maybe 15-cps acoustic 17533# coupler attached, the whole rig fitting in a suitcase and more or less 17534# portable. Hot stuff for c.1977 :-) -- esr 17535ep48|ep4080|execuport 4080, 17536 OTbs, am, os, 17537 cols#80, 17538 bel=^G, cr=^M, cub1=^H, cud1=^J, hd=^\, hu=^^, ind=^J, 17539ep40|ep4000|execuport 4000, 17540 cols#136, use=ep4080, 17541# Adam Thompson <athompso@pangea.ca> tells us: 17542# Informer series - these are all portable units, resembling older 17543# automatic bread-baking machines. The terminal looks like a `clamshell' 17544# design, but isn't. The structure is similar to the Direct terminals, 17545# but only half the width. The entire unit is only about 10" wide. 17546# It features an 8" screen (6" or 7" if you have color!), and an 9"x6" 17547# keyboard. All the keys are crammed together, much like some laptop 17548# PCs today, but perhaps less well organized...all these units have a 17549# bewildering array of plugs on the back, including a built-in modem. 17550# The 305 was a color version of the 304; the 306 and 307 were mono and 17551# color terminals built for IBM bisync protocols. 17552# From: Paul Leondis <unllab@amber.berkeley.edu> 17553ifmr|Informer D304, 17554 OTbs, am, 17555 cols#80, lines#24, 17556 clear=\EZ, cub1=^H, cud1=^J, cuf1=\EC, 17557 cup=\EY%p2%{32}%+%c%p1%{32}%+%c, cuu1=\EA, dch1=\E\\, 17558 ed=\E/, el=\EQ, home=\EH, ich1=\E[, ri=\En, rmso=\EK, sgr0=\EK, 17559 smso=\EJ, 17560# Entry largely based on wy60 and has the features of wy60ak. 17561opus3n1+|Esprit Opus3n1+ in wy60 mode with ANSI arrow keys, 17562 am, bw, hs, km, mir, msgr, ul, xon, 17563 cols#80, lh#1, lines#24, lw#8, nlab#8, wsl#80, 17564 acsc=0wa_h[jukslrmqnxqzttuyv]wpxv, bel=^G, blink=\EG2, 17565 cbt=\EI, civis=\E`0, clear=\E*$<100>, cnorm=\E`1, cr=^M, 17566 cub1=^H, cud1=^J, cuf1=^L, cup=\Ea%i%p1%dR%p2%dC, cuu1=^K, 17567 dch1=\EW$<11>, dim=\EGp, dl1=\ER$<5>, dsl=\Ez(\r, 17568 ed=\EY$<100>, el=\ET, fsl=^M, home=\036$<2>, ht=\011$<5>, 17569 hts=\E1, if=/usr/share/tabset/std, il1=\EE$<4>, ind=^J, 17570 ip=$<3>, 17571 is2=\E`\:\Ee(\EO\Ee6\Ec41\E~4\Ec21\Ed/\Ezz&\E[A\177\Ezz'\E[B\177\Ezz(\E[D\177\Ezz)\E[C\177\Ezz<\E[Q\177\Ezz`\E[F\177\EA1*\EZH12, 17572 kHOM=\E{, kbs=^H, kcbt=\EI, kcub1=\E[D, kcud1=\E[B, 17573 kcuf1=\E[C, kcuu1=\E[A, kdch1=\EW, kdl1=\ER, ked=\EY, 17574 kel=\ET, kend=\E[F, kent=\E7, kf1=^A@\r, kf10=^AI\r, 17575 kf11=^AJ\r, kf12=^AK\r, kf13=^AL\r, kf14=^AM\r, kf15=^AN\r, 17576 kf16=^AO\r, kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, 17577 kf6=^AE\r, kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, khome=^^, 17578 kich1=\EQ, kil1=\EE, knp=\EK, kpp=\EJ, kprt=\EP, krpl=\Er, 17579 mc0=\EP, mc4=^T, mc5=^R, nel=\r\n$<3>, 17580 pfloc=\EZ2%p1%{63}%+%c%p2%s\177, 17581 pfx=\EZ1%p1%{63}%+%c%p2%s\177, 17582 pln=\Ez%p1%{47}%+%c%p2%s\r, prot=\E), ri=\Ej$<7>, 17583 rmacs=\EH^C, rmam=\Ed., rmcup=, rmir=\Er, rmln=\EA11, 17584 rmxon=\Ec20, rs1=\E~!\E~4$<150>, rs2=\EeF$<150>, 17585 rs3=\EwG\Ee($<150>, 17586 sgr=%?%p8%t\E)%e\E(%;%?%p9%t\EH\002%e\EH\003%;\EG%{48}%?%p2%p6%|%t%{8}%|%;%?%p1%p3%|%p6%|%t%{4}%|%;%?%p4%t%{2}%|%;%?%p1%p5%|%t%{64}%|%;%?%p7%t%{1}%|%;%c, 17587 sgr0=\E(\EH\003\EG0\EcD, smacs=\EH^B, smam=\Ed/, 17588 smcup=\Ezz&\E[A\177\Ezz'\E[B\177\Ezz(\E[D\177\Ezz)\E[C\177\Ezz<\E[Q\177, 17589 smir=\Eq, smln=\EA10, smxon=\Ec21, tbc=\E0, tsl=\Ez(, 17590 uc=\EG8\EG0, use=adm+sgr, 17591teletec|Teletec Datascreen, 17592 OTbs, am, 17593 cols#80, lines#24, 17594 bel=^G, clear=^L, cr=^M, cub1=^H, cud1=^J, cuf1=^_, cuu1=^K, 17595 home=^^, ind=^J, 17596# From: Mark Dornfeld <romwa@ucbvax.berkeley.edu> 17597# This description is for the LANPAR Technologies VISION 3220 17598# terminal from 1984/85. The function key definitions k0-k5 represent the 17599# edit keypad: FIND, INSERT HERE, REMOVE, SELECT, PREV SCREEN, 17600# NEXT SCREEN. The key definitions k6-k9 represent the PF1 to PF4 keys. 17601# 17602# Kenneth Randell <kenr@datametrics.com> writes on 31 Dec 1998: 17603# I had a couple of scopes (3221) like this once where I used to work, around 17604# the 1987 time frame if memory serves me correctly. These scopes were made 17605# by an outfit called LANPAR Technologies, and were meant to me DEC VT 220 17606# compatible. The 3220 was a plain text terminal like the VT-220, the 3221 17607# was a like the VT-240 (monochrome with Regis + Sixel graphics), and the 3222 17608# was like the VT-241 (color with Regis + Sixel Graphics). These terminals 17609# (3221) cost about $1500 each, and one was always broken -- had to be sent 17610# back to the shop for repairs. 17611# The only real advantage these scopes had over the VT-240's were: 17612# 1) They were faster in the Regis display, or at least the ones I did 17613# 2) They had a handy debugging feature where you could split-screen the 17614# scope, the graphics would appear on the top, and the REGIS commands would 17615# appear on the bottom. I don't remember the VT-240s being able to do that. 17616# I would swear that LANPAR Technologies was in MA someplace, but since I 17617# don't work at the same place anymore, and those terminals and manuals were 17618# long since junked, I cannot be any more sure than that. 17619# 17620# (v3220: removed obsolete ":kn#10:", 17621# I added <rmam>/<smam> based on the init string -- esr) 17622v3220|LANPAR Vision II model 3220/3221/3222, 17623 OTbs, am, mir, xenl, 17624 cols#80, it#8, lines#24, 17625 clear=\E[H\E[J, cub1=^H, cuf1=\E[C, 17626 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, dch1=\E[P, dl1=\E[M, 17627 ed=\E[J, el=\E[K, ht=^I, il1=\E[L, 17628 is2=\E>\E[?3l\E[?7h\E[?8h\E[p, kcub1=\E[D, kcud1=\E[B, 17629 kcuf1=\E[C, kcuu1=\E[A, kf0=\E[1~, kf1=\E[2~, kf2=\E[3~, 17630 kf3=\E[4~, kf4=\E[5~, kf5=\E[6~, kf6=\E[OP, kf7=\E[OQ, 17631 kf8=\E[OR, kf9=\E[OS, khome=\E[H, ri=\EM, rmam=\E[?7l, 17632 rmir=\E[4l, rmkx=\E>, rmso=\E[m, rmul=\E[m, sgr0=\E[m, 17633 smam=\E[?7h, smir=\E[4h, smkx=\E=, smso=\E[7m, smul=\E[4m, 17634# This entry is for the BSD window program. It pessimistically 17635# assumes a rather dumb terminal. In practice this is fine since 17636# window will place a better entry in the TERMCAP environment variable. 17637window-v2|window program version 2, 17638 OTbs, am, da, db, msgr, OTpt, 17639 it#8, 17640 bel=^G, clear=\\EE, cr=^M, cub1=^H, cud1=^J, cuf1=\\EC, 17641 cup=\\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\\EA, ed=\\EJ, 17642 el=\\EK, home=\\EH, ht=^I, kbs=^H, kcub1=^H, kcud1=\\EB, 17643 nel=^M^J, sgr0=\\Er\177, 17644######## ICH/ICH1 VERSUS RMIR/SMIR 17645# 17646# Some non-curses applications get confused if both ich/ich1 and rmir/smir 17647# are present; the symptom is doubled characters in an update using insert. 17648# These applications are technically correct; in both 4.3BSD termcap and 17649# terminfo, you're not actually supposed to specify both ich/ich1 and rmir/smir 17650# unless the terminal needs both. To my knowledge, no terminal still in this 17651# file requires both other than the very obsolete dm2500. 17652# 17653# For ncurses-based applications this is not a problem, as ncurses uses 17654# one or the other as appropriate but never mixes the two. Therefore we 17655# have not corrected entries like `linux' and `xterm' that specify both. 17656# If you see doubled characters from these, use the linux-nic and xterm-nic 17657# entries that suppress ich/ich1. And upgrade to ncurses! 17658# 17659 17660######## VT100/ANSI/ISO 6429/ECMA-48/PC-TERM TERMINAL STANDARDS 17661# 17662# ANSI X3.64 has been withdrawn and replaced by ECMA-48. The ISO 6429 and 17663# ECMA-48 standards are said to be almost identical, but are not the same 17664# as X3.64 (though for practical purposes they are close supersets of it). 17665# 17666# You can obtain ECMA-48 for free by sending email to helpdesk@ecma.ch 17667# requesting the standard(s) you want (i.e. ECMA-48, "Control Functions for 17668# Coded Character Sets"), include your snail-mail address, and you should 17669# receive the document in due course. Don't expect an email acknowledgement. 17670# 17671# Related standards include "X3.4-1977: American National Standard Code for 17672# Information Interchange" (the ASCII standard) and "X3.41.1974: 17673# Code-Extension Techniques for Use with the 7-Bit Coded Character Set of 17674# American National Standard for Information Interchange." I believe (but 17675# am not certain) that these are effectively identical to ECMA-6 and ECMA-35 17676# respectively. 17677# 17678 17679#### VT100/ANSI/ECMA-48 17680# 17681# ANSI Standard (X3.64) Control Sequences for Video Terminals and Peripherals 17682# and ECMA-48 Control Functions for Coded Character Sets. 17683# 17684# Much of the content of this comment is adapted from a table prepared by 17685# Richard Shuford, based on a 1984 Byte article. Terminfo correspondences, 17686# discussion of some terminfo-related issues, and updates to capture ECMA-48 17687# have been added. Control functions described in ECMA-48 only are tagged 17688# with * after their names. 17689# 17690# The table is a complete list of the defined ANSI X3.64/ECMA-48 control 17691# sequences. In the main table, \E stands for an escape (\033) character, 17692# SPC for space. Pn stands for a single numeric parameter to be inserted 17693# in decimal ASCII. Ps stands for a list of such parameters separated by 17694# semicolons. Parameter meanings for most parametrized sequences are 17695# decribed in the notes. 17696# 17697# Sequence Sequence Parameter or 17698# Mnemonic Name Sequence Value Mode terminfo 17699# ----------------------------------------------------------------------------- 17700# APC Applicatn Program Command \E _ - Delim - 17701# BEL Bell * ^G - - bel 17702# BPH Break Permitted Here * \E B - * - 17703# BS Backpace * ^H - EF - 17704# CAN Cancel * ^X - - - (A) 17705# CBT Cursor Backward Tab \E [ Pn Z 1 eF cbt 17706# CCH Cancel Previous Character \E T - - - 17707# CHA Cursor Horizntal Absolute \E [ Pn G 1 eF hpa (B) 17708# CHT Cursor Horizontal Tab \E [ Pn I 1 eF tab (C) 17709# CMD Coding Method Delimiter * \E 17710# CNL Cursor Next Line \E [ Pn E 1 eF nel (D) 17711# CPL Cursor Preceding Line \E [ Pn F 1 eF - 17712# CPR Cursor Position Report \E [ Pn ; Pn R 1, 1 - - (E) 17713# CSI Control Sequence Intro \E [ - Intro - 17714# CTC Cursor Tabulation Control \E [ Ps W 0 eF - (F) 17715# CUB Cursor Backward \E [ Pn D 1 eF cub 17716# CUD Cursor Down \E [ Pn B 1 eF cud 17717# CUF Cursor Forward \E [ Pn C 1 eF cuf 17718# CUP Cursor Position \E [ Pn ; Pn H 1, 1 eF cup (G) 17719# CUU Cursor Up \E [ Pn A 1 eF cuu 17720# CVT Cursor Vertical Tab \E [ Pn Y - eF - (H) 17721# DA Device Attributes \E [ Pn c 0 - - 17722# DAQ Define Area Qualification \E [ Ps o 0 - - 17723# DCH Delete Character \E [ Pn P 1 eF dch 17724# DCS Device Control String \E P - Delim - 17725# DL Delete Line \E [ Pn M 1 eF dl 17726# DLE Data Link Escape * ^P - - - 17727# DMI Disable Manual Input \E \ - Fs - 17728# DSR Device Status Report \E [ Ps n 0 - - (I) 17729# DTA Dimension Text Area * \E [ Pn ; Pn SPC T - PC - 17730# EA Erase in Area \E [ Ps O 0 eF - (J) 17731# ECH Erase Character \E [ Pn X 1 eF ech 17732# ED Erase in Display \E [ Ps J 0 eF ed (J) 17733# EF Erase in Field \E [ Ps N 0 eF - 17734# EL Erase in Line \E [ Ps K 0 eF el (J) 17735# EM End of Medium * ^Y - - - 17736# EMI Enable Manual Input \E b Fs - 17737# ENQ Enquire ^E - - - 17738# EOT End Of Transmission ^D - * - 17739# EPA End of Protected Area \E W - - - (K) 17740# ESA End of Selected Area \E G - - - 17741# ESC Escape ^[ - - - 17742# ETB End Transmission Block ^W - - - 17743# ETX End of Text ^C - - - 17744# FF Form Feed ^L - - - 17745# FNK Function Key * \E [ Pn SPC W - - - 17746# GCC Graphic Char Combination* \E [ Pn ; Pn SPC B - - - 17747# FNT Font Selection \E [ Pn ; Pn SPC D 0, 0 FE - 17748# GSM Graphic Size Modify \E [ Pn ; Pn SPC B 100, 100 FE - (L) 17749# GSS Graphic Size Selection \E [ Pn SPC C none FE - 17750# HPA Horz Position Absolute \E [ Pn ` 1 FE - (B) 17751# HPB Char Position Backward \E [ j 1 FE - 17752# HPR Horz Position Relative \E [ Pn a 1 FE - (M) 17753# HT Horizontal Tab * ^I - FE - (N) 17754# HTJ Horz Tab w/Justification \E I - FE - 17755# HTS Horizontal Tab Set \E H - FE hts 17756# HVP Horz & Vertical Position \E [ Pn ; Pn f 1, 1 FE - (G) 17757# ICH Insert Character \E [ Pn @ 1 eF ich 17758# IDCS ID Device Control String \E [ SPC O - * - 17759# IGS ID Graphic Subrepertoire \E [ SPC M - * - 17760# IL Insert Line \E [ Pn L 1 eF il 17761# IND Index \E D - FE - 17762# INT Interrupt \E a - Fs - 17763# JFY Justify \E [ Ps SPC F 0 FE - 17764# IS1 Info Separator #1 * ^_ - * - 17765# IS2 Info Separator #1 * ^^ - * - 17766# IS3 Info Separator #1 * ^] - * - 17767# IS4 Info Separator #1 * ^\ - * - 17768# LF Line Feed ^J - - - 17769# LS1R Locking Shift Right 1 * \E ~ - - - 17770# LS2 Locking Shift 2 * \E n - - - 17771# LS2R Locking Shift Right 2 * \E } - - - 17772# LS3 Locking Shift 3 * \E o - - - 17773# LS3R Locking Shift Right 3 * \E | - - - 17774# MC Media Copy \E [ Ps i 0 - - (S) 17775# MW Message Waiting \E U - - - 17776# NAK Negative Acknowledge * ^U - * - 17777# NBH No Break Here * \E C - - - 17778# NEL Next Line \E E - FE nel (D) 17779# NP Next Page \E [ Pn U 1 eF - 17780# NUL Null * ^@ - - - 17781# OSC Operating System Command \E ] - Delim - 17782# PEC Pres. Expand/Contract * \E Pn SPC Z 0 - - 17783# PFS Page Format Selection * \E Pn SPC J 0 - - 17784# PLD Partial Line Down \E K - FE - (T) 17785# PLU Partial Line Up \E L - FE - (U) 17786# PM Privacy Message \E ^ - Delim - 17787# PP Preceding Page \E [ Pn V 1 eF - 17788# PPA Page Position Absolute * \E [ Pn SPC P 1 FE - 17789# PPB Page Position Backward * \E [ Pn SPC R 1 FE - 17790# PPR Page Position Forward * \E [ Pn SPC Q 1 FE - 17791# PTX Parallel Texts * \E [ \ - - - 17792# PU1 Private Use 1 \E Q - - - 17793# PU2 Private Use 2 \E R - - - 17794# QUAD Typographic Quadding \E [ Ps SPC H 0 FE - 17795# REP Repeat Char or Control \E [ Pn b 1 - rep 17796# RI Reverse Index \E M - FE - (V) 17797# RIS Reset to Initial State \E c - Fs - 17798# RM Reset Mode * \E [ Ps l - - - (W) 17799# SACS Set Add. Char. Sep. * \E [ Pn SPC / 0 - - 17800# SAPV Sel. Alt. Present. Var. * \E [ Ps SPC ] 0 - - (X) 17801# SCI Single-Char Introducer \E Z - - - 17802# SCO Sel. Char. Orientation * \E [ Pn ; Pn SPC k - - - 17803# SCS Set Char. Spacing * \E [ Pn SPC g - - - 17804# SD Scroll Down \E [ Pn T 1 eF rin 17805# SDS Start Directed String * \E [ Pn ] 1 - - 17806# SEE Select Editing Extent \E [ Ps Q 0 - - (Y) 17807# SEF Sheet Eject & Feed * \E [ Ps ; Ps SPC Y 0,0 - - 17808# SGR Select Graphic Rendition \E [ Ps m 0 FE sgr (O) 17809# SHS Select Char. Spacing * \E [ Ps SPC K 0 - - 17810# SI Shift In ^O - - - (P) 17811# SIMD Sel. Imp. Move Direct. * \E [ Ps ^ - - - 17812# SL Scroll Left \E [ Pn SPC @ 1 eF - 17813# SLH Set Line Home * \E [ Pn SPC U - - - 17814# SLL Set Line Limit * \E [ Pn SPC V - - - 17815# SLS Set Line Spacing * \E [ Pn SPC h - - - 17816# SM Select Mode \E [ Ps h none - - (W) 17817# SO Shift Out ^N - - - (Q) 17818# SOH Start Of Heading * ^A - - - 17819# SOS Start of String * \E X - - - 17820# SPA Start of Protected Area \E V - - - (Z) 17821# SPD Select Pres. Direction * \E [ Ps ; Ps SPC S 0,0 - - 17822# SPH Set Page Home * \E [ Ps SPC G - - - 17823# SPI Spacing Increment \E [ Pn ; Pn SPC G none FE - 17824# SPL Set Page Limit * \E [ Ps SPC j - - - 17825# SPQR Set Pr. Qual. & Rapid. * \E [ Ps SPC X 0 - - 17826# SR Scroll Right \E [ Pn SPC A 1 eF - 17827# SRCS Set Reduced Char. Sep. * \E [ Pn SPC f 0 - - 17828# SRS Start Reversed String * \E [ Ps [ 0 - - 17829# SSA Start of Selected Area \E F - - - 17830# SSU Select Size Unit * \E [ Pn SPC I 0 - - 17831# SSW Set Space Width * \E [ Pn SPC [ none - - 17832# SS2 Single Shift 2 (G2 set) \E N - Intro - 17833# SS3 Single Shift 3 (G3 set) \E O - Intro - 17834# ST String Terminator \E \ - Delim - 17835# STAB Selective Tabulation * \E [ Pn SPC ^ - - - 17836# STS Set Transmit State \E S - - - 17837# STX Start pf Text * ^B - - - 17838# SU Scroll Up \E [ Pn S 1 eF indn 17839# SUB Substitute * ^Z - - - 17840# SVS Select Line Spacing * \E [ Pn SPC \ 1 - - 17841# SYN Synchronous Idle * ^F - - - 17842# TAC Tabul. Aligned Centered * \E [ Pn SPC b - - - 17843# TALE Tabul. Al. Leading Edge * \E [ Pn SPC a - - - 17844# TATE Tabul. Al. Trailing Edge* \E [ Pn SPC ` - - - 17845# TBC Tab Clear \E [ Ps g 0 FE tbc 17846# TCC Tabul. Centered on Char * \E [ Pn SPC c - - - 17847# TSR Tabulation Stop Remove * \E [ Pn SPC d - FE - 17848# TSS Thin Space Specification \E [ Pn SC E none FE - 17849# VPA Vert. Position Absolute \E [ Pn d 1 FE vpa 17850# VPB Line Position Backward * \E [ Pn k 1 FE - 17851# VPR Vert. Position Relative \E [ Pn e 1 FE - (R) 17852# VT Vertical Tabulation * ^K - FE - 17853# VTS Vertical Tabulation Set \E J - FE - 17854# 17855# --------------------------------------------------------------------------- 17856# 17857# Notes: 17858# 17859# Some control characters are listed in the ECMA-48 standard without 17860# being assigned functions relevant to terminal control there (they 17861# referred to other standards such as ISO 1745 or ECMA-35). They are listed 17862# here anyway for completeness. 17863# 17864# (A) ECMA-48 calls this "CancelCharacter" but retains the CCH abbreviation. 17865# 17866# (B) There seems to be some confusion abroad between CHA and HPA. Most 17867# `ANSI' terminals accept the CHA sequence, not the HPA. but terminfo calls 17868# the capability (hpa). ECMA-48 calls this "Cursor Character Absolute" but 17869# preserved the CHA abbreviation. 17870# 17871# (C) CHT corresponds to terminfo (tab). Usually it has the value ^I. 17872# Occasionally (as on, for example, certain HP terminals) this has the HTJ 17873# value. ECMA-48 calls this "Cursor Forward Tabulation" but preserved the 17874# CHT abbreviation. 17875# 17876# (D) terminfo (nel) is usually \r\n rather than ANSI \EE. 17877# 17878# (E) ECMA-48 calls this "Active Position Report" but preserves the CPR 17879# abbreviation. 17880# 17881# (F) CTC parameter values: 0 = set char tab, 1 = set line tab, 2 = clear 17882# char tab, 3 = clear line tab, 4 = clear all char tabs on current line, 17883# 5 = clear all char tabs, 6 = clear all line tabs. 17884# 17885# (G) CUP and HVP are identical in effect. Some ANSI.SYS versions accept 17886# HVP, but always allow CUP as an alternate. ECMA-48 calls HVP "Character 17887# Position Absolute" but retains the HVP abbreviation. 17888# 17889# (H) ECMA calls this "Cursor Line Tabulation" but preserves the CVT 17890# abbreviation. 17891# 17892# (I) DSR parameter values: 0 = ready, 1 = busy, 2 = busy, will send DSR 17893# later, 3 = malfunction, 4 = malfunction, will send DSR later, 5 = request 17894# DSR, 6 = request CPR response. 17895# 17896# (J) ECMA calls ED "Erase In Page". EA/ED/EL parameters: 0 = clear to end, 17897# 1 = clear from beginning, 2 = clear. 17898# 17899# (K) ECMA calls this "End of Guarded Area" but preserves the EPA abbreviation. 17900# 17901# (L) The GSM parameters are vertical and horizontal parameters to scale by. 17902# 17903# (M) Some ANSI.SYS versions accept HPR, but more commonly `ANSI' terminals 17904# use CUF for this function and ignore HPR. ECMA-48 calls this "Character 17905# Position Relative" but retains the HPR abbreviation. 17906# 17907# (N) ECMA-48 calls this "Character Tabulation" but retains the HT 17908# abbreviation. 17909# 17910# (O) SGR parameter values: 0 = default mode (attributes off), 1 = bold, 17911# 2 = dim, 3 = italicized, 4 = underlined, 5 = slow blink, 6 = fast blink, 17912# 7 = reverse video, 8 = invisible, 9 = crossed-out (marked for deletion), 17913# 10 = primary font, 10 + n (n in 1..9) = nth alternative font, 20 = Fraktur, 17914# 21 = double underline, 22 = turn off 2, 23 = turn off 3, 24 = turn off 4, 17915# 25 = turn off 5, 26 = proportional spacing, 27 = turn off 7, 28 = turn off 17916# 8, 29 = turn off 9, 30 = black fg, 31 = red fg, 32 = green fg, 33 = yellow 17917# fg, 34 = blue fg, 35 = magenta fg, 36 = cyan fg, 37 = white fg, 38 = set 17918# fg color as in CCIT T.416, 39 = set default fg color, 40 = black bg 17919# 41 = red bg, 42 = green bg, 43 = yellow bg, 44 = blue bg, 45 = magenta bg, 17920# 46 = cyan bg, 47 = white bg, 48 = set bg color as in CCIT T.416, 39 = set 17921# default bg color, 50 = turn off 26, 51 = framed, 52 = encircled, 53 = 17922# overlined, 54 = turn off 51 & 52, 55 = not overlined, 56-59 = reserved, 17923# 61-65 = variable highlights for ideograms. 17924# 17925# (P) SI is also called LSO, Locking Shift Zero. 17926# 17927# (Q) SI is also called LS1, Locking Shift One. 17928# 17929# (R) Some ANSI.SYS versions accept VPR, but more commonly `ANSI' terminals 17930# use CUD for this function and ignore VPR. ECMA calls it `Line Position 17931# Absolute' but retains the VPA abbreviation. 17932# 17933# (S) MC parameters: 0 = start xfer to primary aux device, 1 = start xfer from 17934# primary aux device, 2 = start xfer to secondary aux device, 3 = start xfer 17935# from secondary aux device, 4 = stop relay to primary aux device, 5 = 17936# start relay to primary aux device, 6 = stop relay to secondary aux device, 17937# 7 = start relay to secondary aux device. 17938# 17939# (T) ECMA-48 calls this "Partial Line Forward" but retains the PLD 17940# abbreviation. 17941# 17942# (U) ECMA-48 calls this "Partial Line Backward" but retains the PLD 17943# abbreviation. 17944# 17945# (V) ECMA-48 calls this "Reverse Line Feed" but retains the RI abbreviation. 17946# 17947# (W) RM/SM modes are as follows: 1 = Guarder Area Transfer Mode (GATM), 17948# 2 = Keyboard Action Mode (KAM), 3 = Control Representation Mode (CRM), 17949# 4 = Insertion Replacement Mode, 5 = Status Report Transfer Mode (SRTM), 17950# 6 = Erasure Mode (ERM), 7 = Line Editing Mode (LEM), 8 = Bi-Directional 17951# Support Mode (BDSM), 9 = Device Component Select Mode (DCSM), 17952# 10 = Character Editing Mode (HEM), 11 = Positioning Unit Mode (PUM), 17953# 12 = Send/Receive Mode, 13 = Format Effector Action Mode (FEAM), 17954# 14 = Format Effector Transfer Mode (FETM), 15 = Multiple Area Transfer 17955# Mode (MATM), 16 = Transfer Termination Mode, 17 = Selected Area Transfer 17956# Mode, 18 = Tabulation Stop Mode, 19 = Editing Boundary Mode, 20 = Line Feed 17957# New Line Mode (LF/NL), Graphic Rendition Combination Mode (GRCM), 22 = 17958# Zero Default Mode (ZDM). The EBM and LF/NL modes have actually been removed 17959# from ECMA-48's 5th edition but are listed here for reference. 17960# 17961# (X) Select Alternate Presentation Variants is used only for non-Latin 17962# alphabets. 17963# 17964# (Y) "Select Editing Extent" (SEE) was ANSI "Select Edit Extent Mode" (SEM). 17965# 17966# (Z) ECMA-48 calls this "Start of Guarded Area" but retains the SPA 17967# abbreviation. 17968# 17969# --------------------------------------------------------------------------- 17970# 17971# Abbreviations: 17972# 17973# Intro an Introducer of some kind of defined sequence; the normal 7-bit 17974# X3.64 Control Sequence Introducer is the two characters "Escape [" 17975# 17976# Delim a Delimiter 17977# 17978# x/y identifies a character by position in the ASCII table (column/row) 17979# 17980# eF editor function (see explanation) 17981# 17982# FE format effector (see explanation) 17983# 17984# F is a Final character in 17985# an Escape sequence (F from 3/0 to 7/14 in the ASCII table) 17986# a control sequence (F from 4/0 to 7/14) 17987# 17988# Gs is a graphic character appearing in strings (Gs ranges from 17989# 2/0 to 7/14) in the ASCII table 17990# 17991# Ce is a control represented as a single bit combination in the C1 set 17992# of controls in an 8-bit character set 17993# 17994# C0 the familiar set of 7-bit ASCII control characters 17995# 17996# C1 roughly, the set of control chars available only in 8-bit systems. 17997# This is too complicated to explain fully here, so read Jim Fleming's 17998# article in the February 1983 BYTE, especially pages 214 through 224. 17999# 18000# Fe is a Final character of a 2-character Escape sequence that has an 18001# equivalent representation in an 8-bit environment as a Ce-type 18002# (Fe ranges from 4/0 to 5/15) 18003# 18004# Fs is a Final character of a 2-character Escape sequence that is 18005# standardized internationally with identical representation in 7-bit 18006# and 8-bit environments and is independent of the currently 18007# designated C0 and C1 control sets (Fs ranges from 6/0 to 7/14) 18008# 18009# I is an Intermediate character from 2/0 to 2/15 (inclusive) in the 18010# ASCII table 18011# 18012# P is a parameter character from 3/0 to 3/15 (inclusive) in the ASCII 18013# table 18014# 18015# Pn is a numeric parameter in a control sequence, a string of zero or 18016# more characters ranging from 3/0 to 3/9 in the ASCII table 18017# 18018# Ps is a variable number of selective parameters in a control sequence 18019# with each selective parameter separated from the other by the code 18020# 3/11 (which usually represents a semicolon); Ps ranges from 18021# 3/0 to 3/9 and includes 3/11 18022# 18023# * Not relevant to terminal control, listed for completeness only. 18024# 18025# Format Effectors versus Editor Functions 18026# 18027# A format effector specifies how following output is to be displayed. 18028# An editor function allows you to modify the display. Informally 18029# format effectors may be destructive; format effectors should not be. 18030# 18031# For instance, a format effector that moves the "active position" (the 18032# cursor or equivalent) one space to the left would be useful when you want to 18033# create an overstrike, a compound character made of two standard characters 18034# overlaid. Control-H, the Backspace character, is actually supposed to be a 18035# format effector, so you can do this. But many systems use it in a 18036# nonstandard fashion, as an editor function, deleting the character to the 18037# left of the cursor and moving the cursor left. When Control-H is assumed to 18038# be an editor function, you cannot predict whether its use will create an 18039# overstrike unless you also know whether the output device is in an "insert 18040# mode" or an "overwrite mode". When Control-H is used as a format effector, 18041# its effect can always be predicted. The familiar characters carriage 18042# return, linefeed, formfeed, etc., are defined as format effectors. 18043# 18044# NOTES ON THE DEC VT100 IMPLEMENTATION 18045# 18046# Control sequences implemented in the VT100 are as follows: 18047# 18048# CPR, CUB, CUD, CUF, CUP, CUU, DA, DSR, ED, EL, HTS, HVP, IND, 18049# LNM, NEL, RI, RIS, RM, SGR, SM, TBC 18050# 18051# plus several private DEC commands. 18052# 18053# Erasing parts of the display (EL and ED) in the VT100 is performed thus: 18054# 18055# Erase from cursor to end of line Esc [ 0 K or Esc [ K 18056# Erase from beginning of line to cursor Esc [ 1 K 18057# Erase line containing cursor Esc [ 2 K 18058# Erase from cursor to end of screen Esc [ 0 J or Esc [ J 18059# Erase from beginning of screen to cursor Esc [ 1 J 18060# Erase entire screen Esc [ 2 J 18061# 18062# Some brain-damaged terminal/emulators respond to Esc [ J as if it were 18063# Esc [ 2 J, but this is wrong; the default is 0. 18064# 18065# The VT100 responds to receiving the DA (Device Attributes) control 18066# 18067# Esc [ c (or Esc [ 0 c) 18068# 18069# by transmitting the sequence 18070# 18071# Esc [ ? l ; Ps c 18072# 18073# where Ps is a character that describes installed options. 18074# 18075# The VT100's cursor location can be read with the DSR (Device Status 18076# Report) control 18077# 18078# Esc [ 6 n 18079# 18080# The VT100 reports by transmitting the CPR sequence 18081# 18082# Esc [ Pl ; Pc R 18083# 18084# where Pl is the line number and Pc is the column number (in decimal). 18085# 18086# The specification for the DEC VT100 is document EK-VT100-UG-003. 18087 18088#### ANSI.SYS 18089# 18090# Here is a description of the color and attribute controls supported in the 18091# the ANSI.SYS driver under MS-DOS. Most console drivers and ANSI 18092# terminal emulators for Intel boxes obey these. They are a proper subset 18093# of the ECMA-48 escapes. 18094# 18095# 0 all attributes off 18096# 1 foreground bright 18097# 4 underscore on 18098# 5 blink on/background bright (not reliable with brown) 18099# 7 reverse-video 18100# 8 set blank (non-display) 18101# 10 set primary font 18102# 11 set first alternate font (on PCs, display ROM characters 1-31) 18103# 12 set second alternate font (on PCs, display IBM high-half chars) 18104# 18105# Color attribute sets 18106# 3n set foreground color / 0=black, 1=red, 2=green, 3=brown, 18107# 4n set background color \ 4=blue, 5=magenta, 6=cyan, 7=white 18108# Bright black becomes gray. Bright brown becomes yellow, 18109# These coincide with the prescriptions of the ISO 6429/ECMA-48 standard. 18110# 18111# * If the 5 attribute is on and you set a background color (40-47) it is 18112# supposed to enable bright background. 18113# 18114# * Many VGA cards (such as the Paradise and compatibles) do the wrong thing 18115# when you try to set a "bright brown" (yellow) background with attribute 18116# 5 (you get a blinking yellow foreground instead). A few displays 18117# (including the System V console) support an attribute 6 that undoes this 18118# braindamage (this is required by iBCS2). 18119# 18120# * Some older versions of ANSI.SYS have a bug that causes thems to require 18121# ESC [ Pn k as EL rather than the ANSI ESC [ Pn K. (This is not ECMA-48 18122# compatible.) 18123 18124#### Intel Binary Compatibility Standard 18125# 18126# For comparison, here are the capabilities implied by the Intel Binary 18127# Compatibility Standard for UNIX systems (Intel order number 468366-001). 18128# These recommendations are optional. IBCS2 allows the leading escape to 18129# be either the 7-bit \E[ or 8-bit \0233 introducer, in accordance with 18130# the ANSI X.364/ISO 6429/ECMA-48 standard. Here are the iBCS2 capabilities 18131# (as described in figure 9-3 of the standard). Those expressed in the ibcs2 18132# terminfo entry are followed with the corresponding capability in parens: 18133# 18134# CSI <n>k disable (n=0) or enable (n=1) keyclick 18135# CSI 2h lock keyboard 18136# CSI 2i send screen as input 18137# CSI 2l unlock keyboard 18138# CSI 6m enable background color intensity 18139# CSI <0-2>c reserved 18140# CSI <0-59>m select graphic rendition 18141# CSI <n>;<m>H (cup) cursor to line n and column m 18142# CSI <n>;<m>f cursor to line n and column m 18143# CSI <n>@ (ich) insert characters 18144# CSI <n>A (cuu) cursor up n lines 18145# CSI <n>B (cud) cursor down n lines 18146# CSI <n>C (cuu) cursor right n characters 18147# CSI <n>D (cud) cursor left n characters 18148# CSI <n>E cursor down n lines and in first column 18149# CSI <n>F cursor up n lines and in first column 18150# CSI <n>G (hpa) position cursor at column n-1 18151# CSI <n>J (ed) erase in display 18152# CSI <n>K (el) erase in line 18153# CSI <n>L (il) insert line(s) 18154# CSI <n>P (dch) delete characters 18155# CSI <n>S (indn) scroll up n lines 18156# CSI <n>T (rin) scroll down n lines 18157# CSI <n>X (ech) erase characters 18158# CSI <n>Z (cbt) back up n tab stops 18159# CSI <n>` cursor to column n on line 18160# CSI <n>a (cuu) cursor right n characters 18161# CSI <n>d (vpa) cursor to line n 18162# CSI <n>e cursor down n lines and in first column 18163# CSI <n>g (cbt) clear all tabs 18164# CSI <n>z make virtual terminal n active 18165# CSI ?7h (smam) turn automargin on 18166# CSI ?7l (rmam) turn automargin off 18167# CSI s save cursor position 18168# CSI u restore cursor position to saved value 18169# CSI =<c>A set overscan color 18170# CSI =<c>F set normal foreground color 18171# CSI =<c>G set normal background color 18172# CSI =<c>H set reverse foreground color 18173# CSI =<c>I set reverse foreground color 18174# CSI =<c>J set graphic foreground color 18175# CSI =<c>K set graphic foreground color 18176# CSI =<n>g (dispc) display n from alternate graphics character set 18177# CSI =<p>;<d>B set bell parameters 18178# CSI =<s>;<e>C set cursor parameters 18179# CSI =<x>D enable/disable intensity of background color 18180# CSI =<x>E set/clear blink vs. bold background 18181# CSI 7 (sc) (sc) save cursor position 18182# CSI 8 (rc) (rc) restore cursor position to saved value 18183# CSI H (hts) (hts) set tab stop 18184# CSI Q<n><string> define function key string 18185# (string must begin and end with delimiter char) 18186# CSI c (clear) clear screen 18187# 18188# The lack of any specification for attributes in SGR (among other things) 18189# makes this a wretchedly weak standard. The table above is literally 18190# everything iBSC2 has to say about terminal escape sequences; there is 18191# no further discussion of their meaning or how to set the parameters 18192# in these sequences at all. 18193# 18194 18195######## NONSTANDARD CAPABILITY TRANSLATIONS USED IN THIS FILE 18196# 18197# The historical termcap file entries were written primarily in 4.4BSD termcap. 18198# The 4.4BSD termcap set was substantially larger than the original 4.1BSD set, 18199# with the extension names chosen for compatibility with the termcap names 18200# assigned in System V terminfo. There are some variant extension sets out 18201# there. We try to describe them here. 18202# 18203# XENIX extensions: 18204# 18205# The XENIX extensions include a set of function-key capabilities as follows: 18206# 18207# code XENIX variable name terminfo name name clashes? 18208# ---- ------------------- ------------- ----------------------- 18209# CL key_char_left 18210# CR key_char_right 18211# CW key_change_window create_window 18212# EN key_end kend 18213# HM key_home khome 18214# HP ?? 18215# LD key_delete_line kdl1 18216# LF key_linefeed label_off 18217# NU key_next_unlocked_cell 18218# PD key_page_down knp 18219# PL ?? 18220# PN start_print mc5 18221# PR ?? 18222# PS stop_print mc4 18223# PU key_page_up kpp pulse 18224# RC key_recalc remove_clock 18225# RF key_toggle_ref req_for_input 18226# RT key_return kent 18227# UP key_up_arrow kcuu1 parm_up_cursor 18228# WL key_word_left 18229# WR key_word_right 18230# 18231# The XENIX extensions also include the following character-set and highlight 18232# capabilities: 18233# 18234# XENIX terminfo function 18235# ----- -------- ------------------------------ 18236# GS smacs start alternate character set 18237# GE rmacs end alternate character set 18238# GG :as:/:ae: glitch (analogous to :sg:/:ug:) 18239# bo blink begin blink (not used in /etc/termcap) 18240# be end blink (not used in /etc/termcap) 18241# bb blink glitch (not used in /etc/termcap) 18242# it dim begin dim (not used in /etc/termcap) 18243# ie end dim (not used in /etc/termcap) 18244# ig dim glitch (not used in /etc/termcap) 18245# 18246# Finally, XENIX also used the following forms-drawing capabilities: 18247# 18248# single double type ASCII approximation 18249# ------ ------ ------------- ------------------- 18250# GV Gv vertical line | 18251# GH Gv horizontal line - _ 18252# G1 G5 top right corner _ | 18253# G2 G6 top left corner | 18254# G3 G7 bottom left corner |_ 18255# G4 G8 bottom right corner _| 18256# GD Gd down-tick character T 18257# GL Gl left-tick character -| 18258# GR Gr right-tick character |- 18259# GC Gc middle intersection -|- 18260# GU Gu up-tick character _|_ 18261# 18262# These were invented to take advantage of the IBM PC ROM character set. One 18263# can compose an acsc string from the single-width characters as follows 18264# "j{G4}k{G1}l{G2}m{G3}q{GH}x{GV}t{GR}u{GL}v{GU}w{GD}n{GC}" 18265# When translating a termcap file, ncurses tic will do this automatically. 18266# The double forms characters don't fit the SVr4 terminfo model. 18267# 18268# AT&T Extensions: 18269# 18270# The old AT&T 5410, 5420, 5425, pc6300plus, 610, and s4 entries used a set of 18271# nonstandard capabilities. Its signature is the KM capability, used to name 18272# some sort of keymap file. EE, BO, CI, CV, XS, DS, FL and FE are in this 18273# set. Comments in the original, and a little cross-checking with other AT&T 18274# documentation, seem to establish that BO=:mr: (start reverse video), DS=:mh: 18275# (start dim), XS=:mk: (secure/invisible mode), EE=:me: (end highlights), 18276# FL=:LO: (enable soft labels), FE=:LF: (disable soft labels), CI=:vi: (make 18277# cursor invisible), and CV=:ve: (make cursor normal). 18278# 18279# HP Extensions 18280# 18281# The HP library (as of mid-1995, their term.h file version 70.1) appears to 18282# have the System V capabilities up to SVr1 level. After that, it supports 18283# two nonstandard caps meml and memu corresponding to the old termcap :ml:, 18284# :mu: capabilities. After that, it supports caps plab_norm, label_on, 18285# label_off, and key_f11..key_f63 capabilities like SVr4's. This makes the 18286# HP binary format incompatible with SVr4's. 18287# 18288# IBM Extensions 18289# 18290# There is a set of nonstandard terminfos used by IBM's AIX operating system. 18291# The AIX terminfo library diverged from SVr1 terminfo, and replaces all 18292# capabilities following prtr_non with the following special capabilties: 18293# box[12], batt[12], colb[0123456789], colf[0123456789], f[01234567], kbtab, 18294# kdo, kcmd, kcpn, kend, khlp, knl, knpn, kppn, kppn, kquit, ksel, kscl, kscr, 18295# ktab, kmpf[123456789], apstr, ksf1..ksf10, kf11...kf63, kact, topl, btml, 18296# rvert, lvert. Some of these are identical to XPG4/SVr4 equivalents: 18297# kcmd, kend, khlp, and kf11...kf63. Two others (kbtab and ksel) can be 18298# renamed (to kcbt and kslt). The places in the box[12] capabilities 18299# correspond to acsc chars, here is the mapping: 18300# 18301# box1[0] = ACS_ULCORNER 18302# box1[1] = ACS_HLINE 18303# box1[2] = ACS_URCORNER 18304# box1[3] = ACS_VLINE 18305# box1[4] = ACS_LRCORNER 18306# box1[5] = ACS_LLCORNER 18307# box1[6] = ACS_TTEE 18308# box1[7] = ACS_RTEE 18309# box1[8] = ACS_BTEE 18310# box1[9] = ACS_LTEE 18311# box1[10] = ACS_PLUS 18312# 18313# The box2 characters are the double-line versions of these forms graphics. 18314# The AIX binary terminfo format is incompatible with SVr4's. 18315# 18316# Iris console extensions: 18317# 18318# HS is half-intensity start; HE is half-intensity end 18319# CT is color terminal type (for Curses & rogue) 18320# CP is color change escape sequence 18321# CZ are color names (for Curses & rogue) 18322# 18323# The ncurses tic utility recognizes HS as an alias for mh <dim>. 18324# 18325# TC Extensions: 18326# 18327# There is a set of extended termcaps associated with something 18328# called the "Terminal Control" or TC package created by MainStream Systems, 18329# Winfield Kansas. This one also uses GS/GE for as/ae, and also uses 18330# CF for civis and CO for cvvis. Finally, they define a boolean :ct: 18331# that flags color terminals. 18332# 18333######## CHANGE HISTORY 18334# 18335# The last /etc/termcap version maintained by John Kunze was 8.3, dated 8/5/94. 18336# Releases 9 and up are maintained by Eric S. Raymond as part of the ncurses 18337# project. 18338# 18339# This file contains all the capability information present in John Kunze's 18340# last version of the termcap master file, except as noted in the change 18341# comments at end of file. Some information about very ancient obsolete 18342# capabilities has been moved to comments. Some all-numeric names of older 18343# terminals have been retired. 18344# 18345# I changed :MT: to :km: (the 4.4BSD name) everywhere. I commented out some 18346# capabilities (EP, dF, dT, dV, kn, ma, ml, mu, xr, xx) that are no longer 18347# used by BSD curses. 18348# 18349# The 9.1.0 version of this file was translated from my lightly-edited copy of 18350# 8.3, then mechanically checked against 8.3 using Emacs Lisp code written for 18351# the purpose. Unless the ncurses tic implementation and the Lisp code were 18352# making perfectly synchronized mistakes which I then failed to catch by 18353# eyeball, the translation was correct and perfectly information-preserving. 18354# 18355# Major version number bumps correspond to major version changes in ncurses. 18356# 18357# Here is a log of the changes since then: 18358# 18359# 9.1.0 (Wed Feb 1 04:50:32 EST 1995): 18360# * First terminfo master translated from 8.3. 18361# 9.2.0 (Wed Feb 1 12:21:45 EST 1995): 18362# * Replaced Wyse entries with updated entries supplied by vendor. 18363# 18364# 9.3.0 (Mon Feb 6 19:14:40 EST 1995): 18365# * Added contact & status info from G. Clark Brown <clark@sssi.com>. 18366# 9.3.1 (Tue Feb 7 12:00:24 EST 1995): 18367# * Better XENIX keycap translation. Describe TC termcaps. 18368# * Contact and history info supplied by Qume. 18369# 9.3.2 (Sat Feb 11 23:40:02 EST 1995): 18370# * Raided the Shuford FTP site for recent termcaps/terminfos. 18371# * Added information on X3.64 and VT100 standard escape sequences. 18372# 9.3.3 (Mon Feb 13 12:26:15 EST 1995): 18373# * Added a correct X11R6 xterm entry. 18374# * Fixed terminfo translations of padding. 18375# 9.3.4 (Wed Feb 22 19:27:34 EST 1995): 18376# * Added correct acsc/smacs/rmacs strings for vt100 and xterm. 18377# * Added u6/u7/u8/u9 capabilities. 18378# * Added PCVT entry. 18379# 9.3.5 (Thu Feb 23 09:37:12 EST 1995): 18380# * Emacs uses :so:, not :mr:, for its mode line. Fix linux entry 18381# to use reverse-video standout so Emacs will look right. 18382# * Added el1 capability to ansi. 18383# * Added smacs/rmacs to ansi.sys. 18384# 18385# 9.4.0 (Sat Feb 25 16:43:25 EST 1995): 18386# * New mt70 entry. 18387# * Added COPYRIGHTS AND OTHER DELUSIONS. 18388# * Added AT&T 23xx & 500/513, vt220 and vt420, opus3n1+, netronics 18389# smartvid & smarterm, ampex 175 & 219 & 232, 18390# env230, falco ts100, fluke, intertube, superbrain, ncr7901, vic20, 18391# ozzie, trs200, tr600, Tandy & Texas Instruments VDTs, intext2, 18392# screwpoint, fviewpoint, Contel Business Systems, Datamedia Colorscan, 18393# adm36, mime314, ergo4000, ca22851. Replaced att7300, esprit, dd5500. 18394# * Replaced the Perkin-Elmer entries with vendor's official ones. 18395# * Restored the old minimal-ansi entry, luna needs it. 18396# * Fixed some incorrect ip and proportional-padding translations. 18397# 9.4.1 (Mon Feb 27 14:18:33 EST 1995): 18398# * Fix linux & AT386 sgr strings to do A_ALTCHARSET turnoff correctly. 18399# * Make the xterm entry 65 lines again; create xterm25 and xterm24 18400# to force a particular height. 18401# * Added beehive4 and reorganized other Harris entries. 18402# 9.4.2 (Thu Mar 9 01:45:44 EST 1995): 18403# * Merged in DEC's official entries for its terminals. The only old 18404# entry I kept was Doug Gwyn's alternate vt100 (as vt100-avo). 18405# * Replaced the translated BBN Bitgraph entries with purpose-built 18406# ones from AT&T's SVr3. 18407# * Replaced the AT&T entries with AT&T's official terminfos. 18408# * Added teleray 16, vc415, cops10. 18409# * Merged in many individual capabilities from SCO terminfo files. 18410# 9.4.3 (Mon Mar 13 02:37:53 EST 1995): 18411# * Typo fixes. 18412# * Change linux entry so A_PROTECT enables IBM-PC ROM characters. 18413# 9.4.4 (Mon Mar 27 12:32:35 EST 1995): 18414# * Added tty35, Ann Arbor Guru series. vi300 and 550, cg7900, tvi803, 18415# pt210, ibm3164, IBM System 1, ctrm, Tymshare scanset, dt200, adm21, 18416# simterm, citoh and variants. 18417# * Replaced sol entry with sol1 and sol2. 18418# * Replaced Qume QVT and Freedom-series entries with purpose-built 18419# terminfo entries. 18420# * Enhanced vt220, tvi910, tvi924, hpterm, hp2645, adm42, tek 18421# and dg200 entries using caps from from SCO. 18422# * Added the usual set of function-key mappings to ANSI entry. 18423# * Corrected xterm's function-key capabilities. 18424# 9.4.5 (Tue Mar 28 14:27:49 EST 1995): 18425# * Fix in xterm entry, cub and cud are not reliable under X11R6. 18426# 9.4.6 (Thu Mar 30 14:52:15 EST 1995): 18427# * Fix in xterm entry, get the arrow keys right. 18428# * Change some \0 escapes to \200. 18429# 9.4.7 (Tue Apr 4 11:27:11 EDT 1995) 18430# * Added apple (Videx card), adm1a, oadm31. 18431# * Fixed malformed ampex csr. 18432# * Fixed act4, cyb110; they had old-style prefix padding left in. 18433# * Changed mandatory to advisory padding in many entries. 18434# * Replaced HP entries up to hpsub with purpose-built ones. 18435# * Blank rmir/smir/rmdc/smdc capabilities removed. 18436# * Small fixes merged in from SCO entries for lpr, fos, tvi910+, tvi924. 18437# 9.4.8 (Fri Apr 7 09:36:34 EDT 199): 18438# * Replaced the Ann Arbor entries with SCO's, the init strings are 18439# more efficient (but the entries otherwise identical). 18440# * Added dg211 from Shuford archive. 18441# * Added synertek, apple-soroc, ibmpc, pc-venix, pc-coherent, xtalk, 18442# adm42-nl, pc52, gs6300, xerox820, uts30. 18443# * Pull SCO's padding into vi200 entry. 18444# * Improved capabilities for tvi4107 and other Televideo and Viewpoint 18445# entries merged in from SCO's descriptions. 18446# * Fixed old-style prefix padding on zen50, h1500. 18447# * Moved old superbee entry to superbee-xsb, pulled in new superbee 18448# entry from SCO's description. 18449# * Reorganized the special entries. 18450# * Added lm#0 to cbunix and virtual entries. 18451# 18452# 9.5.0 (Mon Apr 10 11:30:00 EDT 1995): 18453# * Restored cdc456tst. 18454# * Fixed sb1 entry, SCO erroneously left out the xsb glitch. 18455# * Added megatek, beacon, microkit. 18456# * Freeze for ncurses-1.9 release. 18457# 9.5.1 (Fri Apr 21 12:46:42 EDT 1995): 18458# * Added historical data for TAB. 18459# * Comment fixes from David MacKenzie. 18460# * Added the new BSDI pc3 entry. 18461# 9.5.2 (Tue Apr 25 17:27:52 EDT 1995) 18462# * A change in the tic -C logic now ensures that all entries in 18463# the termcap translation will fit in < 1024 bytes. 18464# * Added `bobcat' and `gator' HP consoles and the Nu machine entries 18465# from GNU termcap file. This merges in all their local information. 18466# 9.5.3 (Tue Apr 25 22:28:13 EDT 1995) 18467# * Changed tic -C logic to dump all capabilities used by GNU termcap. 18468# * Added warnings about entries with long translations (restoring 18469# all the GNU termcaps pushes a few over the edge). 18470# 9.5.4 (Wed Apr 26 15:35:09 EDT 1995) 18471# * Yet another tic change, and a couple of entry tweaks, to reduce the 18472# number of long (> 1024) termcap translations back to 0. 18473# 18474# 9.6.0 (Mon May 1 10:35:54 EDT 1995) 18475# * Added kf13-kf20 to Linux entry. 18476# * Regularize Prime terminal names. 18477# * Historical data on Synertek. 18478# * Freeze for ncurses-1.9.1. 18479# 9.6.1 (Sat May 6 02:00:52 EDT 1995): 18480# * Added true xterm-color entry, renamed djm's pseudo-color entry. 18481# * Eliminate whitespace in short name fields, this tanks some scripts. 18482# * Name field changes to shorten some long entries. 18483# * Termcap translation now automatically generates empty rmir/smir 18484# when ich1/ich is present (copes with an ancient vi bug). 18485# * Added `screen' entries from FSF's screen-3.6.2. 18486# * Added linux-nic and xterm-nic entries. 18487# 9.6.2 (Sat May 6 17:00:55 EDT 1995): 18488# * Change linux entry to use smacs=\E[11m and have an explicit acsc, 18489# eliminating some special-case code in ncurses. 18490# 18491# 9.7.0 (Tue May 9 18:03:12 EDT 1995): 18492# * Added vt320-k3, rsvidtx from the Emacs termcap.dat file. I think 18493# that captures everything unique from it. 18494# * Added reorder script generator. 18495# * Freeze for ncurses 1.9.2 release. 18496# 9.7.1 (Thu Jun 29 09:35:22 EDT 1995): 18497# * Added Sean Farley's kspd, flash, rs1 capabilities for linux. 18498# * Added Olaf Siebert's corrections for adm12. 18499# * ansi-pc-color now includes the colors and pairs caps, so that 18500# entries which use it will inherit them automatically. 18501# * The linux entry can now recognize the center (keypad 5) key. 18502# * Removed some junk that found its way into Linux acsc. 18503# 18504# 9.8.0 (Fri Jul 7 04:46:57 EDT 1995): 18505# * Add 50% cut mark as a desperate hack to reduce tic's core usage. 18506# * xterm doesn't try to use application keypad mode any more. 18507# * Freeze for ncurses-1.9.3 release. 18508# 9.8.1 (Thu Jul 19 17:02:12 EDT 1995): 18509# * Added corrected sun entry from vendor. 18510# * Added csr capability to linux entry. 18511# * Peter Wemm says the at386 hpa should be \E[%i%p1%dG, not \E[%p1%dG. 18512# * Added vt102-nsgr to cope with stupid IBM PC `VT100' emulators. 18513# * Some commented-out caps in long entries come back in, my code 18514# for computing string-table lengths had a bug in it. 18515# * pcansi series modified to fit comm-program reality better. 18516# 9.8.2 (Sat Sep 9 23:35:00 EDT 1995): 18517# * BSD/OS actually ships the ibmpc3 bold entry as its console. 18518# * Correct some bad aliases in the pcansi series 18519# * Added entry for QNX console. 18520# * Clean up duplicate long names for use with 4.4 library. 18521# * Change vt100 standout to be normal reverse vide, not bright reverse; 18522# this makes the Emacs status line look better. 18523# 9.8.3 (Sun Sep 10 13:07:34 EDT 1995): 18524# * Added Adam Thompson's VT320 entries, also his dtx-sas and z340. 18525# * Minor surgery, mostly on name strings, to shorten termcap version. 18526# 18527# 9.9.0 (Sat Sep 16 23:03:48 EDT 1995): 18528# * Added dec-vt100 for use with the EWAN emulator. 18529# * Added kmous to xterm for use with xterm's mouse-tracking facility. 18530# * Freeze for 1.9.5 alpha release. 18531# 9.9.1 (Wed Sep 20 13:46:09 EDT 1995): 18532# * Changed xterm lines to 24, the X11R6 default. 18533# 9.9.2 (Sat Sep 23 21:29:21 EDT 1995): 18534# * Added 7 newly discovered, undocumented acsc characters to linux 18535# entry (the pryz{|} characters). 18536# * ncurses no longer steals A_PROTECT. Simplify linux sgr accordingly. 18537# * Correct two typos in the xterm entries introduced in 9.9.1. 18538# * I finally figured out how to translate ko capabilities. Done. 18539# * Added tvi921 entries from Tim Theisen. 18540# * Cleanup: dgd211 -> dg211, adm42-nl -> adm42-nsl. 18541# * Removed mystery tec entry, it was neither interesting nor useful. 18542# * shortened altos3, qvt203, tvi910+, tvi92D, tvi921-g, tvi955, vi200-f, 18543# vi300-ss, att505-24, contel301, dm3045, f200vi, pe7000c, vc303a, 18544# trs200, wind26, wind40, wind50, cdc456tst, dku7003, f110, dg211, 18545# by making them relative to use capabilities 18546# * Added cuf1=^L to tvi925 from deleted variant tvi925a. 18547# * fixed cup in adm22 entry and parametrized strings in vt320-k3. 18548# * added it#8 to entries that used to have :pt: -- tvi912, vi200, 18549# ampex80, 18550# * Translate all home=\E[;H capabilities to home=\E[H, they're 18551# equivalent. 18552# * Translate \E[0m -> \E[m in [rs]mso, [rs]mul, and init strings of 18553# vt100 and ANSI-like terminals. 18554# 9.9.3 (Tue Sep 26 20:11:15 EDT 1995): 18555# * Added it#8 and ht=\t to *all* entries with :pt:; the ncurses tic 18556# does this now, too. 18557# * fviewpoint is gone, it duplicated screwpoint. 18558# * Added hp2627, graphos, graphos-30, hpex, ibmega, ibm8514, ibm8514-c, 18559# ibmvga, ibmvga-c, minix, mm340, mt4520-rv, screen2, screen3, 18560# versaterm, vi500, vsc, vt131, vt340, vt400 entries from UW. 18561# The UW vi50 replaces the old one, which becomes vi50adm, 18562# * No more embedded commas in name fields. 18563# 18564# 9.10.0 (Wed Oct 4 15:39:37 EDT 1995): 18565# * XENIX forms characters in fos, trs16, scoansi become acsc strings, 18566# * Introduced klone+* entries for describing Intel-console behavior. 18567# * Linux kbs is default-mapped to delete for some brain-dead reason. 18568# * -nsl -> -ns. The -pp syntax is obsolete. 18569# * Eliminate [A-Z]* primaries in accordance with SVr4 terminfo docs. 18570# * Make xterm entry do application-keypad mode again. I got complaints 18571# that it was messing up someone's 3270 emulator. 18572# * Added some longname fields in order to avoid warning messages from 18573# older tic implementations. 18574# * According to ctlseqs.ms, xterm has a full vt100 graphics set. Use 18575# it! (This gives us pi, greater than, less than, and a few more.) 18576# * Freeze for ncurses-1.9.6 release. 18577# 9.10.1 (Sat Oct 21 22:18:09 EDT 1995): 18578# * Add xon to a number of console entries, they're memory-mapped and 18579# don't need padding. 18580# * Correct the use dependencies in the ansi series. 18581# * Hand-translate more XENIX capabilities. 18582# * Added hpterm entry for HP's X terminal emulator. 18583# * Added aixterm entries. 18584# * Shortened four names so everything fits in 14 chars. 18585# 18586# 9.11.0 (Thu Nov 2 17:29:35 EST 1995): 18587# * Added ibcs2 entry and info on iBCS2 standard. 18588# * Corrected hpa/vpa in linux entry. They still fail the worm test. 18589# * We can handle the HP meml/memu capability now. 18590# * Added smacs to klone entries, just as documentation. 18591# * Carrected ansi.sys and cit-500 entries. 18592# * Added z39, vt320-k311, v220c, and avatar entries. 18593# * Make pcansi use the ansi.sys invis capability. 18594# * Added DIP switch descriptions for vt100, adm31, tvi910, tvi920c, 18595# tvi925, tvi950, dt80, ncr7900i, h19. 18596# * X3.64 has been withdrawn, change some references. 18597# * Removed function keys from ansi-m entry. 18598# * Corrected ansi.sys entry. 18599# * Freeze for ncurses-1.9.7 release. 18600# 9.11.1 (Tue Nov 6 18:18:38 EST 1995): 18601# * Added rmam/smam capabilities to many entries based on init strings. 18602# * Added correct hpa/vpa to linux. 18603# * Reduced several entries relative to vt52. 18604# 9.11.2 (Tue Nov 7 00:21:06 EST 1995): 18605# * Exiled some utterly unidentifiable custom and homebrew types to the 18606# UFO file; also, obsolete small-screen hardware; also, entries which 18607# look flat-out incorrect, garbled, or redundant. These include the 18608# following entries: carlock, cdc456tst, microkit, qdss, ramtek, tec, 18609# tec400, tec500, ubell, wind, wind16, wind40, wind50, plasma, agile, 18610# apple, bch, daleblit, nucterm, ttywilliams, nuterminal, nu24, bnu, 18611# fnu, nunix-30, nunix-61, exidy, ex3000, sexidy, pc52, sanyo55, 18612# yterm10, yterm11, yterm10nat, aed, aed-ucb, compucolor, compucolor2, 18613# vic20, dg1, act5s, netx, smartvid, smarterm, sol, sol2, dt200, 18614# trs80, trs100, trs200, trs600, xitex, rsvidtx, vid, att2300-x40, 18615# att2350-x40, att4410-nfk, att5410-ns, otty5410, att5425-nl-w, 18616# tty5425-fk, tty5425-w-fk, cita, c108-na, c108-rv-na, c100-rv-na, 18617# c108-na-acs, c108-rv-na-acs, ims950-ns, infotonKAS, ncr7900i-na, 18618# regent60na, scanset-n, tvi921-g, tvi925n, tvi925vbn, tvi925vb, 18619# vc404-na, vc404-s-na, vt420nam, vt420f-nam, vt420pc-nam, vt510nam, 18620# vt510pc-nam, vt520nam, vt525nam, xterm25, xterm50, xterm65, xterms. 18621# * Corrected pcvt25h as suggested by Brian C. Grayson 18622# <bgrayson@pine.ece.utexas.edu>. 18623# 9.11.3 (Thu Nov 9 12:14:40 EST 1995): 18624# * Added kspd=\E[P, kcbt=\E[Z, to linux entry, changed kbs back to ^H. 18625# * Added kent=\EOM to xterm entry. 18626# 18627# 9.11.4 (Fri Nov 10 08:31:35 EST 1995): 18628# * Corrected gigi entry. 18629# * Restored cuf/cud1 to xterm, their apparent bugginess was due to 18630# bad hpa/vpa capabilities. 18631# * Corrected flash strings to have a uniform delay of .2 sec. No 18632# more speed-dependent NUL-padding! 18633# * terminfo capabilities in comments bracketed with <>. 18634# 9.11.5 (Fri Nov 10 15:35:02 EST 1995): 18635# * Replaced pcvt with the 3.31 pcvt entries. 18636# * Freeze for 1.9.7a. 18637# 9.11.6 (Mon Nov 13 10:20:24 EST 1995): 18638# * Added emu entry from the X11R6 contrib tape sources. 18639# 18640# 9.12.0 (Wed Nov 29 04:22:25 EST 1995): 18641# * Improved iris-ansi and sun entries. 18642# * More flash string improvements. 18643# * Corrected wy160 & wy160 as suggested by Robert Dunn 18644# * Added dim to at386. 18645# * Reconciled pc3 and ibmpc3 with the BSDI termcap file. Keith says 18646# he's ready to start using the termcap generated from this one. 18647# * Added vt102-w, vt220-w, xterm-bold, wyse-vp, wy75ap, att4424m, 18648# ln03, lno3-w, h19-g, z29a*, qdss. Made vt200 an alias of vt220. 18649# * Improved hpterm, apollo consoles, fos, qvt101, tvi924. tvi925, 18650# att610, att620, att630, 18651# * Changed hazeltine name prefix from h to hz. 18652# * Sent t500 to the UFI file. 18653# * I think we've sucked all the juice out of BSDI's termcap file now. 18654# * Freeze for ncurses 1.9.8 release 18655# 9.12.1 (Thu Nov 30 03:14:06 EST 1995) 18656# * Unfreeze, linux kbs needed to be fixed. 18657# * Tim Theisen pinned down a bug in the DMD firmware. 18658# 9.12.2 (Thu Nov 30 19:08:55 EST 1995): 18659# * Fixes to ansi and klone capabilities (thank you, Aaron Ucko). 18660# (The broken ones had been shadowed by sgr.) 18661# 9.12.3 (Thu Dec 7 17:47:22 EST 1995): 18662# * Added documentation on ECMA-48 standard. 18663# * New Amiga entry. 18664# 9.12.4 (Thu Dec 14 04:16:39 EST 1995): 18665# * More ECMA-48 stuff 18666# * Corrected typo in minix entry, added pc-minix. 18667# * Corrected khome/kend in xterm (thank you again, Aaron Ucko). 18668# * Added rxvt entry. 18669# * Added 1.3.x color-change capabilities to linux entry. 18670# 9.12.5 (Tue Dec 19 00:22:10 EST 1995): 18671# * Corrected rxvt entry khome/kend. 18672# * Corrected linux color change capabilities. 18673# * NeXT entries from Dave Wetzel. 18674# * Cleaned up if and rf file names (all in /usr/share now). 18675# * Changed linux op capability to avoid screwing up a background color 18676# pair set by setterm. 18677# 9.12.6 (Wed Feb 7 16:14:35 EST 1996): 18678# * Added xterm-sun. 18679# 9.12.7 (Fri Feb 9 13:27:35 EST 1996): 18680# * Added visa50. 18681# 18682# 9.13.0 (Sun Mar 10 00:13:08 EST 1996): 18683# * Another sweep through the Shuford archive looking for new info. 18684# * Added dg100 alias to dg6053 based on a comp.terminals posting. 18685# * Added st52 from Per Persson. 18686# * Added eterm from the GNU Emacs 19.30 distribution. 18687# * Freeze for 1.9.9. 18688# 9.13.1 (Fri Mar 29 14:06:46 EST 1996): 18689# * FreeBSD console entries from Andrew Chernov. 18690# * Removed duplicate Atari st52 name. 18691# 9.13.2 (Tue May 7 16:10:06 EDT 1996) 18692# * xterm doesn't actually have ACS_BLOCK. 18693# * Change klone+color setf/setb to simpler forms that can be 18694# translated into termcap. 18695# * Added xterm1. 18696# * Removed mechanically-generated junk capabilities from cons* entries. 18697# * Added color support to bsdos. 18698# 9.13.3 (Thu May 9 10:35:51 EDT 1996): 18699# * Added Wyse 520 entries from Wm. Randolph Franklin <wrf@ecse.rpi.edu>. 18700# * Created ecma+color, linux can use it. Also added ech to linux. 18701# * Teach xterm about more keys. Add Thomas Dickey's 3.1.2E updates. 18702# * Add descriptions to FreeBSD console entries. Also shorten 18703# some aliases to <= 14 chars for portability. 18704# * Added x68k console 18705# * Added OTbs to several VT-series entries. 18706# 9.13.4 (Wed May 22 10:54:09 EDT 1996): 18707# * screen entry update for 3.7.1 from Michael Alan Dorfman. 18708# 9.13.5 (Wed Jun 5 11:22:41 EDT 1996): 18709# * kterm correction due to Kenji Rikitake. 18710# * ACS correction in vt320-kll due to Phillippe De Muyter. 18711# 9.13.6 (Sun Jun 16 15:01:07 EDT 1996): 18712# * Sun console entry correction from J.T. Conklin. 18713# * Changed all DEC VT300 and up terminals to use VT300 tab set 18714# 9.13.7 (Mon Jul 8 20:14:32 EDT 1996): 18715# * Added smul to linux entry (we never noticed it was missing 18716# because of sgr!). 18717# * Added rmln to hp+labels (deduced from other HP entries). 18718# * Added vt100 acsc capability to vt220, vt340, vt400, d800, dt80-sas, 18719# pro350, att7300, 5420_2, att4418, att4424, att4426, att505, vt320-k3. 18720# * Corrected vt220 acsc. 18721# * The klone+sgr and klone+sgr-dumb entries now use klone+acs; 18722# this corresponds to reality and helps prevent some tic warnings. 18723# * Added sgr0 to c101, pcix, vt100-nav, screen2, oldsun, next, altos2, 18724# hpgeneric, hpansi, hpsub, hp236, hp700-wy, bobcat, dku7003, adm11, 18725# adm12, adm20, adm21, adm22, adm31, adm36, adm42, pt100, pt200, 18726# qvt101, tvi910, tvi921, tvi92B, tvi925, tvi950, tvi970, wy30-mc, 18727# wy50-mc, wy100, wyse-vp, ampex232, regent100, viewpoint, vp90, 18728# adds980, cit101, cit500, contel300, cs10, dm80, falco, falco-p, 18729# f1720a, go140, sb1, superbeeic, microb, ibm8512, kt7, ergo4000, 18730# owl, uts30, dmterm, dt100, dt100, dt110, appleII, apple-videx, 18731# lisa, trsII, atari, st52, pc-coherent, basis, m2-man, bg2.0, bg1.25, 18732# dw3, ln03, ims-ansi, graphos, t16, zen30, xtalk, simterm, d800, 18733# ifmr, v3220, wy100q, tandem653, ibmaed. 18734# * Added DWK terminal description. 18735# 9.13.8 (Wed Jul 10 11:45:21 EDT 1996): 18736# * Many entries now have highlights inherited from adm+sgr. 18737# * xterm entry now corresponds to XFree86 3.1.2E, with color. 18738# * xtitle and xtitle-twm enable access to the X status line. 18739# * Added linux-1.3.6 color palette caps in conventional format. 18740# * Added adm1178 terminal. 18741# * Move fos and apollo terminals to obsolete category. 18742# * Aha! The BRL terminals file told us what the Iris extensions mean. 18743# * Added, from the BRL termcap file: rt6221, rt6221-w, northstar, 18744# commodore, cdc721-esc, excel62, osexec. Replaced from the BRL file: 18745# cit500, adm11. 18746# 9.13.9 (Mon Jul 15 00:32:51 EDT 1996): 18747# * Added, from the BRL termcap file: cdc721, cdc721l, cdc752, cdc756, 18748# aws, awsc, zentec8001, modgraph48, rca vp3301/vp3501, ex155. 18749# * Corrected, from BRL termcap file: vi50. 18750# * Better rxvt entry & corrected xterm entries from Thomas Dickey. 18751# 9.13.10 (Mon Jul 15 12:20:13 EDT 1996): 18752# * Added from BRL: cit101e & variants, hmod1, vi200, ansi77, att5620-1, 18753# att5620-s, att5620-s, dg210, aas1901, hz1520, hp9845, osborne 18754# (old osborne moved to osborne-w), tvi970-vb, tvi970-2p, tvi925-hi, 18755# tek4105brl, tek4106brl, tek4107brl,tek4109brl, hazel, aepro, 18756# apple40p, apple80p, appleIIgs, apple2e, apple2e-p, apple-ae. 18757# * Paired-attribute fixes to various terminals. 18758# * Sun entry corrections from A. Lukyanov & Gert-Jan Vons. 18759# * xterm entry corrections from Thomas Dickey. 18760# 9.13.11 (Tue Jul 30 16:42:58 EDT 1996): 18761# * Added t916 entry, translated from a termcap in SCO's support area. 18762# * New qnx entry from Michael Hunter. 18763# 9.13.12 (Mon Aug 5 14:31:11 EDT 1996): 18764# * Added hpex2 from Ville Sulko. 18765# * Fixed a bug that ran the qnx and pcvtXX together. 18766# 9.13.13 (Fri Aug 9 01:16:17 EDT 1996): 18767# * Added dtterm entry from Solaris CDE. 18768# 9.13.14 (Tue Sep 10 15:31:56 EDT 1996): 18769# * corrected pairs#8 typo in dtterm entry. 18770# * added tvi9065. 18771# 9.13.15 (Sun Sep 15 02:47:05 EDT 1996): 18772# * updated xterm entry to cover 3.1.2E's new features. 18773# 9.13.16 (Tue Sep 24 12:47:43 EDT 1996): 18774# * Added new minix entry 18775# * Removed aliases of the form ^[0-9]* for obsolete terminals. 18776# * Commented out linux-old, nobody's using pre-1.2 kernels now. 18777# 9.13.17 (Fri Sep 27 13:25:38 EDT 1996): 18778# * Added Prism entries and kt7ix. 18779# * Caution notes about EWAN and tabset files. 18780# * Changed /usr/lib/tabset -> /usr/share/tabset. 18781# * Added acsc/rmacs/smacs to vt52. 18782# 9.13.18 (Mon Oct 28 13:24:59 EST 1996): 18783# * Merged in Thomas Dickey's reorganization of the xterm entries; 18784# added technical corrections to avoid warning messages. 18785# 9.13.19 (Sat Nov 16 16:05:49 EST 1996): 18786# * Added rmso=\E[27m in Linux entry. 18787# * Added koi8-r support for Linux console. 18788# * Replace xterm entries with canonical ones from XFree86 3.2. 18789# 9.13.20 (Sun Nov 17 23:02:51 EST 1996): 18790# * Added color_xterm from Jacob Mandelson 18791# 9.13.21 (Mon Nov 18 12:43:42 EST 1996): 18792# * Back off the xterm entry to use r6 as a base. 18793# 9.13.22 (Sat Nov 30 11:51:31 EST 1996): 18794# * Added dec-vt220 at Adrian Garside's request. 18795# 9.13.23 (Fri Feb 21 16:36:06 EST 1997): 18796# * Replaced minitel-2 entry. 18797# * Added MGR, ansi-nt. 18798# * Minor corrections to xterm entries. 18799# * Replaced EWAN telnet entry. 18800# * Dropped the reorder script generator. It was a fossil. 18801# 9.13.24 (Sun Feb 23 20:55:23 EST 1997): 18802# * Thorsten Lockert added termcap `bs' to a lot of types, working from 18803# the 4.4BSD Lite2 file. 18804# 9.13.25 (Fri Jun 20 12:33:36 EDT 1997): 18805# * Added Datapoint 8242, pilot, ansi_psx, rbcomm, vt220js. 18806# * Updated iris-ansi; corrected vt102-w. 18807# * Switch base xterm entry to 3.3 level. 18808# 9.13.26 (Mon Jun 30 22:45:45 EDT 1997) 18809# * Added basic4. 18810# * Removed rmir/smir from tv92B. 18811# 18812# 10.2.0 (Sat Feb 28 12:47:36 EST 1998): 18813# * add hds200 description (Walter Skorski) 18814# * add beterm entry (Fred Fish) 18815# * add Thomas Dickey's xterm-xf86-v40, xterm-8bit, xterm-16color, 18816# iris-color entries. 18817# * add emx entries. 18818# * Replaced unixpc entry with Benjamin Sittler's corrected version. 18819# * Replaced xterm/rxvt/emu/syscons entries with Thomas Dickey's 18820# versions. 18821# * remove sgr string from qnx based on report by Xiaodan Tang 18822# * Added u8/u9, removed rmul/smul from sun-il. 18823# * 4.2 tic displays \0 rather than \200. 18824# * add linux-koi8r to replace linux-koi8 (which uses a corrupt acsc, 18825# apparently based on cp-866). 18826# * Merged in Pavel Roskin's acsc for linux-koi8 18827# * Corrected some erroneous \\'s to \. 18828# * 4.2 ncurses has been changed to use setaf/setab, consistent w/SysV. 18829# * II -> ii in pcvtXX, screen, xterm. 18830# * Removed \n chars following ANSI escapes in sgr & friends. 18831# * Updated Wyse entries. 18832# * h19 corrections from Tim Pierce. 18833# * Noted that the dm2500 has both ich and smir. 18834# * added pccons for the Alpha under OSF/1. 18835# * Added Sony NEWS workstation entries and cit101e-rv. 18836# * Reverted `amiga'; to Kent Polk's version, as I'm told 18837# the Verkuil entry messes up with Amiga Telnet. 18838# 10.2.1 (Sun Mar 8 18:32:04 EST 1998): 18839# * Corrected attributions in 10.2.0 release notes. 18840# * Scanned the Shuford archive for new terminfos and information. 18841# * Removed sgr from qnx entry (Thomas Dickey). 18842# * Added entries for ICL and Kokusai Data Systems terminals. 18843# * Incorporated NCR terminfos from the Boundless Technology FTP site. 18844# * Incorporated att700 from the Boundless Technology FTP site. 18845# * Miscellaneous contact-address and Web-page updates. 18846# 18847# 1998/5/9 18848# * add nxterm and xterm-color terminfo description (request by Cristian 18849# Gafton <gafton@redhat.com>). 18850# * modify rxvt terminfo description to clear alternate screen before 18851# switching back to normal screen, for compatibility with applications 18852# which use xterm (reported by Manoj Kasichainula <manojk@io.com>). 18853# * modify linux terminfo description to reset color palette (reported 18854# by Telford Tendys <telford@eng.uts.edu.au>). 18855# 18856# 1998/7/4 18857# * merge changes from current XFree86 xterm terminfo descriptions. 18858# 18859# 1998/7/25 18860# * Added minitel1 entries from Alexander Montaron. 18861# * Added qnxt2 from Federico Bianchi. 18862# * Added arm100 terminfo entries from Dave Millen. 18863# 18864# 1998/8/6 18865# * Added ncsa telnet entries from Francesco Potorti 18866# 18867# 1998/8/15 18868# * modify ncsa telnet entry to reflect color, other capabilities based on 18869# examination of the source code - T.Dickey. 18870# 18871# 1998/8/22 18872# * Corrected some erroneous \\'s to \ (eterm, osborne) - TD. 18873# 18874# 1998/8/29 18875# * Added Francesco Potorti's tuned Wyse 99 entries. 18876# * dtterm enacs correction from Alexander V. Lukyanov. 18877# * Add ncsa-ns, ncsa-m-ns and ncsa-m entries from esr version. 18878# * correct a typo in icl6404 entry. 18879# * add xtermm and xtermc 18880# 18881# 1998/9/26 18882# * format most %'char' sequences to %{number} 18883# * adapt IBM AIX 3.2.5 terminfo - T.Dickey 18884# * merge Data General terminfo from Hasufin <hasufin@vidnet.net> - TD 18885# 18886# 1998/10/10 18887# * update xterm-xfree86 to current (patch 84), for is2/rs2 changes - TD 18888# * correct initialization string in xterm-r5, add misc other features 18889# to correspond with xterm patch 84 - TD 18890# 18891# 1998/12/19 18892# * update xterm-xfree86 to current (patch 90), smcur/rmcur changes - TD 18893# * add Mathew Vernon's mach console entries 18894# * corrections for ncsa function-keys (report by Larry Virden) 18895# 18896# 1998/12/19 18897# * change linux to use ncv#2, since underline does not work with color - TD 18898# 18899# 1999/1/9 18900# * add kbt to iris-ansi, document other shift/control functionkeys - TD 18901# * correct iris-ansi and iris-ansi-ap with respect to normal vs keypad 18902# application modes, change kent to use the correct keypad code - TD 18903# 18904# 1999/1/10 18905# * add entry for Tera Term - TD 18906# 18907# 1999/1/23 18908# * minor improvements for teraterm entry - TD 18909# * rename several entries used by BSDI: bsdos to bsdos-pc-nobold, 18910# and bsdos-bold to bsdos-pc (Jeffrey C Honig) 18911# 18912# 1999/2/20 18913# * resolve ambiguity of kend/kll/kslt and khome/kfnd/kich1 strings in 18914# xterm and ncsa entries by removing the unneeded ones. Note that 18915# some entries will return kend & khome versus kslt and kfnd, for 18916# PC-style keyboards versus strict vt220 compatiblity - TD 18917# 18918# 1999/3/13 18919# * adjust xterm-xfree86 khome/kend to match default PC-style keyboard 18920# tables - TD 18921# * add 'crt' entry - TD 18922# * correct typos in 'linux-c' entry - TD 18923# 18924# 1999/3/14 18925# * update entries for BSD/OS console to use klone+sgr and klone+color 18926# (Jeffrey C Honig) 18927# 18928# 1999/3/27 18929# * adjust xterm-xfree86 miscellaneous keypad keys, as per patch #94 - TD. 18930# 18931# 1999/4/10 18932# * add linux-lat, from RedHat patches to ncurses 4.2 18933# 18934# 1999/4/17 18935# * add complete set of default function-key definitions for scoansi - TD. 18936# 18937# 1999/7/3 18938# * add cnorm, cvvis for Linux 2.2 kernels 18939# 18940# 1999/7/24 18941# * add kmous to xterm-r5 -TD 18942# * correct entries xterm+sl and xterm+sl-twm, which were missing the 18943# parent "use" clause -TD 18944# 18945# 1999/7/31 18946# * corrected cnorm, added el1 in 'screen' description -TD 18947# 18948# 1999/8/14 18949# * add ms-vt100 -TD 18950# 18951# 1999/8/21 18952# * corrections to beterm entry -TD 18953# 18954# 1999/8/28 18955# * add cygwin entry -TD 18956# 18957# 1999/9/4 18958# * minor corrections for beterm entry -TD 18959# 18960# 1999/9/18 18961# * add acsc string to HP 70092 terminfo entry -Joerg Wunsch 18962# 18963# 1999/9/25 18964# * add amiga-8bit entry 18965# * add console entries from NetBSD: ofcons, wsvt25, wsvt25m, rcons, 18966# rcons-color, based on 18967# ftp://ftp.netbsd.org/pub/NetBSD/NetBSD-current/src/share/termcap/termcap.src 18968# * add alias for iris-ansi-net 18969# 18970# 1999/10/2 18971# * corrected scoansi entry's acsc, some function keys, add color -TD 18972# 18973# 1999/10/23 18974# * add cnorm, cvvis to cons25w, and modify ncv to add 'dim' -TD 18975# * reorder ncsa entries to make ncsa-vt220 use the alternate function 18976# key mapping, leaving Potorti's entries more like he named them -TD 18977# * remove enter/exit am-mode from cygwin -TD 18978# 18979# 1999/10/30 18980# * correct typos in several entries (missing '[' from CSI): 18981# mgr-sun, ncsa-m, vt320-k3, att505, avt-ns, as well as smir/rmir 18982# strings for avt-ns -TD 18983# * add 'dim' to ncv mask for linux (report by Klaus Weide). 18984# 18985# 1999/11/27 18986# * correct kf1-kf4 in xterm-r6 which were vt100-style PF1-PF4 -TD 18987# * add hts to xterm-r6, and u6-u9 to xterm-r5 -TD 18988# * add xterm-88color and xterm-256color -TD 18989# 18990# 1999/12/4 18991# * add "obsolete" termcap strings -TD 18992# * add kvt and gnome entries -TD 18993# 18994# 1999/12/11 18995# * correct cup string for regent100 -TD 18996# 18997# 2000/1/1 18998# * update mach, add mach-color based on Debian diffs for ncurses 5.0 -TD 18999# * add entries for xterm-hp, xterm-vt220, xterm-vt52 and xterm-noapp -TD 19000# * change OTrs capabilities to rs2 -TD 19001# * add obsolete and extended capabilities to 'screen' -TD 19002# 19003# 2000/1/5 19004# * remove kf0 from rxvt, vt520, vt525 and ibm5151 since it conflicts 19005# with kf10 -TD 19006# * updated xterm-xf86-v40, making kdch1 correspond to vt220 'Remove', 19007# and adding kcbt -TD 19008# 19009# 2000/1/12 19010# * remove incorrect khome/kend from xterm-xf86-v333, which was based on 19011# nonstandard resource settings -TD 19012# 19013# 2000/2/26 19014# * minor fixes for xterm-*, based on Debian #58530 -TD 19015# 19016# 2000/3/4 19017# * add several terminal types from esr's "11.0", as well as comments. 19018# bq300*, dku7102-old, dku7202, hft, lft, pcmw, pmcons, tws*, vip*, 19019# vt220-8bit, vt220-old, wy85-8bit 19020# 19021# 2000/3/18 19022# * add several terminal types from esr's "11.0.1" (ansi-*). 19023# * update OTxx capabilities for changes on 2000/3/4. 19024# * revert part of vt220 change (request by Todd C Miller for OpenBSD) 19025# 19026# 2000/3/26 19027# * move screen's AX extension to ecma+color, modify several entries to 19028# use that, adjusting ncv as needed -TD 19029# 19030# 2000/4/8 19031# * add bsdos-pc-m, bsdos-pc-mono (Jeffrey C Honig) 19032# * correct spelling error in entry name: bq300-rv was given as bg300-rv 19033# in esr's version. 19034# 19035# 2000/4/15 19036# * add cud, ech, etc., to beterm based on feedback from Rico Tudor -TD 19037# * correct color definition for ibm3164, make minor changes to other 19038# IBM terminal definitions based on recent terminfo descriptions -TD 19039# 19040# 2000/4/22 19041# * add mgterm, from NetBSD -TD 19042# * add alias sun-cgsix for sun-ss5 as per NetBSD 19043# * change cons25w to use rs2 for reset rather than rs1 -TD 19044# * add rc/sc to aixterm based on manpage -TD 19045# 19046# 2000/5/13 19047# * remove ncv from xterm-16color, xterm-256 color 19048# 19049# 2000/6/10 19050# * add kmous capability to linux to use Joerg Schoen's gpm patch. 19051# 19052# 2000/7/1 19053# * add Eterm (Michael Jennings) 19054# 19055# 2000-07-18 19056# * add amiga-vnc entry. 19057# 19058# 2000-08-12 19059# * correct description of Top Gun Telnet. 19060# * add kterm-color 19061# 19062# 2000-08-26 19063# * add qansi* entries from QNX ftp site. 19064# 19065# 2000-09-16 19066# * add Matrix Orbital entries by Eric Z. Ayers). 19067# * add xterm-basic, xterm-sco entries, update related entries to XFree86 19068# 4.0.1c -TD 19069# 19070# 2000-09-17 19071# * add S0, E0 extensions to screen's entry -TD 19072# 19073# 2000-09-23 19074# * several corrections based on tic's new parameter-checking code -TD 19075# * modify xterm-r6 and similar rs2 sequences which had \E7...\E8 19076# bracketing sequences that reset video attributes (\E8 would restore 19077# them) -TD 19078# 19079# 2000-11-11 19080# * rename cygwin to cygwinB19, adapt newer entry from Earnie Boyd -TD 19081# 19082# 2000-12-16 19083# * improved scoansi, based on SCO man-page, and testing console, 19084# scoterm with tack -TD 19085# 19086# 2001-01-27 19087# * modify kterm to use acsc via SCS controls. 19088# 19089# 2001-02-10 19090# * screen 3.9.8 allows xterm mouse controls to pass-through 19091# 19092# The following sets edit modes for GNU EMACS. 19093# Local Variables: 19094# fill-prefix:"\t" 19095# fill-column:75 19096# comment-column:0 19097# comment-start-skip:"^#+" 19098# comment-start:"# " 19099# compile-command:"tic -c terminfo.master" 19100# End: 19101######## SHANTIH! SHANTIH! SHANTIH! 19102