home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / k95 / terminal.txt < prev    next >
Text File  |  2020-01-01  |  22KB  |  427 lines

  1. File TERMINAL.TXT
  2.  
  3.   Frank da Cruz and Christine M. Gianone
  4.  
  5.   As of: Applies to Kermit 95 1.1.16
  6.   Most recent update: 8 April 1998
  7.  
  8.   Copyright (C) 1995, 1998, Trustees of Columbia University in the City of
  9.   New York.  All rights reserved.
  10.  
  11. Kermit 95's SET TERMINAL and related commands.  These commands can be issued
  12. at the K-95> prompt in the Command window to change most aspects of the
  13. terminal emulator.
  14.  
  15. SET BELL { AUDIBLE { BEEP, SYSTEM-SOUNDS }, VISIBLE, NONE }
  16.   This command tells how bell (beep) characters / noises should be sounded or
  17.   displayed.  VISIBLE means to flash the screen rather than making a noise.
  18.   AUDIBLE means to make a noise, which can be either the standard "beep", or
  19.   else "System sounds" that give you three different noises for "information",
  20.   "warning", and "error".
  21.  
  22. SET COMMAND COLOR <foreground-color> <background-color>
  23.   Like SET TERMINAL COLOR, except for the Command screen.  This command lets
  24.   you choose the fore- and background colors of the Command screen.  See
  25.   SET TERMINAL COLOR, or type "set command color ?", for a list of colors to
  26.   choose from.  Example: "set command color black white" for black letters
  27.   on a white background.
  28.  
  29. SET TERMINAL TYPE { ANSI, TTY, VT52, VT100, VT102, VT220, VT320, ... }
  30.   Choose the type of terminal that Kermit should emulate in the Terminal
  31.   window.  As of version 1.1.13, the complete list of emulations is:
  32.  
  33.     AIXTERM     For use with IBM AIX hosts
  34.     ANSI-BBS    Standard ANSI BBS character graphics (color)
  35.     Avatar/0+   Enhanced BBS graphics (color)
  36.     AT386       UnixWare and Interactive UNIX consoles (color)
  37.     BA80        Siemens Nixdorf BA80
  38.     BETERM      BeBox Console
  39.     DG200       Data General DASHER 200
  40.     DG210       Data General DASHER 210
  41.     DG217       Data General DASHER 217
  42.     HFT         IBM High Function Terminal
  43.     Heath19     Heath/Zenith-19
  44.     HP2621      Hewlett Packard 2621A
  45.     HPTERM      Hewlett Packard X-Terminal
  46.     HZ1500      Hazeltine 1500
  47.     LINUX       Linux Console
  48.     QANSI       QNX ANSI
  49.     QNX         QNX Console
  50.     SCOANSI     SCO and Linux consoles (color)
  51.     SNI-97801   Siemens Nixdorf Bildschirmeinheit 97801-5xx for SINIX
  52.     TTY         Teletype
  53.     TV910+      Televideo 910+
  54.     TV925       Televideo 925
  55.     TV950       Televideo 950
  56.     VC404       Volker Craig 404
  57.     VIP7809     Honeywell VIP7809
  58.     VT52        Digital Equipment Corporation (DEC) VT52
  59.     VT100       DEC VT100 + color
  60.     VT102       DEC VT102 + color
  61.     VT220       DEC VT220 + color
  62.     VT320       DEC VT320 + color
  63.     WY30        Wyse 30  (and most of 30+ and 35) (*)
  64.     WY50        Wyse 50
  65.     WY60        Wyse 60  (and most of 120, 160, and 350) (*)
  66.     WY370       Wyse 370 (color)
  67.  
  68. See pages 31-33 of "Kermit 95" and UPDATES.TXT Section 3 for further
  69. information.
  70.  
  71. SET TERMINAL ANSWERBACK { OFF, ON }
  72.   Disables/enables the ENQ/Answerback sequence, which is:
  73.  
  74.     K-95 501192 xxxx<CR>
  75.  
  76.   where "xxxx" is the terminal emulation, such as VT320, and <CR> is
  77.   a carriage return.  501192 is the Kermit software version number.
  78.   When SET TERM ANSWERBACK is ON, this message is sent automatically by
  79.   Kermit 95 when a Ctrl-E is received.  TERM ANSWERBACK is OFF by default.
  80.  
  81. SET TERMINAL APC { OFF, ON, UNCHECKED }
  82.   Controls execution of Application Program Commands sent by the host while
  83.   Kermit-95's terminal screen is active.  ON allows execution of "safe"
  84.   commands and disallows obviously dangerous commands such as DELETE,
  85.   RENAME, OUTPUT, and RUN.  OFF prevents execution of APCs.  UNCHECKED allows
  86.   execution of all commands.  OFF is the default.  See Section 3.1 of the
  87.   CKERMIT.UPD file for a full explanation.
  88.  
  89. SET TERMINAL ARROW-KEYS { APPLICATION, CURSOR }
  90.   Sets the mode for the arrow keys during VT terminal emulation so that they
  91.   send the "right stuff" when pressed.  Normally the host application should
  92.   put them in the right mode; use this command to force the arrow keys into
  93.   the desired mode when they do not seem to work with your host application.
  94.  
  95. SET TERMINAL ATTR-BUG { ON, OFF } (invisible)
  96.   ON (default) says to avoid a bug in Windows 95 by not writing video
  97.   attributes (color, intensity, etc) into any screen that is not 24x80,
  98.   42x80, or 49x80.  When Microsoft fixes the Windows 95 bug, you can SET
  99.   TERM ATTR-BUG ON to allow attributes to be written into screens of any
  100.   size.  (As of 1.1.12 this command is no longer required.)
  101.  
  102. SET TERMINAL ATTRIBUTE { BLINK, PROTECTED, REVERSE, UNDERLINE } { ON, OFF }
  103.   Determines whether real Blinking, Reverse, and Underline are used in the
  104.   terminal display.  When BLINK is turned OFF, reverse background intensity is
  105.   used.  When REVERSE and UNDERLINE are OFF, the colors selected with SET
  106.   TERMINAL COLOR { REVERSE, UNDERLINE } are used instead.  This command
  107.   affects the entire current screen and the entire terminal scrollback buffer.
  108.  
  109. SET TERMINAL ATTRIBUTE PROTECTED { BOLD, DIM, INVISIBLE, NORMAL, REVERSE, ... }
  110.   Tells how protected fields should be shown.
  111.   
  112. SET TERMINAL AUTODOWNLOAD { ON, OFF, KERMIT <options>, ZMODEM <options> }
  113.   Tells whether Kermit and ZMODEM download initiations should be recognized
  114.   during terminal emulation (and INPUT command execution).  ON, the default,
  115.   means they are.  This feature allows Kermit 95 to switch immediately into
  116.   Kermit or ZMODEM receive mode and then switch back to terminal emulation
  117.   automatically when the transfer is finished.  This command also applies to
  118.   automatic uploading when using the Kermit protocol (or more precisely, to
  119.   automatic Kermit server activation -- see UPDATES.TXT, section 5.1).
  120.   Special options can be specified separately for Kermit and ZMODEM protocols:
  121.  
  122.   C0-CONFLICT { IGNORED-BY-EMULATOR, PROCESSED-BY-EMULATOR }
  123.     How C0 control characters (such as Ctrl-A or Ctrl-X) are treated by the
  124.     terminal emulator when they have conflicting interpretations.  For example,
  125.     in DG or Wyse emulation, a Ctrl-A or Ctrl-X starts a host-directed print
  126.     operation, but Ctrl-A is also the start of a Kermit packet and Ctrl-X is
  127.     also the start of a ZMODEM packet.  PROCESSED-BY-EMULATOR is the default
  128.     C0-CONFLICT action.  NOTE: There are no conflicts in VT or ANSI emulation.
  129.  
  130.   DETECTION { PACKET, STRING }
  131.     The autodownload detection method for this protocol: PACKET (i.e. a valid
  132.     Kermit of Zmodem packet), or STRING -- that is, a specific string of
  133.     characters.  The default detection method is PACKET, as in prior releases.
  134.  
  135.   STRING <string>
  136.     When SET TERM AUTO { KERMIT, ZMODEM } DETECTION STRING is elected, this
  137.     command specifies the string that triggers automatic entry into file
  138.     reception mode for the given protocol.  Examples (showing the defaults 
  139.     for each protocol):
  140.  
  141.       SET TERM AUTO ZMODEM rz\13
  142.       SET TERM AUTO KERMIT READY TO SEND...
  143.  
  144. SET TERMINAL AUTOPAGE { ON, OFF }
  145.   AUTOPAGE mode is used on Wyse and Televideo terminals.  AUTOPAGE mode
  146.   causes the cursor to move to the top of the next page of terminal
  147.   memory when it scrolls off the bottom of the current page.  In K95, it
  148.   moves the cursor to the top line from the bottom since K95 only
  149.   supports a single page of terminal memory.
  150.  
  151.  
  152. SET TERMINAL AUTOSCROLL { ON, OFF }
  153.   AUTOSCROLL mode is used on Televideo terminals when the size of a page
  154.   of terminal memory is larger than the view screen.
  155.  
  156. SET TERMINAL BELL { AUDIBLE, VISIBLE, NONE }
  157.   Specifies how Control-G (bell) characters are handled.  AUDIBLE means a beep
  158.   is sounded; VISIBLE means the screen is flashed momentarily.  This command
  159.   has been superseded by SET BELL, which applies also to the command screen.
  160.  
  161. SET TERMINAL BYTESIZE { 7, 8 }
  162.   To use 7- or 8-bit terminal characters between Kermit 95 and the other
  163.   computer or service in the Terminal screen.  NOTE: To use 8-bit characters,
  164.   you must not have PARITY set to anything other than NONE.  SET PARITY NONE
  165.   is the default.
  166.  
  167. SET TERMINAL CHARACTER-SET <remote-set> [ <local-code-page> ]
  168.   Set the Terminal screen up to translate between the character set used on
  169.   the other computer and the one used on your PC.  Type "set term char ?"
  170.   for a list of available character sets.  NOTE: This command is supplied
  171.   only for compatibility with UNIX/VMS C-Kermit.  In Kermit 95, you should
  172.   specify the remote and local character sets in two separate commands:
  173.   SET TERMINAL REMOTE-CHARACTER-SET and SET TERMINAL LOCAL-CHARACTER-SET (q.v.)
  174.  
  175. SET TERMINAL CODE-PAGE nnn
  176.   This command should not be used in Windows.  In OS/2, it actually loads
  177.   the given code page into your session.  Works only for fullscreen sessions.
  178.  
  179. SET TERMINAL COLOR <item> <foreground-color> <background-color>
  180.   Choose the fore- and background colors for the designated screen part.
  181.   Type "set terminal color ?" to see a list of screen parts.  Colors are:
  182.   BLACK, BLUE, GREEN, CYAN, RED, MAGENTA, BROWN, LGRAY, DGRAY, LBLUE, LGREEN,
  183.   LCYAN, LRED, LMAGENTA, YELLOW or WHITE.  The L prefix for the color names
  184.   means Light.   
  185.  
  186. SET TERMINAL COLOR ERASE { CURRENT-COLOR, DEFAULT-COLOR }
  187.   Determines whether the current color as set by the host or the default color
  188.   as set by the user (SET TERMINAL COLOR TERMINAL) is used to clear the screen
  189.   when erase commands are received from the host. 
  190.  
  191. SET TERMINAL COLOR RESET-ON-ESC[0m { CURRENT-COLOR, DEFAULT-COLOR }
  192.   Determines whether the current color or the default color is used after 
  193.   an ESC [ 0 m ("reset attributes") command sequence is received from the
  194.   host.  For all emulations except for AT386, the default value is
  195.   CURRENT-COLOR, meaning that ESC [ 0 m does not affect coloration.
  196.   DEFAULT-COLOR means that ESC [ 0 m changes to your current SET TERMINAL
  197.   COLOR TERMINAL color.
  198.  
  199. SET TERMINAL CONTROLS { 7, 8 }
  200.   Version 1.1.5.  Applies to VT220/320 and Wyse 370 emulation.  Determines
  201.   whether function keys, arrow keys, etc, that generate ANSI-format escape
  202.   sequences should send 8-bit control characters (such as CSI, 155 decimal) or
  203.   their 7-bit equivalents (such as ESC [ instead of CSI).  Default is 7.
  204.  
  205. SET TERMINAL CR-DISPLAY { CRLF, NORMAL }
  206.   To specify how incoming carriage return (CR) characters are to be displayed
  207.   on your screen.  NORMAL (the default) means a CR is displayed as itself.
  208.   CRLF means a CR is displayed as a carriage return and a line feed (LF).  Use
  209.   CRLF when incoming lines of text write over each other, for example when two
  210.   two Kermit programs are connected to each other in "chat" mode.
  211.   Note: this is like SET TERMINAL CR-DISPLAY, but in the other direction.
  212.  
  213. SET TERMINAL CURSOR { FULL, HALF, UNDERLINE } [ { ON, OFF } ]
  214.   Selects cursor style and turns the cursor on unless the trailing keyword
  215.   OFF is included, in which case the cursor is turned off.
  216.  
  217. SET TERMINAL DEBUG { ON, OFF }
  218.   Controls terminal session debugging.  You can also use Alt-D in the Terminal
  219.   screen to toggle session debugging on and off (see "Kermit 95", p.61).
  220.  
  221. SET TERMINAL ECHO { LOCAL, REMOTE }
  222.   Specifies which side does the echoing during terminal connection.  If
  223.   every character you type appears twice, then "set term echo remote".
  224.   If you do not see the characters you type, then "set term echo local".
  225.  
  226. SET TERMINAL ESCAPE-CHARACTER { ENABLED, DISABLED }
  227.   Since we can use Alt-key or other non-ASCII keys or combinations in
  228.   Windows to escape back, etc, we don't necessarily need to reserve one
  229.   ASCII control character for that purpose, even though we do by default --
  230.   Ctrl-] -- for compatibility with MS-DOS Kermit.  Use SET TERM ESC DISABLED
  231.   to disable the CONNECT-mode escape character, so you can type all ASCII
  232.   control characters without having to double any of them.
  233.  
  234. SET TERMINAL HEIGHT <number>
  235.   Changes the number of rows (lines) to use during terminal emulation, not
  236.   counting the status line.  The only values that work well in Windows 95
  237.   are 24, 43, and 49.
  238.  
  239. SET TERMINAL IDLE-SEND <seconds> [ <string> ]
  240.   If Kermit 95 is in CONNECT mode and the keyboard has not been touched 
  241.   in the specified number of seconds, Kermit 95 sends the given <string> to 
  242.   the host as if it had been typed.  <string> may contain regular characters,
  243.   backslash codes (control characters, variables, etc).
  244.  
  245. SET TERMINAL KEY <terminal-type-or-keyboard-mode> [ /LITERAL ] -
  246. <scancode> [ <definition-string> ]
  247.   Like SET KEY, but specific to the given terminal type or keyboard mode.
  248.   /LITERAL means that no character-set translations should be applied when
  249.   using this key. 
  250.  
  251. SET TERMINAL KEYBOARD-MODE { NORMAL, EMACS, HEBREW, RUSSIAN, WP }
  252.   Selects the named special keyboard mode (WP = WordPerfect).
  253.  
  254. SET TERMINAL KEYPAD-MODE { APPLICATION, NUMERIC }
  255.   To specify the numeric keypad mode for VT terminal emulation (in case the
  256.   host application does not put the keypad in the right mode automatically --
  257.   i.e. use this if your keypad keys do not behave as they should).
  258.  
  259. SET TERMINAL LOCAL-CHARACTER SET <name>
  260.   Specify the character set used by the session (screen, window, etc) on your
  261.   PC in which Kermit 95 is running.  Kermit 95 translates between this
  262.   character set and the TERMINAL REMOTE-CHARACTER-SET during terminal
  263.   emulation.
  264.  
  265. SET TERMINAL LOCKING-SHIFT { OFF, ON }
  266.   Tells Kermit 95 whether to send Shift-In/Shift-Out (Ctrl-O and Ctrl-N) to
  267.   switch between 7-bit and 8-bit characters sent during terminal emulation
  268.   over 7-bit connections.  OFF by default.
  269.  
  270. SET TERMINAL MARGIN-BELL { ON [ <column> ], OFF }
  271.   Allows user to turn typewriter-like margin bell on and off, and when turned
  272.   ON, also to specify the column at which the bell is rung, e.g. "set term
  273.   margin-bell on 72".
  274.  
  275. SET TERMINAL NEWLINE-MODE { OFF, ON }
  276.   Tells what to send when you press the Enter key while in the Terminal
  277.   screen.  Normally only carriage return (CR) is sent.  SET TERM NEWLINE ON
  278.   means to send CR and linefeed (LF).  Use this command only if the Enter key
  279.   does not seem to produce the appropriate effect in the Terminal screen.
  280.   Note: this is like SET TERMINAL CR-DISPLAY, but in the other direction.
  281.  
  282. SET TERMINAL OUTPUT-PACING <milliseconds>
  283.   Tells how long to pause between sending each character to the host when the
  284.   Terminal screen is active.  Normally not needed but sometimes required to
  285.   work around TRANSMISSION BLOCKED conditions when using the mouse to paste
  286.   into the terminal screen.
  287.  
  288. SET TERMINAL REMOTE-CHARACTER SET <name> [ { G0, G1, G2, G3, ALL } ]
  289.   Specify the character set used by the host or application that Kermit 95
  290.   is connected to, and assign it to one of the tables G0 through G3, or
  291.   to ALL four of them.  By default, ASCII is assigned to G0, any other
  292.   national 7-bit set is assigned to ALL, and any 8-bit set is assigned to
  293.   G1.  The host switches among G0,G1,G2,G3 by setting the 8th bit of a
  294.   character to 0 or 1, or with Shift-In/Shift-Out, or with escape sequences.
  295.   The host can also designate characters to the Gn tables, and normally it
  296.   will do so if it expects to find them there.  So in most cases you need not
  297.   be concerned with what's in G0..G3.  This command is to force correct
  298.   behavior in cases where the host application is doing something wrong.
  299.  
  300. SET TERMINAL ROLL-MODE { INSERT, OVERWRITE }
  301.   Tells what to do when you have the Terminal screen rolled back and then new
  302.   data arrives from the communication device: Enter it into the scrollback
  303.   buffer at the current rollback position (OVERWRITE) or insert it at the end
  304.   of the buffer (INSERT).  The default is INSERT.  Typing is allowed during
  305.   rollback in either mode.
  306.  
  307. SET TERMINAL SCREEN-MODE { NORMAL, REVERSE }
  308.   When set to REVERSE the foreground and background colors are swapped as well
  309.   as the application of the foreground and background intensity bits.
  310.   The default is NORMAL.
  311.  
  312. SET TERMINAL SCREEN-OPTIMIZATION { ON, OFF }
  313.   ON means only write those cells to the screen that have changed since
  314.   the last update.  OFF means to refresh the entire screen when updating.
  315.   Choose whichever method performs best on your computer.  If you are using
  316.   a speech or Braille device, you should SET TERMINAL SCREEN-OPTIMIZATION ON.
  317.  
  318. SET TERMINAL SCREEN-UPDATE { FAST, SMOOTH } [ <milliseconds> ]
  319.   Chooses the mechanism used for screen updating and the update frequency.
  320.   SMOOTH means the screen is repainted every time a character arrives.
  321.   FAST means the screen is repainted at fixed intervals.  Defaults are FAST
  322.   with an interval of 100 milliseconds (1/10 second).  Use SMOOTH to give
  323.   priority to echoing; use FAST to give priority to throughput and vary the
  324.   interval to achieve optimum results for your PC.  On VT100 and above, the
  325.   host may use escape sequences to switch Kermit between FAST and SMOOTH;
  326.   FAST is selected by the Jump-scrolling escape sequence; SMOOTH is selected
  327.   by the SMOOTH-scrolling sequence.  However, note that K95 does not presently
  328.   implement smooth scrolling in the VT100 sense.  If the host switches K95
  329.   from SMOOTH to FAST, the most recently specified (or if none, default)
  330.   update interval is used.  If you are using a speech or Braille device, you
  331.   should SET TERMINAL SCREEN-UPDATE SMOOTH.
  332.  
  333. SET TERMINAL SCROLLBACK <lines>
  334.   Sets size of Terminal screen rollback (scrollback) buffer.  <lines> includes
  335.   the active terminal screen.  The minimum is 256.  The maximum is 2 million.
  336.   The default is 512.
  337.  
  338. SET TERMINAL SEND-DATA { ON, OFF }
  339.   Send commands are sent by the host to a terminal to request the 
  340.   contents of a particular region of the display.  Since this is a potential
  341.   security loophole, Kermit 95 by default (OFF) sends spaces instead of the
  342.   actual contents of the screen.  Setting this option to ON instructs Kermit
  343.   95 to send the actual data.
  344.  
  345. SET TERMINAL SEND-END-OF-BLOCK { CRLF_ETX  US_CR }
  346.   Specifies the characters to use as end of line and end of block indicators
  347.   when sending data to the host.  The default is US_CR.
  348.  
  349. SET TERMINAL SGR-COLORS { ON, OFF }
  350.   SGR means Set Graphic Rendition.  It is the name of the ANSI X3.64 escape
  351.   sequence that is used to select normal, reverse, bold, underlined, blinking,
  352.   or other character-cell attributes, including color, such as we are used to
  353.   seeing on BBS's when we use "ANSI" terminal emulation.  The color-setting
  354.   SGR sequences, <CSI>3<x>;4<y>m, are also recognized by Kermit 95 when it is
  355.   emulating a VT100 or higher VT terminal model, even though most real VT
  356.   terminals do not display color, and in fact they ignore these sequences.  To
  357.   make Kermit 95 ignore color setting sequences, in effect turning into a
  358.   monochrome terminal, use SET TERMINAL SGR-COLORS OFF.  This command affects
  359.   all ANSI-style emulations, including ANSI, SCOANSI, AT386, Wyse 370, and
  360.   VT100/102/220/320.
  361.  
  362. SET TERMINAL STATUSLINE { ON, OFF }
  363.   Version 1.1.5.  Previously, the Terminal window always had a status line.
  364.   In version 1.1.5 and later, you can SET TERMINAL STATUSLINE OFF to get rid
  365.   of it and make one more line available to the host application, for example
  366.   if it wants to manage its own status line.
  367.  
  368. SET TERMINAL TRANSMIT-TIMEOUT <seconds>
  369.   Specifies the maximum amount of time C-Kermit waits before returning to the
  370.   prompt if your keystrokes can't be transmitted for some reason, such as a
  371.   flow-control deadlock.
  372.  
  373. SET TERMINAL TRIGGER [ string ]
  374.   Tells Kermit to look for the given string during all subsequent CONNECT
  375.   sessions, and if seen, to return to command mode automatically, as if you
  376.   had escaped back manually.  If the string includes any spaces, you must
  377.   enclose it in braces.  Example:
  378.  
  379.     SET TERMINAL TRIGGER {NO CARRIER}
  380.  
  381.   If a string is to include a literal brace character, precede it with a
  382.   backslash:
  383.  
  384.     ; My modem always makes this noise when the connection is lost:
  385.     SET TERMINAL TRIGGER |||ppp\{\{\{\{UUUUUUU
  386.  
  387.   If you want Kermit to look for more than one string simultaneously, use the
  388.   following syntax:
  389.  
  390.     SET TERMINAL TRIGGER {{string1}{string2}...{stringn}}
  391.  
  392.   In this case, Kermit returns to command mode automatically if any of the
  393.   given strings is encountered.  Up to 8 strings may be specified.  If the
  394.   most recent return to command mode was caused by a trigger, the \v(trigger)
  395.   variable contains the trigger value; otherwise \v(trigger) is empty.  The
  396.   SHOW TRIGGER command displays the SET TERMINAL TRIGGER values as well as 
  397.   the current \v(trigger) value.
  398.  
  399. SET TERMINAL TYPE
  400.   (See top of this file)
  401.  
  402. SET TERMINAL UNIX-MODE { ON, OFF }
  403.   This affects emulation of terminals that have a "UNIX mode", currently only
  404.   the Data General DASHER 217.  OFF (the default) means the terminal operates
  405.   in its native mode, ON switches it to UNIX mode.
  406.  
  407. SET TERMINAL VIDEO-CHANGE { DISABLED, ENABLED, WIN95-SAFE }
  408.   Tells whether Kermit 95 should change video modes automatically in response
  409.   to escape sequences from the other computer.  DISABLED means it should not;
  410.   ENABLED means it should.  WIN95-SAFE means it should only do so if the
  411.   requested dimensions are safe to use in Windows 95 (see BUGS.TXT item 2
  412.   for details).  WIN95-SAFE is the default in Windows 95 as of Kermit 95
  413.   1.1.10 and 1.1.11.  In Windows NT and IBM OS/2 Warp, as well as Windows 95
  414.   in Kermit 95 1.1.12 and later, the default is ENABLED.
  415.  
  416. SET TERMINAL WIDTH <cols>
  417.   Tells how many columns define the terminal size.  80 is the default and
  418.   the only one that fully works in the first release of Windows 95.  132 can
  419.   also be selected, but then attributes (color, etc) are not displayed due to
  420.   a limitation in the Windows 95 console agent (CONAGENT.EXE).
  421.  
  422. SET TERMINAL WRAP { OFF, ON }
  423.   Tells whether the terminal emulator should automatically wrap long lines on
  424.   your screen.
  425.  
  426. (End of TERMINAL.TXT)
  427.