-
Notifications
You must be signed in to change notification settings - Fork 1
/
te.1
executable file
·48 lines (46 loc) · 1.37 KB
/
te.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.TH TE 1 "Nov 12, 1993"
.SH NAME
te -- the TECO text editor
.SH SYNOPSIS
te [filename]
.SH DESCRIPTION
.PP
te(1) is an implementation of TECO in portable C. It implements DEC standard TECO, with some exceptions and extensions described
below.
te assumes a VT100-type terminal, and its display
driver is hard-coded for such.
.SH DOCUMENTATION
The DEC Standard TECO book describes the basic editing
functions of TECO. teco.doc describes the differences
between te and standard TECO, including the extensions
for the Ultrix environment.
.SH FILES
.TP 10
~/.tecorc
editor startup file
.TP 10
<file>.tmp
temporary output file(s)
.TP 10
<file>.bak
previous version of edited file
.TP 10
/etc/termcap
describes terminal (used only to find width of VT100)
.SH AUTHOR
Matt Fichtenbaum, GenRad Inc., Concord, Mass. Portability hacks by
Eric S. Raymond <[email protected]>.
.SH BUGS
te's file name processing doesn't handle ~ and other
shell meta-characters. The wildcard function EN does
handle these.
.PP
te acquires memory for its buffer using malloc(), but
never returns the space. This can cause the task in
memory to appear to be larger than it is.
.PP
Several of the standard display features of TECO, most
notably the -256+n:W command used by interpretive editing
macros, are unimplemented. There are undoubtedly some
subtle bugs in the display handler for the features that
are implemented.