Documented nano.saves and other small changes to manpage.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@367 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
9ee2a0d0bc
commit
d7ad75adb3
|
@ -37,6 +37,10 @@ CVS code -
|
||||||
the klugey unjustify code.
|
the klugey unjustify code.
|
||||||
- nano.1, nano.1.html:
|
- nano.1, nano.1.html:
|
||||||
- Updated date on pages because of -p changes.
|
- Updated date on pages because of -p changes.
|
||||||
|
- Added "NOTES" section, where I explain what nano.save & friends
|
||||||
|
are.
|
||||||
|
- Added a copyright notice for the manpage, under the GPL.
|
||||||
|
- Other minor changes.
|
||||||
- nano.c:
|
- nano.c:
|
||||||
do_justify()
|
do_justify()
|
||||||
- Wrote unjustify code. Borrows cutbuffer and stores the unjustified
|
- Wrote unjustify code. Borrows cutbuffer and stores the unjustified
|
||||||
|
|
47
nano.1
47
nano.1
|
@ -1,20 +1,16 @@
|
||||||
.\" Hey, EMACS: -*- nroff -*-
|
.\" Hey, EMACS: -*- nroff -*-
|
||||||
|
.\" nano.1 is copyright 1999-2000 by
|
||||||
|
.\" Chris Allegretta <chrisa@asty.org>
|
||||||
|
.\"
|
||||||
|
.\" This is free documentation, see the latest version of the GNU General
|
||||||
|
.\" Public License for copying conditions. There is NO warranty.
|
||||||
|
.\"
|
||||||
.\" First parameter, NAME, should be all caps
|
.\" First parameter, NAME, should be all caps
|
||||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||||
.\" other parameters are allowed: see man(7), man(1)
|
.\" other parameters are allowed: see man(7), man(1)
|
||||||
.TH NANO 1 "November 27, 2000"
|
.TH NANO 1 "December 2, 2000"
|
||||||
.\" Please adjust this date whenever revising the manpage.
|
.\" Please adjust this date whenever revising the manpage.
|
||||||
.\"
|
.\"
|
||||||
.\" Some roff macros, for reference:
|
|
||||||
.\" .nh disable hyphenation
|
|
||||||
.\" .hy enable hyphenation
|
|
||||||
.\" .ad l left justify
|
|
||||||
.\" .ad b justify to both left and right margins
|
|
||||||
.\" .nf disable filling
|
|
||||||
.\" .fi enable filling
|
|
||||||
.\" .br insert line break
|
|
||||||
.\" .sp <n> insert n+1 empty lines
|
|
||||||
.\" for manpage-specific macros, see man(7)
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
nano \- Nano's ANOther editor, an enhanced free Pico Clone
|
nano \- Nano's ANOther editor, an enhanced free Pico Clone
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -29,14 +25,12 @@ command.
|
||||||
.\" TeX users may be more comfortable with the \fB<whatever>\fP and
|
.\" TeX users may be more comfortable with the \fB<whatever>\fP and
|
||||||
.\" \fI<whatever>\fP escape sequences to invode bold face and italics,
|
.\" \fI<whatever>\fP escape sequences to invode bold face and italics,
|
||||||
.\" respectively.
|
.\" respectively.
|
||||||
\fBnano\fP was originally known as TIP (TIP Isn't Pico). It is a small,
|
\fBnano\fP is a small, free and friendly editor which aims to replace
|
||||||
free and friendly editor which aims to replace Pico, the default editor
|
Pico, the default editor included in the non-free Pine package. Rather
|
||||||
included in the non-free Pine package. Rather than just copying Pico's
|
than just copying Pico's look and feel,
|
||||||
look and feel,
|
|
||||||
.B nano
|
.B nano
|
||||||
also implements some missing (or disabled by
|
also implements some missing (or disabled by default) features in Pico,
|
||||||
default) features in Pico, such as "search and replace" and "goto line
|
such as "search and replace" and "goto line number".
|
||||||
number".
|
|
||||||
.SH OPTIONS
|
.SH OPTIONS
|
||||||
.TP
|
.TP
|
||||||
.B \-T (\-\-tabsize)
|
.B \-T (\-\-tabsize)
|
||||||
|
@ -92,16 +86,27 @@ Enable suspend ability.
|
||||||
.TP
|
.TP
|
||||||
.B \+LINE
|
.B \+LINE
|
||||||
Places cursor at LINE on startup.
|
Places cursor at LINE on startup.
|
||||||
|
.SH NOTES
|
||||||
|
Nano will try to dump the buffer into an emergency file in some cases.
|
||||||
|
Mainly, this will happen if Nano recieves a SIGHUP or runs out of
|
||||||
|
memory, when it will write the buffer into a file named "nano.save" if the
|
||||||
|
buffer didn't have a name already, or will add a ".save" suffix to the
|
||||||
|
current finename. Nano will \fBnot\fP follow symbolic links that are not
|
||||||
|
owned by the real userid of the process.
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
Please send any comments or bug reports to
|
Please send any comments or bug reports to
|
||||||
|
.br
|
||||||
.B nano@nano-editor.org.
|
.B nano@nano-editor.org.
|
||||||
|
.br
|
||||||
The nano mailing list is available from
|
The nano mailing list is available from
|
||||||
|
.br
|
||||||
.B nano-devel@lists.sourceforge.net.
|
.B nano-devel@lists.sourceforge.net.
|
||||||
To subscribe, email to nano-devel-request@lists.sourceforge.net with a
|
To subscribe, email to nano-devel-request@lists.sourceforge.net with a
|
||||||
subject of "subscribe".
|
subject of "subscribe".
|
||||||
.SH HOMEPAGE
|
.SH HOMEPAGE
|
||||||
http://www.nano-editor.org
|
http://www.nano-editor.org
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
Chris Allegretta <chrisa@asty.org>, et al. This manual page was
|
Chris Allegretta <chrisa@asty.org>, et al (see AUTHORS for details).
|
||||||
originally written by Jordi Mallach <jordi@sindominio.net>, for the Debian
|
This manual page was originally written by Jordi Mallach
|
||||||
GNU/Linux system (but may be used by others).
|
<jordi@sindominio.net>, for the Debian GNU/Linux system (but may be
|
||||||
|
used by others).
|
||||||
|
|
Loading…
Reference in New Issue