NameDateSize

..Today11

build.unix/H12-Oct-20156

catalog/H12-Oct-201518

ChangesH A D16-May-20081.3 KiB

cl/H12-Oct-201512

clib/H12-Oct-201518

common/H12-Oct-201554

dist/H12-Oct-201531

docs/H12-Oct-20159

ex/H12-Oct-201559

gtk/H12-Oct-201512

include/H12-Oct-20155

ip/H12-Oct-201510

ipc/H12-Oct-201514

LICENSEH A D18-May-20082 KiB

motif/H12-Oct-20158

motif_l/H12-Oct-201518

nvi2netbsdH A D20-May-20084.1 KiB

perl_api/H12-Oct-20159

perl_scripts/H12-Oct-20157

READMEH A D18-May-20084 KiB

README.1stH A D16-May-2008466

README.DB3H A D16-May-20081,006

regex/H12-Oct-201517

tcl_api/H12-Oct-20155

tcl_scripts/H12-Oct-20157

TODOH A D18-May-20084.8 KiB

vi/H12-Oct-201545

README

1#	Id: README,v 8.153 2001/04/30 09:31:12 skimo Exp (Berkeley) Date: 2001/04/30 09:31:12
2
3This is version 1.81.6 (2007-11-18) of nex/nvi, a reimplementation of the ex/vi
4text editors originally distributed as part of the Fourth Berkeley
5Software Distribution (4BSD), by the University of California, Berkeley.
6
7The directory layout is as follows:
8
9    LICENSE ....... Copyright, use and redistribution information.
10    README ........ This file.
11    build.unix .... UNIX build directory.
12    catalog ....... Message catalogs; see catalog/README.
13    cl ............ Vi interface to the curses(3) library.
14    clib .......... C library replacement source code.
15    common ........ Code shared by ex and vi.
16    db ............ A stripped-down, replacement db(3) library.
17    dist .......... Various files used to build the vi distribution.
18    docs .......... Ex/vi documentation, both current and historic.
19    docs/README ... Documentation overview.
20    docs/edit ..... Edit: A tutorial.
21    docs/exref .... Ex Reference Manual -- Version 3.7.
22    docs/vi.man ... UNIX manual page for nex/nvi.
23    docs/vi.ref ... Nex/nvi reference manual.
24    docs/vitut .... An Introduction to Display Editing with Vi.
25    ex ............ Ex source code.
26    gtk ........... Vi gtk application.
27    include ....... Replacement include files.
28    ip ............ Library interface to vi: vi side.
29    ipc ........... Library interface to vi: application side.
30    motif ......... Vi motif application.
31    motif_l ....... Motif library interface to vi.
32    perl_api ...... Perl scripting language support.
33    perl_scripts .. Perl scripts.
34    regex ......... POSIX 1003.2 regular expression library.
35    tcl_api ....... Tcl scripting language support.
36    tcl_scripts ... Tcl scripts.
37    vi ............ Vi source code.
38
39To build DB for a UNIX platform:
40
41    cd build.unix
42    ../dist/configure
43    make
44
45To build multiple UNIX versions of DB in the same source tree, create
46a new directory then configure and build.
47
48    mkdir build.bsdos3.0
49    cd build.bsdos3.0
50    ../dist/configure
51    make
52
53For additional information about building DB for UNIX platforms, the
54description of possible configuration options and other information
55on DB configuration and build issues, see the file build.unix/README.
56	
57Bug fixes and updated versions of this software will periodically be made
58available.  For more information, as well as a list of Frequently Asked
59Questions, see:
60
61	http://www.bostic.com/vi
62
63To ask questions about vi, report vi problems, request notification of
64future releases and/or bug fixes, or to contact the authors for any
65reason, please send email to:
66
67	bostic@bostic.com
68
69=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
70o This software is several years old and is the product of many folks' work.  
71
72	This software was originally derived from software contributed to
73	the University of California, Berkeley by Steve Kirkendall, the
74	author of the vi clone elvis.  Without his work, this work would
75	have been far more difficult.
76
77	IEEE POSIX 1003.2 style regular expression support is courtesy of
78	Henry Spencer, for which I am *very* grateful.
79
80	Elan Amir did the original 4BSD curses work that made it possible
81	to support a full-screen editor using curses.
82
83	George Neville-Neil added the Tcl interpreter, and the initial
84	interpreter design was his.
85
86	Sven Verdoolaege added the Perl interpreter.
87
88	Rob Mayoff provided the original Cscope support.
89
90o Many, many people suggested enhancements, and provided bug reports and
91  testing, far too many to individually thank.
92
93o From the original vi acknowledgements, by William Joy and Mark Horton:
94
95	Bruce Englar encouraged the early development of this display
96	editor.  Peter Kessler helped bring sanity to version 2's
97	command layout.  Bill Joy wrote versions 1 and 2.0 through 2.7,
98	and created the framework that users see in the present editor.
99	Mark Horton added macros and other features and made the editor
100	work on a large number of terminals and Unix systems.
101
102o And...
103	The financial support of UUNET Communications Services is gratefully
104	acknowledged.
105

README.1st

1This is a development version of nvi.
2Use at your own risk.
3
4Please do not contact the original authors about bugs you
5find in this version. Contact skimo-vi@kotnet.org instead.
6
7There is no guarantee that anything in this version will be
8available in upcoming stable releases.
9
10New versions will be made available on 
11http://www.kotnet.org/~skimo/nvi
12
13As always this software comes with absolutely NO WARRANTY.
14
15Now read the original README file.
16
17Sven Verdoolaege
18

README.DB3

1This version of vi requires DB3.1 or better, which can be found
2on http://www.sleepycat.com/ .
3
4Note that there is a small problem with DB 3.2 in that it will
5not let nvi read in a final line that doesn't end in a newline.
6This should be fixed in DB 3.3
7
8If your system library (such as glibc prior to version 2.2) uses a
9previous version of db (e.g. DB2) internally, you must configure with
10--enable-dynamic-loading to avoid symbols in the internally used db from
11being resolved against the newer db.
12
13If, on top of that, the vi binary is explicitly linked against that
14previous version of db (such as might happen if you enable the perl
15embedding), you should compile the 3.x version with all symbols internally
16resolved.  In case you use the Gnu linker (ld), this can be accomplished
17by passing it the -Bsymbolic option. You can do this by setting CC
18to e.g. "gcc -Wl,-Bsymbolic" prior to configuring db.
19See docs/ref/build_unix/flags.html in the db distribution for more
20information.
21
22skimo@kotnet.org
23