nanorc.5 6.79 KB
Newer Older
Jordi Mallach's avatar
Jordi Mallach committed
1
.\" Hey, EMACS: -*- nroff -*-
2
3
.\" nanorc.5 is Copyright (C) 2003, 2004, 2005 Free Software
.\" Foundation, Inc.
Jordi Mallach's avatar
Jordi Mallach committed
4
5
.\"
.\" This is free documentation, see the latest version of the GNU General
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
6
.\" Public License for copying conditions.  There is NO warranty.
Jordi Mallach's avatar
Jordi Mallach committed
7
8
.\"
.\" $Id$
9
.TH NANORC 5 "version 1.3.8" "June 15, 2005"
Jordi Mallach's avatar
Jordi Mallach committed
10
11
12
13
14
15
16
17
.\" Please adjust this date whenever revising the manpage.
.\"
.SH NAME
nanorc \- GNU nano's rcfile
.SH DESCRIPTION
This manual page documents GNU \fBnano\fP's rcfile.
.PP
\fBnano\fP is a small, free and friendly editor which aims to replace
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
18
Pico, the default editor included in the non-free Pine package.  Rather
Jordi Mallach's avatar
Jordi Mallach committed
19
20
21
than just copying Pico's look and feel, \fBnano\fP also implements some
missing (or disabled by default) features in Pico, such as "search and
replace" and "go to line number".
22
.PP
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
23
The \fInanorc\fP file contains the default settings for \fBnano\fP.
24
During startup, \fBnano\fP will first read its system-wide settings from
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
25
.IR SYSCONFDIR/nanorc ,
26
and then user-specific settings from
27
.IR ~/.nanorc .
Jordi Mallach's avatar
Jordi Mallach committed
28
29
30
31

.SH OPTIONS
The configuration file accepts a series of "set" and "unset" commands,
which can be used to configure nano on startup without using the
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
32
33
34
command-line options.  Additionally, the "syntax" and "color" keywords
are used to define syntax highlighting rules for different text
patterns.  GNU nano will read one command per line.
Jordi Mallach's avatar
Jordi Mallach committed
35

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
36
37
Options in rcfiles take precedence over nano's defaults, and command
line options override rcfile settings.
Jordi Mallach's avatar
Jordi Mallach committed
38

Jordi Mallach's avatar
Jordi Mallach committed
39
40
Options are unset by default, except for options that take an argument.

Jordi Mallach's avatar
Jordi Mallach committed
41
42
43
44
45
46
47
The supported commands and arguments are:

.TP 3
\fBset/unset autoindent\fP
Use auto-indentation.
.TP
\fBset/unset backup\fP
48
49
Create backup files in
.IR filename~ .
Jordi Mallach's avatar
Jordi Mallach committed
50
.TP
51
\fBset backupdir "\fIdirectory\fP"\fP
52
53
Set the directory where \fBnano\fP puts unique backup files if file
backups are enabled.
54
55
56
57
\fBset brackets "\fIstring\fP"\fP
Set the characters treated as closing brackets.  They cannot contain
tabs or spaces.  Only closing punctuation, optionally followed by
closing brackets, can end sentences.
58
.TP
Jordi Mallach's avatar
Jordi Mallach committed
59
\fBset/unset const\fP
Jordi Mallach's avatar
Jordi Mallach committed
60
Constantly display the cursor position in the status bar.
Jordi Mallach's avatar
Jordi Mallach committed
61
62
.TP
\fBset/unset cut\fP
63
Use cut to end of line by default.
Jordi Mallach's avatar
Jordi Mallach committed
64
.TP
65
\fBset fill \fIn\fP\fP
Jordi Mallach's avatar
Jordi Mallach committed
66
67
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.
Jordi Mallach's avatar
Jordi Mallach committed
68
.TP
69
70
71
72
73
\fBset/unset historylog\fP
Enable
.I ~/.nano_history
for saving and reading search/replace strings.
.TP
74
75
76
77
78
79
80
\fBset/unset morespace\fP
Allow use of the blank line below the titlebar as extra editing space.
.TP
\fBset/unset mouse\fP
Enable mouse support, so that mouse clicks can be used to set the mark
and run shortcuts.
.TP
Jordi Mallach's avatar
Jordi Mallach committed
81
\fBset/unset multibuffer\fP
82
Allow inserting files into their own buffers.
Jordi Mallach's avatar
Jordi Mallach committed
83
84
85
86
87
88
89
90
91
92
93
94
95
.TP
\fBset/unset noconvert\fP
Don't convert files from DOS/Mac format.
.TP
\fBset/unset nofollow\fP
Don't follow symlinks when writing files.
.TP
\fBset/unset nohelp\fP
Don't display the help lists at the bottom of the screen.
.TP
\fBset/unset nowrap\fP
Don't wrap text at all.
.TP
96
\fBset operatingdir "\fIdirectory\fP"\fP
Jordi Mallach's avatar
Jordi Mallach committed
97
\fBnano\fP will only read and write files inside \fIdirectory\fP and its
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
98
99
100
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.
Jordi Mallach's avatar
Jordi Mallach committed
101
102
103
104
.TP
\fBset/unset preserve\fP
Preserve the XON and XOFF keys (^Q and ^S).
.TP
105
106
107
108
109
\fBset punct "\fIstring\fP"\fP
Set the characters treated as closing punctuation.  They cannot contain
tabs or spaces.  Only closing punctuation, optionally followed by
closing brackets, can end sentences.
.TP
110
\fBset quotestr "\fIstring\fP"\fP
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
111
112
113
The email-quote string, used to justify email-quoted paragraphs.  This
is an "extended regular expression" if your system supports them,
otherwise a literal string.  The default value is
Jordi Mallach's avatar
Jordi Mallach committed
114

