2020-04-23 14:28:08 -07:00
|
|
|
.\" $OpenBSD: editrc.5,v 1.33 2020/04/23 21:28:08 jmc Exp $
|
2016-05-22 15:08:42 -07:00
|
|
|
.\" $NetBSD: editrc.5,v 1.31 2016/04/28 15:50:34 christos Exp $
|
1997-01-15 21:20:28 -08:00
|
|
|
.\"
|
Update to NetBSD libedit (from Oct 1, 2003), adding some string
cleaning and history bug fixes. The code includes GNU libreadline
functionality, but the corresponding header files are not installed,
since some libreadline functions are missing. There are some minor API
changes, notably:
old: EditLine *el_init(const char *, FILE *, FILE *);
new: EditLine *el_init(const char *, FILE *, FILE *, FILE *);
old: HistEvent *history(History *h, int op, ...);
new: int history(History *h, HistEvent *ev, int op, ...); plus some
changes in operation names. See editline(3) for details.
Tested by djm@, mouring@, jmc@.
ok deraadt@
2003-10-31 00:42:23 -08:00
|
|
|
.\" Copyright (c) 1997-2000 The NetBSD Foundation, Inc.
|
1997-01-15 21:20:28 -08:00
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" This file was contributed to The NetBSD Foundation by Luke Mewburn.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
Update to NetBSD libedit (from Oct 1, 2003), adding some string
cleaning and history bug fixes. The code includes GNU libreadline
functionality, but the corresponding header files are not installed,
since some libreadline functions are missing. There are some minor API
changes, notably:
old: EditLine *el_init(const char *, FILE *, FILE *);
new: EditLine *el_init(const char *, FILE *, FILE *, FILE *);
old: HistEvent *history(History *h, int op, ...);
new: int history(History *h, HistEvent *ev, int op, ...); plus some
changes in operation names. See editline(3) for details.
Tested by djm@, mouring@, jmc@.
ok deraadt@
2003-10-31 00:42:23 -08:00
|
|
|
.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
1997-01-15 21:20:28 -08:00
|
|
|
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
.\" POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
.\"
|
2020-04-23 14:28:08 -07:00
|
|
|
.Dd $Mdocdate: April 23 2020 $
|
Update to NetBSD libedit (from Oct 1, 2003), adding some string
cleaning and history bug fixes. The code includes GNU libreadline
functionality, but the corresponding header files are not installed,
since some libreadline functions are missing. There are some minor API
changes, notably:
old: EditLine *el_init(const char *, FILE *, FILE *);
new: EditLine *el_init(const char *, FILE *, FILE *, FILE *);
old: HistEvent *history(History *h, int op, ...);
new: int history(History *h, HistEvent *ev, int op, ...); plus some
changes in operation names. See editline(3) for details.
Tested by djm@, mouring@, jmc@.
ok deraadt@
2003-10-31 00:42:23 -08:00
|
|
|
.Dt EDITRC 5
|
2010-06-29 17:05:35 -07:00
|
|
|
.Os
|
1997-01-15 21:20:28 -08:00
|
|
|
.Sh NAME
|
|
|
|
.Nm editrc
|
|
|
|
.Nd configuration file for editline library
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
file defines various settings to be used by the
|
|
|
|
.Xr editline 3
|
|
|
|
library.
|
|
|
|
.Pp
|
Update to NetBSD libedit (from Oct 1, 2003), adding some string
cleaning and history bug fixes. The code includes GNU libreadline
functionality, but the corresponding header files are not installed,
since some libreadline functions are missing. There are some minor API
changes, notably:
old: EditLine *el_init(const char *, FILE *, FILE *);
new: EditLine *el_init(const char *, FILE *, FILE *, FILE *);
old: HistEvent *history(History *h, int op, ...);
new: int history(History *h, HistEvent *ev, int op, ...); plus some
changes in operation names. See editline(3) for details.
Tested by djm@, mouring@, jmc@.
ok deraadt@
2003-10-31 00:42:23 -08:00
|
|
|
The format of each line is:
|
2003-10-31 00:57:10 -08:00
|
|
|
.Pp
|
2010-01-25 09:23:43 -08:00
|
|
|
.Dl [prog:]command [arg ...]
|
1997-01-15 21:20:28 -08:00
|
|
|
.Pp
|
|
|
|
.Ar command
|
|
|
|
is one of the
|
|
|
|
.Xr editline 3
|
Update to NetBSD libedit (from Oct 1, 2003), adding some string
cleaning and history bug fixes. The code includes GNU libreadline
functionality, but the corresponding header files are not installed,
since some libreadline functions are missing. There are some minor API
changes, notably:
old: EditLine *el_init(const char *, FILE *, FILE *);
new: EditLine *el_init(const char *, FILE *, FILE *, FILE *);
old: HistEvent *history(History *h, int op, ...);
new: int history(History *h, HistEvent *ev, int op, ...); plus some
changes in operation names. See editline(3) for details.
Tested by djm@, mouring@, jmc@.
ok deraadt@
2003-10-31 00:42:23 -08:00
|
|
|
builtin commands.
|
1997-01-15 21:20:28 -08:00
|
|
|
Refer to
|
Update to NetBSD libedit (from Oct 1, 2003), adding some string
cleaning and history bug fixes. The code includes GNU libreadline
functionality, but the corresponding header files are not installed,
since some libreadline functions are missing. There are some minor API
changes, notably:
old: EditLine *el_init(const char *, FILE *, FILE *);
new: EditLine *el_init(const char *, FILE *, FILE *, FILE *);
old: HistEvent *history(History *h, int op, ...);
new: int history(History *h, HistEvent *ev, int op, ...); plus some
changes in operation names. See editline(3) for details.
Tested by djm@, mouring@, jmc@.
ok deraadt@
2003-10-31 00:42:23 -08:00
|
|
|
.Sx BUILTIN COMMANDS
|
1997-01-15 21:20:28 -08:00
|
|
|
for more information.
|
|
|
|
.Pp
|
1999-07-09 06:35:13 -07:00
|
|
|
.Ar prog
|
1997-01-15 21:20:28 -08:00
|
|
|
is the program name string that a program defines when it calls
|
|
|
|
.Xr el_init 3
|
2003-05-10 11:42:24 -07:00
|
|
|
to set up
|
1997-01-15 21:20:28 -08:00
|
|
|
.Xr editline 3 ,
|
|
|
|
which is usually
|
|
|
|
.Va argv[0] .
|
|
|
|
.Ar command
|
|
|
|
will be executed for any program which matches
|
|
|
|
.Ar prog .
|
|
|
|
.Pp
|
|
|
|
.Ar prog
|
|
|
|
may also be a
|
|
|
|
.Xr regex 3
|
|
|
|
style
|
|
|
|
regular expression, in which case
|
|
|
|
.Ar command
|
|
|
|
will be executed for any program that matches the regular expression.
|
Update to NetBSD libedit (from Oct 1, 2003), adding some string
cleaning and history bug fixes. The code includes GNU libreadline
functionality, but the corresponding header files are not installed,
since some libreadline functions are missing. There are some minor API
changes, notably:
old: EditLine *el_init(const char *, FILE *, FILE *);
new: EditLine *el_init(const char *, FILE *, FILE *, FILE *);
old: HistEvent *history(History *h, int op, ...);
new: int history(History *h, HistEvent *ev, int op, ...); plus some
changes in operation names. See editline(3) for details.
Tested by djm@, mouring@, jmc@.
ok deraadt@
2003-10-31 00:42:23 -08:00
|
|
|
.Pp
|
|
|
|
If
|
|
|
|
.Ar prog
|
|
|
|
is absent,
|
|
|
|
.Ar command
|
|
|
|
is executed for all programs.
|
|
|
|
.Sh BUILTIN COMMANDS
|
1997-01-15 21:20:28 -08:00
|
|
|
The
|
|
|
|
.Nm editline
|
Update to NetBSD libedit (from Oct 1, 2003), adding some string
cleaning and history bug fixes. The code includes GNU libreadline
functionality, but the corresponding header files are not installed,
since some libreadline functions are missing. There are some minor API
changes, notably:
old: EditLine *el_init(const char *, FILE *, FILE *);
new: EditLine *el_init(const char *, FILE *, FILE *, FILE *);
old: HistEvent *history(History *h, int op, ...);
new: int history(History *h, HistEvent *ev, int op, ...); plus some
changes in operation names. See editline(3) for details.
Tested by djm@, mouring@, jmc@.
ok deraadt@
2003-10-31 00:42:23 -08:00
|
|
|
library has some builtin commands, which affect the way
|
1997-01-15 21:20:28 -08:00
|
|
|
that the line editing and history functions operate.
|
2010-06-30 00:34:38 -07:00
|
|
|
These are based on similar named builtins present in the tcsh shell.
|
1997-01-15 21:20:28 -08:00
|
|
|
.Pp
|
Update to NetBSD libedit (from Oct 1, 2003), adding some string
cleaning and history bug fixes. The code includes GNU libreadline
functionality, but the corresponding header files are not installed,
since some libreadline functions are missing. There are some minor API
changes, notably:
old: EditLine *el_init(const char *, FILE *, FILE *);
new: EditLine *el_init(const char *, FILE *, FILE *, FILE *);
old: HistEvent *history(History *h, int op, ...);
new: int history(History *h, HistEvent *ev, int op, ...); plus some
changes in operation names. See editline(3) for details.
Tested by djm@, mouring@, jmc@.
ok deraadt@
2003-10-31 00:42:23 -08:00
|
|
|
The following builtin commands are available:
|
1997-01-15 21:20:28 -08:00
|
|
|
.Bl -tag -width 4n
|
2016-05-22 15:08:42 -07:00
|
|
|
.It Ic bind Oo Fl aeklrsv Oc Op Ar key Op Ar command
|
|
|
|
Without options and arguments, list all bound keys and macros, and
|
|
|
|
the editor command or input string to which each one is bound.
|
|
|
|
If only
|
1997-01-15 21:20:28 -08:00
|
|
|
.Ar key
|
2016-05-22 15:08:42 -07:00
|
|
|
is supplied, show the binding for that key or macro.
|
1997-01-15 21:20:28 -08:00
|
|
|
If
|
|
|
|
.Ar key command
|
2016-05-22 15:08:42 -07:00
|
|
|
is supplied, bind the editor
|
1997-01-15 21:20:28 -08:00
|
|
|
.Ar command
|
2016-05-22 15:08:42 -07:00
|
|
|
to that key or macro.
|
|
|
|
.Pp
|
|
|
|
The options are as follows:
|
1997-01-15 21:20:28 -08:00
|
|
|
.Bl -tag -width 4n
|
|
|
|
.It Fl a
|
1999-07-09 06:35:13 -07:00
|
|
|
List or change key bindings in the
|
1997-01-15 21:20:28 -08:00
|
|
|
.Xr vi 1
|
|
|
|
mode alternate (command mode) key map.
|
2003-10-31 00:57:10 -08:00
|
|
|
.It Fl e
|
|
|
|
Bind all keys to the standard GNU Emacs-like bindings.
|
1997-01-15 21:20:28 -08:00
|
|
|
.It Fl k
|
|
|
|
.Ar key
|
|
|
|
is interpreted as a symbolic arrow key name, which may be one of
|
|
|
|
.Sq up ,
|
|
|
|
.Sq down ,
|
|
|
|
.Sq left
|
|
|
|
or
|
|
|
|
.Sq right .
|
|
|
|
.It Fl l
|
|
|
|
List all editor commands and a short description of each.
|
|
|
|
.It Fl r
|
2016-05-22 15:08:42 -07:00
|
|
|
Remove the binding of the key or macro
|
|
|
|
.Ar key .
|
1997-01-15 21:20:28 -08:00
|
|
|
.It Fl s
|
2016-05-22 15:08:42 -07:00
|
|
|
Define a keyboard macro rather than a key binding or command macro:
|
1997-01-15 21:20:28 -08:00
|
|
|
.Ar command
|
2016-05-22 15:08:42 -07:00
|
|
|
is taken as a literal string and appended to the input queue whenever
|
1997-01-15 21:20:28 -08:00
|
|
|
.Ar key
|
|
|
|
is typed.
|
2016-05-22 15:08:42 -07:00
|
|
|
Bound keys and macros in
|
1997-01-15 21:20:28 -08:00
|
|
|
.Ar command
|
|
|
|
are themselves reinterpreted, and this continues for ten levels of
|
|
|
|
interpretation.
|
2003-10-31 00:57:10 -08:00
|
|
|
.It Fl v
|
|
|
|
Bind all keys to the standard
|
|
|
|
.Xr vi 1 Ns -like
|
|
|
|
bindings.
|
1997-01-15 21:20:28 -08:00
|
|
|
.El
|
|
|
|
.Pp
|
2016-05-22 15:08:42 -07:00
|
|
|
The
|
New editline(7) manual, explaining to end-users how line editing works
in programs like ftp(1), sftp(1), bc(1), and cdio(1) that use libedit.
The existing editrc(5) manual only explains customization, and the
existing editline(3) manual only explains the C language interface.
Already listing all editor functions and all default key bindings, but
in other respects, not 100% complete yet, and due to the sheer size,
some bugs may have slipped, but all that can be fixed in the tree.
OK and tweaks jmc@.
Also seems reasonable to Christian Heckendorf <mbie at ulmus dot me>.
2016-04-19 18:11:45 -07:00
|
|
|
.Xr editline 7
|
2016-05-22 15:08:42 -07:00
|
|
|
manual documents all editor commands and contains more information
|
|
|
|
about macros and the input queue.
|
Update to NetBSD libedit (from Oct 1, 2003), adding some string
cleaning and history bug fixes. The code includes GNU libreadline
functionality, but the corresponding header files are not installed,
since some libreadline functions are missing. There are some minor API
changes, notably:
old: EditLine *el_init(const char *, FILE *, FILE *);
new: EditLine *el_init(const char *, FILE *, FILE *, FILE *);
old: HistEvent *history(History *h, int op, ...);
new: int history(History *h, HistEvent *ev, int op, ...); plus some
changes in operation names. See editline(3) for details.
Tested by djm@, mouring@, jmc@.
ok deraadt@
2003-10-31 00:42:23 -08:00
|
|
|
.Pp
|
1997-01-15 21:20:28 -08:00
|
|
|
.Ar key
|
|
|
|
and
|
|
|
|
.Ar command
|
|
|
|
can contain control characters of the form
|
|
|
|
.Sm off
|
|
|
|
.Sq No ^ Ar character
|
|
|
|
.Sm on
|
|
|
|
.Po
|
2003-10-31 00:57:10 -08:00
|
|
|
e.g.\&
|
1997-01-15 21:20:28 -08:00
|
|
|
.Sq ^A
|
|
|
|
.Pc ,
|
|
|
|
and the following backslashed escape sequences:
|
|
|
|
.Pp
|
|
|
|
.Bl -tag -compact -offset indent -width 4n
|
|
|
|
.It Ic \ea
|
|
|
|
Bell
|
|
|
|
.It Ic \eb
|
|
|
|
Backspace
|
|
|
|
.It Ic \ee
|
|
|
|
Escape
|
|
|
|
.It Ic \ef
|
|
|
|
Formfeed
|
|
|
|
.It Ic \en
|
|
|
|
Newline
|
|
|
|
.It Ic \er
|
|
|
|
Carriage return
|
|
|
|
.It Ic \et
|
|
|
|
Horizontal tab
|
|
|
|
.It Ic \ev
|
|
|
|
Vertical tab
|
|
|
|
.Sm off
|
|
|
|
.It Sy \e Ar nnn
|
|
|
|
.Sm on
|
|
|
|
The ASCII character corresponding to the octal number
|
|
|
|
.Ar nnn .
|
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
.Sq \e
|
|
|
|
nullifies the special meaning of the following character,
|
|
|
|
if it has any, notably
|
|
|
|
.Sq \e
|
|
|
|
and
|
|
|
|
.Sq ^ .
|
2020-04-23 14:28:08 -07:00
|
|
|
.It Ic echotc Oo Fl sv Oc Ar arg ...
|
1997-01-15 21:20:28 -08:00
|
|
|
Exercise terminal capabilities given in
|
2010-01-25 09:23:43 -08:00
|
|
|
.Ar arg ... .
|
1997-01-15 21:20:28 -08:00
|
|
|
If
|
|
|
|
.Ar arg
|
|
|
|
is
|
|
|
|
.Sq baud ,
|
|
|
|
.Sq cols ,
|
|
|
|
.Sq lines ,
|
|
|
|
.Sq rows ,
|
2014-12-15 14:35:41 -08:00
|
|
|
.Sq meta ,
|
2003-10-31 00:57:10 -08:00
|
|
|
or
|
1997-01-15 21:20:28 -08:00
|
|
|
.Sq tabs ,
|
|
|
|
the value of that capability is printed, with
|
|
|
|
.Dq yes
|
|
|
|
or
|
|
|
|
.Dq no
|
|
|
|
indicating that the terminal does or does not have that capability.
|
|
|
|
.Pp
|
|
|
|
.Fl s
|
2003-10-22 00:49:03 -07:00
|
|
|
returns an empty string for non-existent capabilities, rather than
|
1997-01-15 21:20:28 -08:00
|
|
|
causing an error.
|
|
|
|
.Fl v
|
|
|
|
causes messages to be verbose.
|
Update to NetBSD libedit (from Oct 1, 2003), adding some string
cleaning and history bug fixes. The code includes GNU libreadline
functionality, but the corresponding header files are not installed,
since some libreadline functions are missing. There are some minor API
changes, notably:
old: EditLine *el_init(const char *, FILE *, FILE *);
new: EditLine *el_init(const char *, FILE *, FILE *, FILE *);
old: HistEvent *history(History *h, int op, ...);
new: int history(History *h, HistEvent *ev, int op, ...); plus some
changes in operation names. See editline(3) for details.
Tested by djm@, mouring@, jmc@.
ok deraadt@
2003-10-31 00:42:23 -08:00
|
|
|
.It Ic edit Op Li on | Li off
|
|
|
|
Enable or disable the
|
|
|
|
.Nm editline
|
|
|
|
functionality in a program.
|
2010-06-29 17:05:35 -07:00
|
|
|
.It Ic history Ar list | Ar size Dv n | Ar unique Dv n
|
|
|
|
The
|
|
|
|
.Ar list
|
|
|
|
command lists all entries in the history.
|
|
|
|
The
|
|
|
|
.Ar size
|
|
|
|
command sets the history size to
|
|
|
|
.Dv n
|
|
|
|
entries.
|
|
|
|
The
|
|
|
|
.Ar unique
|
|
|
|
command controls if history should keep duplicate entries.
|
|
|
|
If
|
|
|
|
.Dv n
|
|
|
|
is non zero, only keep unique history entries.
|
|
|
|
If
|
|
|
|
.Dv n
|
|
|
|
is zero, then keep all entries (the default).
|
2020-04-23 14:28:08 -07:00
|
|
|
.It Ic settc Ar cap val
|
1997-01-15 21:20:28 -08:00
|
|
|
Set the terminal capability
|
|
|
|
.Ar cap
|
|
|
|
to
|
|
|
|
.Ar val ,
|
|
|
|
as defined in
|
|
|
|
.Xr termcap 5 .
|
|
|
|
No sanity checking is done.
|
|
|
|
.It Ic setty Xo
|
2003-10-31 00:57:10 -08:00
|
|
|
.Op Fl adqx
|
1997-01-15 21:20:28 -08:00
|
|
|
.Op Ar +mode
|
|
|
|
.Op Ar -mode
|
|
|
|
.Op Ar mode
|
2003-11-25 12:12:38 -08:00
|
|
|
.Op Ar char=c
|
1997-01-15 21:20:28 -08:00
|
|
|
.Xc
|
|
|
|
Control which tty modes that
|
|
|
|
.Nm
|
|
|
|
won't allow the user to change.
|
|
|
|
.Fl d ,
|
|
|
|
.Fl q
|
|
|
|
or
|
|
|
|
.Fl x
|
|
|
|
tells
|
|
|
|
.Ic setty
|
|
|
|
to act on the
|
|
|
|
.Sq edit ,
|
|
|
|
.Sq quote
|
|
|
|
or
|
|
|
|
.Sq execute
|
|
|
|
set of tty modes respectively; defaulting to
|
|
|
|
.Fl x .
|
|
|
|
.Pp
|
|
|
|
Without other arguments,
|
|
|
|
.Ic setty
|
|
|
|
lists the modes in the chosen set which are fixed on
|
|
|
|
.Po
|
|
|
|
.Sq +mode
|
|
|
|
.Pc
|
|
|
|
or off
|
|
|
|
.Po
|
|
|
|
.Sq -mode
|
|
|
|
.Pc .
|
|
|
|
.Fl a
|
|
|
|
lists all tty modes in the chosen set regardless of the setting.
|
|
|
|
With
|
|
|
|
.Ar +mode ,
|
|
|
|
.Ar -mode
|
|
|
|
or
|
|
|
|
.Ar mode ,
|
|
|
|
fixes
|
|
|
|
.Ar mode
|
|
|
|
on or off or removes control of
|
|
|
|
.Ar mode
|
|
|
|
in the chosen set.
|
2010-06-29 17:05:35 -07:00
|
|
|
.Pp
|
|
|
|
.Ic Setty
|
|
|
|
can also be used to set tty characters to particular values using
|
|
|
|
.Ar char=value .
|
|
|
|
If
|
|
|
|
.Ar value
|
|
|
|
is empty
|
|
|
|
then the character is set to
|
|
|
|
.Dv _POSIX_VDISABLE .
|
2003-10-31 00:57:10 -08:00
|
|
|
.It Ic telltc
|
|
|
|
List the values of all the terminal capabilities (see
|
|
|
|
.Xr termcap 5 ) .
|
1997-01-15 21:20:28 -08:00
|
|
|
.El
|
2013-01-10 06:21:47 -08:00
|
|
|
.Sh FILES
|
|
|
|
.Bl -tag -width "~/.editrcXXX"
|
|
|
|
.It Pa ~/.editrc
|
|
|
|
User configuration file for the
|
|
|
|
.Xr editline 3
|
|
|
|
library.
|
|
|
|
.El
|
1997-01-15 21:20:28 -08:00
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr editline 3 ,
|
|
|
|
.Xr regex 3 ,
|
New editline(7) manual, explaining to end-users how line editing works
in programs like ftp(1), sftp(1), bc(1), and cdio(1) that use libedit.
The existing editrc(5) manual only explains customization, and the
existing editline(3) manual only explains the C language interface.
Already listing all editor functions and all default key bindings, but
in other respects, not 100% complete yet, and due to the sheer size,
some bugs may have slipped, but all that can be fixed in the tree.
OK and tweaks jmc@.
Also seems reasonable to Christian Heckendorf <mbie at ulmus dot me>.
2016-04-19 18:11:45 -07:00
|
|
|
.Xr termcap 5 ,
|
|
|
|
.Xr editline 7
|
1997-01-15 21:20:28 -08:00
|
|
|
.Sh AUTHORS
|
2014-12-12 09:04:22 -08:00
|
|
|
.An -nosplit
|
1997-01-15 21:20:28 -08:00
|
|
|
The
|
1997-06-29 16:40:46 -07:00
|
|
|
.Nm editline
|
2014-12-12 09:04:22 -08:00
|
|
|
library was written by
|
|
|
|
.An Christos Zoulas ,
|
|
|
|
and this manual was written by
|
|
|
|
.An Luke Mewburn ,
|
2010-06-30 00:34:38 -07:00
|
|
|
with some sections inspired by tcsh.
|