(M-40132'): Unify GT-53970.
[chise/xemacs-chise.git-] / info / termcap.info-2
1 This is ../info/termcap.info, produced by makeinfo version 4.0 from
2 termcap.texi.
3
4 START-INFO-DIR-ENTRY
5 * Termcap: (termcap).           Termcap library of the GNU system.
6 END-INFO-DIR-ENTRY
7
8    This file documents the termcap library of the GNU system.
9
10    Copyright (C) 1988 Free Software Foundation, Inc.
11
12    Permission is granted to make and distribute verbatim copies of this
13 manual provided the copyright notice and this permission notice are
14 preserved on all copies.
15
16    Permission is granted to copy and distribute modified versions of
17 this manual under the conditions for verbatim copying, provided that
18 the entire resulting derived work is distributed under the terms of a
19 permission notice identical to this one.
20
21    Permission is granted to copy and distribute translations of this
22 manual into another language, under the above conditions for modified
23 versions, except that this permission notice may be stated in a
24 translation approved by the Foundation.
25
26 \1f
27 File: termcap.info,  Node: Capabilities,  Next: Summary,  Prev: Data Base,  Up: Top
28
29 Definitions of the Terminal Capabilities
30 ****************************************
31
32    This section is divided into many subsections, each for one aspect of
33 use of display terminals.  For writing a display program, you usually
34 need only check the subsections for the operations you want to use.
35 For writing a terminal description, you must read each subsection and
36 fill in the capabilities described there.
37
38    String capabilities that are display commands may require numeric
39 parameters (*note Parameters::).  Most such capabilities do not use
40 parameters.  When a capability requires parameters, this is explicitly
41 stated at the beginning of its definition.  In simple cases, the first
42 or second sentence of the definition mentions all the parameters, in
43 the order they should be given, using a name in upper case for each
44 one.  For example, the `rp' capability is a command that requires two
45 parameters; its definition begins as follows:
46
47      String of commands to output a graphic character C, repeated N
48      times.
49
50    In complex cases or when there are many parameters, they are
51 described explicitly.
52
53    When a capability is described as obsolete, this means that programs
54 should not be written to look for it, but terminal descriptions should
55 still be written to provide it.
56
57    When a capability is described as very obsolete, this means that it
58 should be omitted from terminal descriptions as well.
59
60 * Menu:
61
62 * Basic::             Basic characteristics.
63 * Screen Size::       Screen size, and what happens when it changes.
64 * Cursor Motion::     Various ways to move the cursor.
65 * Scrolling::         Pushing text up and down on the screen.
66 * Wrapping::          What happens if you write a character in the last column.
67 * Windows::           Limiting the part of the window that output affects.
68 * Clearing::          Erasing one or many lines.
69 * Insdel Line::       Making new blank lines in mid-screen; deleting lines.
70 * Insdel Char::       Inserting and deleting characters within a line.
71 * Standout::          Highlighting some of the text.
72 * Underlining::       Underlining some of the text.
73 * Cursor Visibility:: Making the cursor more or less easy to spot.
74 * Bell::              Attracts user's attention; not localized on the screen.
75 * Keypad::            Recognizing when function keys or arrows are typed.
76 * Meta Key::          <META> acts like an extra shift key.
77 * Initialization::    Commands used to initialize or reset the terminal.
78 * Pad Specs::         Info for the kernel on how much padding is needed.
79 * Status Line::       A status line displays ``background'' information.
80 * Half-Line::         Moving by half-lines, for superscripts and subscripts.
81 * Printer::           Controlling auxiliary printers of display terminals.
82
83 \1f
84 File: termcap.info,  Node: Basic,  Next: Screen Size,  Prev: Capabilities,  Up: Capabilities
85
86 Basic Characteristics
87 =====================
88
89    This section documents the capabilities that describe the basic and
90 nature of the terminal, and also those that are relevant to the output
91 of graphic characters.
92
93 `os'
94      Flag whose presence means that the terminal can overstrike.  This
95      means that outputting a graphic character does not erase whatever
96      was present in the same character position before.  The terminals
97      that can overstrike include printing terminals, storage tubes (all
98      obsolete nowadays), and many bit-map displays.
99
100 `eo'
101      Flag whose presence means that outputting a space can erase an
102      overstrike.  If this is not present and overstriking is supported,
103      output of a space has no effect except to move the cursor.
104
105 `gn'
106      Flag whose presence means that this terminal type is a generic type
107      which does not really describe any particular terminal.  Generic
108      types are intended for use as the default type assigned when the
109      user connects to the system, with the intention that the user
110      should specify what type he really has.  One example of a generic
111      type is the type `network'.
112
113      Since the generic type cannot say how to do anything interesting
114      with the terminal, termcap-using programs will always find that the
115      terminal is too weak to be supported if the user has failed to
116      specify a real terminal type in place of the generic one.  The
117      `gn' flag directs these programs to use a different error message:
118      "You have not specified your real terminal type", rather than
119      "Your terminal is not powerful enough to be used".
120
121 `hc'
122      Flag whose presence means this is a hardcopy terminal.
123
124 `rp'
125      String of commands to output a graphic character C, repeated N
126      times.  The first parameter value is the ASCII code for the desired
127      character, and the second parameter is the number of times to
128      repeat the character.  Often this command requires padding
129      proportional to the number of times the character is repeated.
130      This effect can be had by using parameter arithmetic with
131      `%'-sequences to compute the amount of padding, then generating
132      the result as a number at the front of the string so that `tputs'
133      will treat it as padding.
134
135 `hz'
136      Flag whose presence means that the ASCII character `~' cannot be
137      output on this terminal because it is used for display commands.
138
139      Programs handle this flag by checking all text to be output and
140      replacing each `~' with some other character(s).  If this is not
141      done, the screen will be thoroughly garbled.
142
143      The old Hazeltine terminals that required such treatment are
144      probably very rare today, so you might as well not bother to
145      support this flag.
146
147 `CC'
148      String whose presence means the terminal has a settable command
149      character.  The value of the string is the default command
150      character (which is usually <ESC>).
151
152      All the strings of commands in the terminal description should be
153      written to use the default command character.  If you are writing
154      an application program that changes the command character, use the
155      `CC' capability to figure out how to translate all the display
156      commands to work with the new command character.
157
158      Most programs have no reason to look at the `CC' capability.
159
160 `xb'
161      Flag whose presence identifies Superbee terminals which are unable
162      to transmit the characters <ESC> and `Control-C'.  Programs which
163      support this flag are supposed to check the input for the code
164      sequences sent by the <F1> and <F2> keys, and pretend that <ESC>
165      or `Control-C' (respectively) had been read.  But this flag is
166      obsolete, and not worth supporting.
167
168 \1f
169 File: termcap.info,  Node: Screen Size,  Next: Cursor Motion,  Prev: Basic,  Up: Capabilities
170
171 Screen Size
172 ===========
173
174    A terminal description has two capabilities, `co' and `li', that
175 describe the screen size in columns and lines.  But there is more to
176 the question of screen size than this.
177
178    On some operating systems the "screen" is really a window and the
179 effective width can vary.  On some of these systems, `tgetnum' uses the
180 actual width of the window to decide what value to return for the `co'
181 capability, overriding what is actually written in the terminal
182 description.  On other systems, it is up to the application program to
183 check the actual window width using a system call.  For example, on BSD
184 4.3 systems, the system call `ioctl' with code `TIOCGWINSZ' will tell
185 you the current screen size.
186
187    On all window systems, termcap is powerless to advise the application
188 program if the user resizes the window.  Application programs must deal
189 with this possibility in a system-dependent fashion.  On some systems
190 the C shell handles part of the problem by detecting changes in window
191 size and setting the `TERMCAP' environment variable appropriately.
192 This takes care of application programs that are started subsequently.
193 It does not help application programs already running.
194
195    On some systems, including BSD 4.3, all programs using a terminal get
196 a signal named `SIGWINCH' whenever the screen size changes.  Programs
197 that use termcap should handle this signal by using `ioctl TIOCGWINSZ'
198 to learn the new screen size.
199
200 `co'
201      Numeric value, the width of the screen in character positions.
202      Even hardcopy terminals normally have a `co' capability.
203
204 `li'
205      Numeric value, the height of the screen in lines.
206
207 \1f
208 File: termcap.info,  Node: Cursor Motion,  Next: Wrapping,  Prev: Screen Size,  Up: Capabilities
209
210 Cursor Motion
211 =============
212
213    Termcap assumes that the terminal has a "cursor", a spot on the
214 screen where a visible mark is displayed, and that most display
215 commands take effect at the position of the cursor.  It follows that
216 moving the cursor to a specified location is very important.
217
218    There are many terminal capabilities for different cursor motion
219 operations.  A terminal description should define as many as possible,
220 but most programs do not need to use most of them.  One capability,
221 `cm', moves the cursor to an arbitrary place on the screen; this by
222 itself is sufficient for any application as long as there is no need to
223 support hardcopy terminals or certain old, weak displays that have only
224 relative motion commands.  Use of other cursor motion capabilities is an
225 optimization, enabling the program to output fewer characters in some
226 common cases.
227
228    If you plan to use the relative cursor motion commands in an
229 application program, you must know what the starting cursor position
230 is.  To do this, you must keep track of the cursor position and update
231 the records each time anything is output to the terminal, including
232 graphic characters.  In addition, it is necessary to know whether the
233 terminal wraps after writing in the rightmost column.  *Note Wrapping::.
234
235    One other motion capability needs special mention: `nw' moves the
236 cursor to the beginning of the following line, perhaps clearing all the
237 starting line after the cursor, or perhaps not clearing at all.  This
238 capability is a least common denominator that is probably supported
239 even by terminals that cannot do most other things such as `cm' or `do'.
240 Even hardcopy terminals can support `nw'.
241
242 `cm'
243      String of commands to position the cursor at line L, column C.
244      Both parameters are origin-zero, and are defined relative to the
245      screen, not relative to display memory.
246
247      All display terminals except a few very obsolete ones support `cm',
248      so it is acceptable for an application program to refuse to
249      operate on terminals lacking `cm'.
250
251 `ho'
252      String of commands to move the cursor to the upper left corner of
253      the screen (this position is called the "home position").  In
254      terminals where the upper left corner of the screen is not the
255      same as the beginning of display memory, this command must go to
256      the upper left corner of the screen, not the beginning of display
257      memory.
258
259      Every display terminal supports this capability, and many
260      application programs refuse to operate if the `ho' capability is
261      missing.
262
263 `ll'
264      String of commands to move the cursor to the lower left corner of
265      the screen.  On some terminals, moving up from home position does
266      this, but programs should never assume that will work.  Just
267      output the `ll' string (if it is provided); if moving to home
268      position and then moving up is the best way to get there, the `ll'
269      command will do that.
270
271 `cr'
272      String of commands to move the cursor to the beginning of the line
273      it is on.  If this capability is not specified, many programs
274      assume they can use the ASCII carriage return character for this.
275
276 `le'
277      String of commands to move the cursor left one column.  Unless the
278      `bw' flag capability is specified, the effect is undefined if the
279      cursor is at the left margin; do not use this command there.  If
280      `bw' is present, this command may be used at the left margin, and
281      it wraps the cursor to the last column of the preceding line.
282
283 `nd'
284      String of commands to move the cursor right one column.  The
285      effect is undefined if the cursor is at the right margin; do not
286      use this command there, not even if `am' is present.
287
288 `up'
289      String of commands to move the cursor vertically up one line.  The
290      effect of sending this string when on the top line is undefined;
291      programs should never use it that way.
292
293 `do'
294      String of commands to move the cursor vertically down one line.
295      The effect of sending this string when on the bottom line is
296      undefined; programs should never use it that way.
297
298      The original idea was that this string would not contain a newline
299      character and therefore could be used without disabling the
300      kernel's usual habit of converting of newline into a
301      carriage-return newline sequence.  But many terminal descriptions
302      do use newline in the `do' string, so this is not possible; a
303      program which sends the `do' string must disable output conversion
304      in the kernel (*note Initialize::).
305
306 `bw'
307      Flag whose presence says that `le' may be used in column zero to
308      move to the last column of the preceding line.  If this flag is
309      not present, `le' should not be used in column zero.
310
311 `nw'
312      String of commands to move the cursor to start of next line,
313      possibly clearing rest of line (following the cursor) before
314      moving.
315
316 `DO', `UP', `LE', `RI'
317      Strings of commands to move the cursor N lines down vertically, up
318      vertically, or N columns left or right.  Do not attempt to move
319      past any edge of the screen with these commands; the effect of
320      trying that is undefined.  Only a few terminal descriptions provide
321      these commands, and most programs do not use them.
322
323 `CM'
324      String of commands to position the cursor at line L, column C,
325      relative to display memory.  Both parameters are origin-zero.
326      This capability is present only in terminals where there is a
327      difference between screen-relative and memory-relative addressing,
328      and not even in all such terminals.
329
330 `ch'
331      String of commands to position the cursor at column C in the same
332      line it is on.  This is a special case of `cm' in which the
333      vertical position is not changed.  The `ch' capability is provided
334      only when it is faster to output than `cm' would be in this
335      special case.  Programs should not assume most display terminals
336      have `ch'.
337
338 `cv'
339      String of commands to position the cursor at line L in the same
340      column.  This is a special case of `cm' in which the horizontal
341      position is not changed.  The `cv' capability is provided only
342      when it is faster to output than `cm' would be in this special
343      case.  Programs should not assume most display terminals have `cv'.
344
345 `sc'
346      String of commands to make the terminal save the current cursor
347      position.  Only the last saved position can be used.  If this
348      capability is present, `rc' should be provided also.  Most
349      terminals have neither.
350
351 `rc'
352      String of commands to make the terminal restore the last saved
353      cursor position.  If this capability is present, `sc' should be
354      provided also.  Most terminals have neither.
355
356 `ff'
357      String of commands to advance to the next page, for a hardcopy
358      terminal.
359
360 `ta'
361      String of commands to move the cursor right to the next hardware
362      tab stop column.  Missing if the terminal does not have any kind of
363      hardware tabs.  Do not send this command if the kernel's terminal
364      modes say that the kernel is expanding tabs into spaces.
365
366 `bt'
367      String of commands to move the cursor left to the previous hardware
368      tab stop column.  Missing if the terminal has no such ability; many
369      terminals do not.  Do not send this command if the kernel's
370      terminal modes say that the kernel is expanding tabs into spaces.
371
372    The following obsolete capabilities should be included in terminal
373 descriptions when appropriate, but should not be looked at by new
374 programs.
375
376 `nc'
377      Flag whose presence means the terminal does not support the ASCII
378      carriage return character as `cr'.  This flag is needed because
379      old programs assume, when the `cr' capability is missing, that
380      ASCII carriage return can be used for the purpose.  We use `nc' to
381      tell the old programs that carriage return may not be used.
382
383      New programs should not assume any default for `cr', so they need
384      not look at `nc'.  However, descriptions should contain `nc'
385      whenever they do not contain `cr'.
386
387 `xt'
388      Flag whose presence means that the ASCII tab character may not be
389      used for cursor motion.  This flag exists because old programs
390      assume, when the `ta' capability is missing, that ASCII tab can be
391      used for the purpose.  We use `xt' to tell the old programs not to
392      use tab.
393
394      New programs should not assume any default for `ta', so they need
395      not look at `xt' in connection with cursor motion.  Note that `xt'
396      also has implications for standout mode (*note Standout::).  It is
397      obsolete in regard to cursor motion but not in regard to standout.
398
399      In fact, `xt' means that the terminal is a Teleray 1061.
400
401 `bc'
402      Very obsolete alternative name for the `le' capability.
403
404 `bs'
405      Flag whose presence means that the ASCII character backspace may be
406      used to move the cursor left.  Obsolete; look at `le' instead.
407
408 `nl'
409      Obsolete capability which is a string that can either be used to
410      move the cursor down or to scroll.  The same string must scroll
411      when used on the bottom line and move the cursor when used on any
412      other line.  New programs should use `do' or `sf', and ignore `nl'.
413
414      If there is no `nl' capability, some old programs assume they can
415      use the newline character for this purpose.  These programs follow
416      a bad practice, but because they exist, it is still desirable to
417      define the `nl' capability in a terminal description if the best
418      way to move down is _not_ a newline.
419
420 \1f
421 File: termcap.info,  Node: Wrapping,  Next: Scrolling,  Prev: Cursor Motion,  Up: Capabilities
422
423 Wrapping
424 ========
425
426    "Wrapping" means moving the cursor from the right margin to the left
427 margin of the following line.  Some terminals wrap automatically when a
428 graphic character is output in the last column, while others do not.
429 Most application programs that use termcap need to know whether the
430 terminal wraps.  There are two special flag capabilities to describe
431 what the terminal does when a graphic character is output in the last
432 column.
433
434 `am'
435      Flag whose presence means that writing a character in the last
436      column causes the cursor to wrap to the beginning of the next line.
437
438      If `am' is not present, writing in the last column leaves the
439      cursor at the place where the character was written.
440
441      Writing in the last column of the last line should be avoided on
442      terminals with `am', as it may or may not cause scrolling to occur
443      (*note Scrolling::).  Scrolling is surely not what you would
444      intend.
445
446      If your program needs to check the `am' flag, then it also needs
447      to check the `xn' flag which indicates that wrapping happens in a
448      strange way.  Many common terminals have the `xn' flag.
449
450 `xn'
451      Flag whose presence means that the cursor wraps in a strange way.
452      At least two distinct kinds of strange behavior are known; the
453      termcap data base does not contain anything to distinguish the two.
454
455      On Concept-100 terminals, output in the last column wraps the
456      cursor almost like an ordinary `am' terminal.  But if the next
457      thing output is a newline, it is ignored.
458
459      DEC VT-100 terminals (when the wrap switch is on) do a different
460      strange thing: the cursor wraps only if the next thing output is
461      another graphic character.  In fact, the wrap occurs when the
462      following graphic character is received by the terminal, before the
463      character is placed on the screen.
464
465      On both of these terminals, after writing in the last column a
466      following graphic character will be displayed in the first column
467      of the following line.  But the effect of relative cursor motion
468      characters such as newline or backspace at such a time depends on
469      the terminal.  The effect of erase or scrolling commands also
470      depends on the terminal.  You can't assume anything about what
471      they will do on a terminal that has `xn'.  So, to be safe, you
472      should never do these things at such a time on such a terminal.
473
474      To be sure of reliable results on a terminal which has the `xn'
475      flag, output a `cm' absolute positioning command after writing in
476      the last column.  Another safe thing to do is to output
477      carriage-return newline, which will leave the cursor at the
478      beginning of the following line.
479
480 \1f
481 File: termcap.info,  Node: Scrolling,  Next: Windows,  Prev: Wrapping,  Up: Capabilities
482
483 Scrolling
484 =========
485
486    "Scrolling" means moving the contents of the screen up or down one or
487 more lines.  Moving the contents up is "forward scrolling"; moving them
488 down is "reverse scrolling".
489
490    Scrolling happens after each line of output during ordinary output
491 on most display terminals.  But in an application program that uses
492 termcap for random-access output, scrolling happens only when
493 explicitly requested with the commands in this section.
494
495    Some terminals have a "scroll region" feature.  This lets you limit
496 the effect of scrolling to a specified range of lines.  Lines outside
497 the range are unaffected when scrolling happens.  The scroll region
498 feature is available if either `cs' or `cS' is present.
499
500 `sf'
501      String of commands to scroll the screen one line up, assuming it is
502      output with the cursor at the beginning of the bottom line.
503
504 `sr'
505      String of commands to scroll the screen one line down, assuming it
506      is output with the cursor at the beginning of the top line.
507
508 `SF'
509      String of commands to scroll the screen N lines up, assuming it is
510      output with the cursor at the beginning of the bottom line.
511
512 `SR'
513      String of commands to scroll the screen N line down, assuming it
514      is output with the cursor at the beginning of the top line.
515
516 `cs'
517      String of commands to set the scroll region.  This command takes
518      two parameters, START and END, which are the line numbers
519      (origin-zero) of the first line to include in the scroll region
520      and of the last line to include in it.  When a scroll region is
521      set, scrolling is limited to the specified range of lines; lines
522      outside the range are not affected by scroll commands.
523
524      Do not try to move the cursor outside the scroll region.  The
525      region remains set until explicitly removed.  To remove the scroll
526      region, use another `cs' command specifying the full height of the
527      screen.
528
529      The cursor position is undefined after the `cs' command is set, so
530      position the cursor with `cm' immediately afterward.
531
532 `cS'
533      String of commands to set the scroll region using parameters in
534      different form.  The effect is the same as if `cs' were used.
535      Four parameters are required:
536
537        1. Total number of lines on the screen.
538
539        2. Number of lines above desired scroll region.
540
541        3. Number of lines below (outside of) desired scroll region.
542
543        4. Total number of lines on the screen, the same as the first
544           parameter.
545
546      This capability is a GNU extension that was invented to allow the
547      Ann Arbor Ambassador's scroll-region command to be described; it
548      could also be done by putting non-Unix `%'-sequences into a `cs'
549      string, but that would have confused Unix programs that used the
550      `cs' capability with the Unix termcap.  Currently only GNU Emacs
551      uses the `cS' capability.
552
553 `ns'
554      Flag which means that the terminal does not normally scroll for
555      ordinary sequential output.  For modern terminals, this means that
556      outputting a newline in ordinary sequential output with the cursor
557      on the bottom line wraps to the top line.  For some obsolete
558      terminals, other things may happen.
559
560      The terminal may be able to scroll even if it does not normally do
561      so.  If the `sf' capability is provided, it can be used for
562      scrolling regardless of `ns'.
563
564 `da'
565      Flag whose presence means that lines scrolled up off the top of the
566      screen may come back if scrolling down is done subsequently.
567
568      The `da' and `db' flags do not, strictly speaking, affect how to
569      scroll.  But programs that scroll usually need to clear the lines
570      scrolled onto the screen, if these flags are present.
571
572 `db'
573      Flag whose presence means that lines scrolled down off the bottom
574      of the screen may come back if scrolling up is done subsequently.
575
576 `lm'
577      Numeric value, the number of lines of display memory that the
578      terminal has.  A value of zero means that the terminal has more
579      display memory than can fit on the screen, but no fixed number of
580      lines.  (The number of lines may depend on the amount of text in
581      each line.)
582
583    Any terminal description that defines `SF' should also define `sf';
584 likewise for `SR' and `sr'.  However, many terminals can only scroll by
585 one line at a time, so it is common to find `sf' and not `SF', or `sr'
586 without `SR'.
587
588    Therefore, all programs that use the scrolling facilities should be
589 prepared to work with `sf' in the case that `SF' is absent, and
590 likewise with `sr'.  On the other hand, an application program that
591 uses only `sf' and not `SF' is acceptable, though slow on some
592 terminals.
593
594    When outputting a scroll command with `tputs', the NLINES argument
595 should be the total number of lines in the portion of the screen being
596 scrolled.  Very often these commands require padding proportional to
597 this number of lines.  *Note Padding::.
598
599 \1f
600 File: termcap.info,  Node: Windows,  Next: Clearing,  Prev: Scrolling,  Up: Capabilities
601
602 Windows
603 =======
604
605    A "window", in termcap, is a rectangular portion of the screen to
606 which all display operations are restricted.  Wrapping, clearing,
607 scrolling, insertion and deletion all operate as if the specified
608 window were all the screen there was.
609
610 `wi'
611      String of commands to set the terminal output screen window.  This
612      string requires four parameters, all origin-zero:
613        1. The first line to include in the window.
614
615        2. The last line to include in the window.
616
617        3. The first column to include in the window.
618
619        4. The last column to include in the window.
620
621    Most terminals do not support windows.
622
623 \1f
624 File: termcap.info,  Node: Clearing,  Next: Insdel Line,  Prev: Windows,  Up: Capabilities
625
626 Clearing Parts of the Screen
627 ============================
628
629    There are several terminal capabilities for clearing parts of the
630 screen to blank.  All display terminals support the `cl' string, and
631 most display terminals support all of these capabilities.
632
633 `cl'
634      String of commands to clear the entire screen and position the
635      cursor at the upper left corner.
636
637 `cd'
638      String of commands to clear the line the cursor is on, and all the
639      lines below it, down to the bottom of the screen.  This command
640      string should be used only with the cursor in column zero; their
641      effect is undefined if the cursor is elsewhere.
642
643 `ce'
644      String of commands to clear from the cursor to the end of the
645      current line.
646
647 `ec'
648      String of commands to clear N characters, starting with the
649      character that the cursor is on.  This command string is expected
650      to leave the cursor position unchanged.  The parameter N should
651      never be large enough to reach past the right margin; the effect
652      of such a large parameter would be undefined.
653
654    Clear to end of line (`ce') is extremely important in programs that
655 maintain an updating display.  Nearly all display terminals support this
656 operation, so it is acceptable for a an application program to refuse to
657 work if `ce' is not present.  However, if you do not want this
658 limitation, you can accomplish clearing to end of line by outputting
659 spaces until you reach the right margin.  In order to do this, you must
660 know the current horizontal position.  Also, this technique assumes
661 that writing a space will erase.  But this happens to be true on all
662 the display terminals that fail to support `ce'.
663
664 \1f
665 File: termcap.info,  Node: Insdel Line,  Next: Insdel Char,  Prev: Clearing,  Up: Capabilities
666
667 Insert/Delete Line
668 ==================
669
670    "Inserting a line" means creating a blank line in the middle of the
671 screen, and pushing the existing lines of text apart.  In fact, the
672 lines above the insertion point do not change, while the lines below
673 move down, and one is normally lost at the bottom of the screen.
674
675    "Deleting a line" means causing the line to disappear from the
676 screen, closing up the gap by moving the lines below it upward.  A new
677 line appears at the bottom of the screen.  Usually this line is blank,
678 but on terminals with the `db' flag it may be a line previously moved
679 off the screen bottom by scrolling or line insertion.
680
681    Insertion and deletion of lines is useful in programs that maintain
682 an updating display some parts of which may get longer or shorter.
683 They are also useful in editors for scrolling parts of the screen, and
684 for redisplaying after lines of text are killed or inserted.
685
686    Many terminals provide commands to insert or delete a single line at
687 the cursor position.  Some provide the ability to insert or delete
688 several lines with one command, using the number of lines to insert or
689 delete as a parameter.  Always move the cursor to column zero before
690 using any of these commands.
691
692 `al'
693      String of commands to insert a blank line before the line the
694      cursor is on.  The existing line, and all lines below it, are
695      moved down.  The last line in the screen (or in the scroll region,
696      if one is set) disappears and in most circumstances is discarded.
697      It may not be discarded if the `db' is present (*note Scrolling::).
698
699      The cursor must be at the left margin before this command is used.
700      This command does not move the cursor.
701
702 `dl'
703      String of commands to delete the line the cursor is on.  The
704      following lines move up, and a blank line appears at the bottom of
705      the screen (or bottom of the scroll region).  If the terminal has
706      the `db' flag, a nonblank line previously pushed off the screen
707      bottom may reappear at the bottom.
708
709      The cursor must be at the left margin before this command is used.
710      This command does not move the cursor.
711
712 `AL'
713      String of commands to insert N blank lines before the line that
714      the cursor is on.  It is like `al' repeated N times, except that
715      it is as fast as one `al'.
716
717 `DL'
718      String of commands to delete N lines starting with the line that
719      the cursor is on.  It is like `dl' repeated N times, except that
720      it is as fast as one `dl'.
721
722    Any terminal description that defines `AL' should also define `al';
723 likewise for `DL' and `dl'.  However, many terminals can only insert or
724 delete one line at a time, so it is common to find `al' and not `AL',
725 or `dl' without `DL'.
726
727    Therefore, all programs that use the insert and delete facilities
728 should be prepared to work with `al' in the case that `AL' is absent,
729 and likewise with `dl'.  On the other hand, it is acceptable to write
730 an application that uses only `al' and `dl' and does not look for `AL'
731 or `DL' at all.
732
733    If a terminal does not support line insertion and deletion directly,
734 but does support a scroll region, the effect of insertion and deletion
735 can be obtained with scrolling.  However, it is up to the individual
736 user program to check for this possibility and use the scrolling
737 commands to get the desired result.  It is fairly important to implement
738 this alternate strategy, since it is the only way to get the effect of
739 line insertion and deletion on the popular VT100 terminal.
740
741    Insertion and deletion of lines is affected by the scroll region on
742 terminals that have a settable scroll region.  This is useful when it is
743 desirable to move any few consecutive lines up or down by a few lines.
744 *Note Scrolling::.
745
746    The line pushed off the bottom of the screen is not lost if the
747 terminal has the `db' flag capability; instead, it is pushed into
748 display memory that does not appear on the screen.  This is the same
749 thing that happens when scrolling pushes a line off the bottom of the
750 screen.  Either reverse scrolling or deletion of a line can bring the
751 apparently lost line back onto the bottom of the screen.  If the
752 terminal has the scroll region feature as well as `db', the pushed-out
753 line really is lost if a scroll region is in effect.
754
755    When outputting an insert or delete command with `tputs', the NLINES
756 argument should be the total number of lines from the cursor to the
757 bottom of the screen (or scroll region).  Very often these commands
758 require padding proportional to this number of lines.  *Note Padding::.
759
760    For `AL' and `DL' the NLINES argument should _not_ depend on the
761 number of lines inserted or deleted; only the total number of lines
762 affected.  This is because it is just as fast to insert two or N lines
763 with `AL' as to insert one line with `al'.
764
765 \1f
766 File: termcap.info,  Node: Insdel Char,  Next: Standout,  Prev: Insdel Line,  Up: Capabilities
767
768 Insert/Delete Character
769 =======================
770
771    "Inserting a character" means creating a blank space in the middle
772 of a line, and pushing the rest of the line rightward.  The character
773 in the rightmost column is lost.
774
775    "Deleting a character" means causing the character to disappear from
776 the screen, closing up the gap by moving the rest of the line leftward.
777 A blank space appears in the rightmost column.
778
779    Insertion and deletion of characters is useful in programs that
780 maintain an updating display some parts of which may get longer or
781 shorter.  It is also useful in editors for redisplaying the results of
782 editing within a line.
783
784    Many terminals provide commands to insert or delete a single
785 character at the cursor position.  Some provide the ability to insert
786 or delete several characters with one command, using the number of
787 characters to insert or delete as a parameter.
788
789    Many terminals provide an insert mode in which outputting a graphic
790 character has the added effect of inserting a position for that
791 character.  A special command string is used to enter insert mode and
792 another is used to exit it.  The reason for designing a terminal with
793 an insert mode rather than an insert command is that inserting
794 character positions is usually followed by writing characters into
795 them.  With insert mode, this is as fast as simply writing the
796 characters, except for the fixed overhead of entering and leaving
797 insert mode.  However, when the line speed is great enough, padding may
798 be required for the graphic characters output in insert mode.
799
800    Some terminals require you to enter insert mode and then output a
801 special command for each position to be inserted.  Or they may require
802 special commands to be output before or after each graphic character to
803 be inserted.
804
805    Deletion of characters is usually accomplished by a straightforward
806 command to delete one or several positions; but on some terminals, it
807 is necessary to enter a special delete mode before using the delete
808 command, and leave delete mode afterward.  Sometimes delete mode and
809 insert mode are the same mode.
810
811    Some terminals make a distinction between character positions in
812 which a space character has been output and positions which have been
813 cleared.  On these terminals, the effect of insert or delete character
814 runs to the first cleared position rather than to the end of the line.
815 In fact, the effect may run to more than one line if there is no
816 cleared position to stop the shift on the first line.  These terminals
817 are identified by the `in' flag capability.
818
819    On terminals with the `in' flag, the technique of skipping over
820 characters that you know were cleared, and then outputting text later
821 on in the same line, causes later insert and delete character
822 operations on that line to do nonstandard things.  A program that has
823 any chance of doing this must check for the `in' flag and must be
824 careful to write explicit space characters into the intermediate
825 columns when `in' is present.
826
827    A plethora of terminal capabilities are needed to describe all of
828 this complexity.  Here is a list of them all.  Following the list, we
829 present an algorithm for programs to use to take proper account of all
830 of these capabilities.
831
832 `im'
833      String of commands to enter insert mode.
834
835      If the terminal has no special insert mode, but it can insert
836      characters with a special command, `im' should be defined with a
837      null value, because the `vi' editor assumes that insertion of a
838      character is impossible if `im' is not provided.
839
840      New programs should not act like `vi'.  They should pay attention
841      to `im' only if it is defined.
842
843 `ei'
844      String of commands to leave insert mode.  This capability must be
845      present if `im' is.
846
847      On a few old terminals the same string is used to enter and exit
848      insert mode.  This string turns insert mode on if it was off, and
849      off if it was on.  You can tell these terminals because the `ei'
850      string equals the `im' string.  If you want to support these
851      terminals, you must always remember accurately whether insert mode
852      is in effect.  However, these terminals are obsolete, and it is
853      reasonable to refuse to support them.  On all modern terminals, you
854      can safely output `ei' at any time to ensure that insert mode is
855      turned off.
856
857 `ic'
858      String of commands to insert one character position at the cursor.
859      The cursor does not move.
860
861      If outputting a graphic character while in insert mode is
862      sufficient to insert the character, then the `ic' capability
863      should be defined with a null value.
864
865      If your terminal offers a choice of ways to insert--either use
866      insert mode or use a special command--then define `im' and do not
867      define `ic', since this gives the most efficient operation when
868      several characters are to be inserted.  _Do not_ define both
869      strings, for that means that _both_ must be used each time
870      insertion is done.
871
872 `ip'
873      String of commands to output following an inserted graphic
874      character in insert mode.  Often it is used just for a padding
875      spec, when padding is needed after an inserted character (*note
876      Padding::).
877
878 `IC'
879      String of commands to insert N character positions at and after
880      the cursor.  It has the same effect as repeating the `ic' string
881      and a space, N times.
882
883      If `IC' is provided, application programs may use it without first
884      entering insert mode.
885
886 `mi'
887      Flag whose presence means it is safe to move the cursor while in
888      insert mode and assume the terminal remains in insert mode.
889
890 `in'
891      Flag whose presence means that the terminal distinguishes between
892      character positions in which space characters have been output and
893      positions which have been cleared.
894
895    An application program can assume that the terminal can do character
896 insertion if _any one of_ the capabilities `IC', `im', `ic' or `ip' is
897 provided.
898
899    To insert N blank character positions, move the cursor to the place
900 to insert them and follow this algorithm:
901
902   1. If an `IC' string is provided, output it with parameter N and you
903      are finished.  Otherwise (or if you don't want to bother to look
904      for an `IC' string) follow the remaining steps.
905
906   2. Output the `im' string, if there is one, unless the terminal is
907      already in insert mode.
908
909   3. Repeat steps 4 through 6, N times.
910
911   4. Output the `ic' string if any.
912
913   5. Output a space.
914
915   6. Output the `ip' string if any.
916
917   7. Output the `ei' string, eventually, to exit insert mode.  There is
918      no need to do this right away.  If the `mi' flag is present, you
919      can move the cursor and the cursor will remain in insert mode;
920      then you can do more insertion elsewhere without reentering insert
921      mode.
922
923    To insert N graphic characters, position the cursor and follow this
924 algorithm:
925
926   1. If an `IC' string is provided, output it with parameter N, then
927      output the graphic characters, and you are finished.  Otherwise
928      (or if you don't want to bother to look for an `IC' string) follow
929      the remaining steps.
930
931   2. Output the `im' string, if there is one, unless the terminal is
932      already in insert mode.
933
934   3. For each character to be output, repeat steps 4 through 6.
935
936   4. Output the `ic' string if any.
937
938   5. Output the next graphic character.
939
940   6. Output the `ip' string if any.
941
942   7. Output the `ei' string, eventually, to exit insert mode.  There is
943      no need to do this right away.  If the `mi' flag is present, you
944      can move the cursor and the cursor will remain in insert mode;
945      then you can do more insertion elsewhere without reentering insert
946      mode.
947
948    Note that this is not the same as the original Unix termcap
949 specifications in one respect: it assumes that the `IC' string can be
950 used without entering insert mode.  This is true as far as I know, and
951 it allows you be able to avoid entering and leaving insert mode, and
952 also to be able to avoid the inserted-character padding after the
953 characters that go into the inserted positions.
954
955    Deletion of characters is less complicated; deleting one column is
956 done by outputting the `dc' string.  However, there may be a delete
957 mode that must be entered with `dm' in order to make `dc' work.
958
959 `dc'
960      String of commands to delete one character position at the cursor.
961      If `dc' is not present, the terminal cannot delete characters.
962
963 `DC'
964      String of commands to delete N characters starting at the cursor.
965      It has the same effect as repeating the `dc' string N times.  Any
966      terminal description that has `DC' also has `dc'.
967
968 `dm'
969      String of commands to enter delete mode.  If not present, there is
970      no delete mode, and `dc' can be used at any time (assuming there is
971      a `dc').
972
973 `ed'
974      String of commands to exit delete mode.  This must be present if
975      `dm' is.
976
977    To delete N character positions, position the cursor and follow these
978 steps:
979
980   1. If the `DC' string is present, output it with parameter N and you
981      are finished.  Otherwise, follow the remaining steps.
982
983   2. Output the `dm' string, unless you know the terminal is already in
984      delete mode.
985
986   3. Output the `dc' string N times.
987
988   4. Output the `ed' string eventually.  If the flag capability `mi' is
989      present, you can move the cursor and do more deletion without
990      leaving and reentering delete mode.
991
992    As with the `IC' string, we have departed from the original termcap
993 specifications by assuming that `DC' works without entering delete mode
994 even though `dc' would not.
995
996    If the `dm' and `im' capabilities are both present and have the same
997 value, it means that the terminal has one mode for both insertion and
998 deletion.  It is useful for a program to know this, because then it can
999 do insertions after deletions, or vice versa, without leaving
1000 insert/delete mode and reentering it.
1001