115
	set quotestr "^([\ \\t]*[|>:}#])+"
Jordi Mallach's avatar
Jordi Mallach committed
116

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
117
if you have regexps, otherwise set quotestr ">\ ".  Note that '\\t'
118
above stands for a literal Tab character.
Jordi Mallach's avatar
Jordi Mallach committed
119
.TP
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
120
121
122
123
124
\fBset/unset rebinddelete\fP
Interpret the Delete key differently so that both Backspace and Delete
work properly.  You should only need to use this option if Backspace
acts like Delete on your system.
.TP
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
125
126
127
128
129
130
131
\fBset/unset smarthome\fP
Make the Home key smarter.  When Home is pressed anywhere but at the
very beginning of non-whitespace characters on a line, the cursor will
jump to that beginning (either forwards or backwards).  If the cursor is
already at that position, it will jump to the true beginning of the
line.
.TP
Jordi Mallach's avatar
Jordi Mallach committed
132
133
134
\fBset/unset smooth\fP
Use smooth scrolling by default.
.TP
135
\fBset speller \fIspellprog\fP\fP
Jordi Mallach's avatar
Jordi Mallach committed
136
137
Use spelling checker \fIspellprog\fP instead of the built-in one, which
calls \fIspell\fP.
Jordi Mallach's avatar
Jordi Mallach committed
138
139
.TP
\fBset/unset suspend\fP
140
Allow nano to be suspended.
Jordi Mallach's avatar
Jordi Mallach committed
141
.TP
142
\fBset tabsize \fIn\fP\fP
143
144
Use a tab size of \fIn\fP columns instead of the default (8); must be
greater than 0.
Jordi Mallach's avatar
Jordi Mallach committed
145
.TP
146
147
148
\fBset/unset tabstospaces\fP
Convert typed tabs to spaces.
.TP
Jordi Mallach's avatar
Jordi Mallach committed
149
150
151
152
153
154
\fBset/unset tempfile\fP
Save automatically on exit, don't prompt.
.TP
\fBset/unset view\fP
Disallow file modification.
.TP
155
156
\fBset whitespace "\fIstring\fP"\fP
Set the two characters used to display the first characters of tabs and
157
spaces.  They must be single-column characters.
158
.TP
159
.B syntax "\fIstr\fP" ["\fIfileregex\fP" ... ]
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
160
161
162
163
Defines a syntax named \fIstr\fP which can be activated via the \fB-Y\fP
flag, or will be automatically activated if the current filename matches
\fIfileregex\fP.  All following \fBcolor\fP statements will apply to
\fIsyntax\fP until a new syntax is defined.
164
.TP
165
.B color \fIfgcolor\fP,\fIbgcolor\fP "\fIregex\fP" ...
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
166
For the currently defined syntax, display all expressions matching
167
168
169
170
171
172
173
174
175
\fIregex\fP with foreground color \fIfgcolor\fP and background color
\fIbgcolor\fP, at least one of which must be specified.  Legal colors
for foreground and background color are: white, black, red, blue, green,
yellow, magenta, and cyan.  You may use the prefix "bright" to force a
stronger color highlight for the foreground.  If your terminal supports
transparency, not specifying a \fIbgcolor\fP tells \fBnano\fP to attempt
to use a transparent background.
.TP
.B color \fIfgcolor\fP,\fIbgcolor\fP start="\fIsr\fP" end="\fIer\fP"
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
176
Display expressions which start with \fIsr\fP and end with \fIer\fP
177
178
179
180
181
with foreground color \fIfgcolor\fP and background color \fIbgcolor\fP,
at least one of which must be specified.  This allows syntax
highlighting to span multiple lines.  Note that all subsequent instances
of \fIsr\fP after an initial \fIsr\fP is found will be highlighted until
the first instance of \fIer\fP.
182
\fI
Jordi Mallach's avatar
Jordi Mallach committed
183

184
185
.SH FILES
.TP
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
186
.I SYSCONFDIR/nanorc
187
188
System-wide configuration file
.TP
189
.I ~/.nanorc
190
Per-user configuration file
Jordi Mallach's avatar
Jordi Mallach committed
191
192
193
194
195
.SH SEE ALSO
.PD 0
.TP
\fBnano\fP(1)
.PP
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
196
\fI/usr/share/doc/nano/examples/nanorc.sample\fP (or equivalent on your
197
system)
Jordi Mallach's avatar
Jordi Mallach committed
198
.SH AUTHOR
199
200
201
202
203
Chris Allegretta <chrisa@asty.org>, et al (see
.I AUTHORS
and
.I THANKS
for details).
Jordi Mallach's avatar
Jordi Mallach committed
204
This manual page was written by Jordi Mallach <jordi@gnu.org>.