nanorc.5 fixes from DB.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1471 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
07e2000094
commit
fc71eb5f72
|
@ -3,6 +3,7 @@ CVS code
|
||||||
- Translation updates (see po/ChangeLog for details).
|
- Translation updates (see po/ChangeLog for details).
|
||||||
- nanorc.5:
|
- nanorc.5:
|
||||||
- Fix formatting error and update copyright year (Jordi).
|
- Fix formatting error and update copyright year (Jordi).
|
||||||
|
- Several enhancements (David Benbennick).
|
||||||
|
|
||||||
GNU nano 1.1.99pre3 - 2003.02.13
|
GNU nano 1.1.99pre3 - 2003.02.13
|
||||||
- General:
|
- General:
|
||||||
|
|
27
nanorc.5
27
nanorc.5
|
@ -34,6 +34,8 @@ GNU nano will read one command per line.
|
||||||
Options in rcfiles take precedence over nano's defaults, and command line
|
Options in rcfiles take precedence over nano's defaults, and command line
|
||||||
options override rcfile settings.
|
options override rcfile settings.
|
||||||
|
|
||||||
|
Options are unset by default, except for options that take an argument.
|
||||||
|
|
||||||
The supported commands and arguments are:
|
The supported commands and arguments are:
|
||||||
|
|
||||||
.TP 3
|
.TP 3
|
||||||
|
@ -44,13 +46,14 @@ Use auto-indentation.
|
||||||
Create backup files in filename~.
|
Create backup files in filename~.
|
||||||
.TP
|
.TP
|
||||||
\fBset/unset const\fP
|
\fBset/unset const\fP
|
||||||
Constantly update the cursor position.
|
Constantly display the cursor position in the status bar.
|
||||||
.TP
|
.TP
|
||||||
\fBset/unset cut\fP
|
\fBset/unset cut\fP
|
||||||
Use cut to end of line with ^K by default.
|
Use cut to end of line with ^K by default.
|
||||||
.TP
|
.TP
|
||||||
\fBset fill \fIn\fP\fP
|
\fBset fill \fIn\fP\fP
|
||||||
Set the column where lines will be wrapped at to \fIn\fP.
|
Wrap lines at column number \fIn\fP. If \fIn\fP is 0 or less, the line
|
||||||
|
length will be the screen width less \fIn\fP. The default value is -8.
|
||||||
.TP
|
.TP
|
||||||
\fBset/unset keypad\fP
|
\fBset/unset keypad\fP
|
||||||
Use alternate keypad routines.
|
Use alternate keypad routines.
|
||||||
|
@ -71,16 +74,23 @@ Don't display the help lists at the bottom of the screen.
|
||||||
Don't wrap text at all.
|
Don't wrap text at all.
|
||||||
.TP
|
.TP
|
||||||
\fBset operatingdir "\fIdirectory\fP"\fP
|
\fBset operatingdir "\fIdirectory\fP"\fP
|
||||||
Set operating directory (chroots the user to \fIdirectory\fP and below).
|
\fBnano\fP will only read and write files inside \fIdirectory\fP and its
|
||||||
|
subdirectories. Also, the current directory is changed to here, so files
|
||||||
|
are inserted from this dir. By default the operating directory feature is
|
||||||
|
turned off.
|
||||||
.TP
|
.TP
|
||||||
\fBset/unset preserve\fP
|
\fBset/unset preserve\fP
|
||||||
Preserve the XON and XOFF keys (^Q and ^S).
|
Preserve the XON and XOFF keys (^Q and ^S).
|
||||||
.TP
|
.TP
|
||||||
\fBset quotestr "\fIstring\fP"\fP
|
\fBset quotestr "\fIstring\fP"\fP
|
||||||
The email-quote string. This is a "regular expression" if your
|
The email-quote string, used to justify email-quoted paragraphs. This is
|
||||||
system supports them, otherwise a literal string.
|
an "extended regular expression" if your system supports them, otherwise a
|
||||||
Default value is set quotestr "^([ \t]*[|>:}#])+" if you have regexps,
|
literal string. The default value is
|
||||||
otherwise set quotestr "> ".
|
|
||||||
|
set quotestr "^([ \\t]*[|>:}#])+"
|
||||||
|
|
||||||
|
if you have regexps, otherwise set quotestr "> ". Note that '\\t' above
|
||||||
|
stands for a literal Tab character.
|
||||||
.TP
|
.TP
|
||||||
\fBset/unset regexp\fP
|
\fBset/unset regexp\fP
|
||||||
Do regular expression searches by default.
|
Do regular expression searches by default.
|
||||||
|
@ -89,7 +99,8 @@ Do regular expression searches by default.
|
||||||
Use smooth scrolling by default.
|
Use smooth scrolling by default.
|
||||||
.TP
|
.TP
|
||||||
\fBset speller \fIspellprog\fP\fP
|
\fBset speller \fIspellprog\fP\fP
|
||||||
Use spelling checker \fIspellprog\fP instead of the default (spell).
|
Use spelling checker \fIspellprog\fP instead of the built-in one, which
|
||||||
|
calls \fIspell\fP.
|
||||||
.TP
|
.TP
|
||||||
\fBset/unset suspend\fP
|
\fBset/unset suspend\fP
|
||||||
Allow nano to be suspended with ^Z.
|
Allow nano to be suspended with ^Z.
|
||||||
|
|
Loading…
Reference in New Issue