summaryrefslogtreecommitdiff
path: root/usr.bin/vi/docs
diff options
context:
space:
mode:
authormichaels <michaels@cvs.openbsd.org>1996-10-16 01:19:02 +0000
committermichaels <michaels@cvs.openbsd.org>1996-10-16 01:19:02 +0000
commitbbac58ea85fcdd5f15449819005e17cd93c3e14a (patch)
tree46cac5bf539a167855f9d647a2047e9d9fe89608 /usr.bin/vi/docs
parentbdd4fa6809d3bd31f8890df0ca821dcfd660042f (diff)
nvi 1.78:
+ Fix bugs when both the leftright scrolling and number edit options were on. + Fix bug where splitting in the middle of the screen could repaint incorrectly. + Fix first-nul in input bug, where random garbage was inserted. + Correct search and mark-as-motion-command bug, it's a line mode action if the search starts at or before the first non<blank>. + Fix bug autoindent bug, where ^D could shift too far in the line. + Fix core dump where ! command called from the .exrc file. + Add the -S command-line option, which initializes vi to have the secure edit option preset.
Diffstat (limited to 'usr.bin/vi/docs')
-rw-r--r--usr.bin/vi/docs/USD.doc/vi.man/nvi.115
-rw-r--r--usr.bin/vi/docs/changelog12
2 files changed, 22 insertions, 5 deletions
diff --git a/usr.bin/vi/docs/USD.doc/vi.man/nvi.1 b/usr.bin/vi/docs/USD.doc/vi.man/nvi.1
index 9c9187dde71..63c9c50a9fd 100644
--- a/usr.bin/vi/docs/USD.doc/vi.man/nvi.1
+++ b/usr.bin/vi/docs/USD.doc/vi.man/nvi.1
@@ -8,16 +8,16 @@
.\"
.\" See the LICENSE file for redistribution information.
.\"
-.\" @(#)vi.1 8.49 (Berkeley) 8/20/96
+.\" @(#)vi.1 8.50 (Berkeley) 9/23/96
.\"
-.TH VI 1 "August 20, 1996"
+.TH VI 1 "September 23, 1996"
.UC
.SH NAME
ex, vi, view \- text editors
.SH SYNOPSIS
.B ex
[\c
-.B -eFRrsv\c
+.B -eFRrSsv\c
] [\c
.BI -c " cmd"\c
] [\c
@@ -28,7 +28,7 @@ ex, vi, view \- text editors
.br
.B vi
[\c
-.B -eFlRrv\c
+.B -eFlRrSv\c
] [\c
.BI -c " cmd"\c
] [\c
@@ -39,7 +39,7 @@ ex, vi, view \- text editors
.br
.B view
[\c
-.B -eFRrv\c
+.B -eFRrSv\c
] [\c
.BI -c " cmd"\c
] [\c
@@ -136,6 +136,11 @@ the file is edited as if the
.B \-r
option had not been specified.
.TP
+.B \-S
+Run with the
+.B secure
+edit option set, disallowing all access to external programs.
+.TP
.B \-s
Enter batch mode; applicable only to
.I \&ex
diff --git a/usr.bin/vi/docs/changelog b/usr.bin/vi/docs/changelog
index ce2b35f6e48..fee1fc00bb9 100644
--- a/usr.bin/vi/docs/changelog
+++ b/usr.bin/vi/docs/changelog
@@ -1,3 +1,15 @@
+1.76 -> 1.78 (10/01/96)
+ + Fix bugs when both the leftright scrolling and number edit options
+ were on.
+ + Fix bug where splitting in the middle of the screen could repaint
+ incorrectly.
+ + Fix first-nul in input bug, where random garbage was inserted.
+ + Correct search and mark-as-motion-command bug, it's a line mode
+ action if the search starts at or before the first non<blank>.
+ + Fix bug autoindent bug, where ^D could shift too far in the line.
+ + Fix core dump where ! command called from the .exrc file.
+ + Add the -S command-line option, which initializes vi to have the
+ secure edit option preset.
1.75 -> 1.76 (09/15/96)
+ Fix bug where ^V didn't keep input mapping from happening.
+ Fix a core dump bug in the R command.