nanorc.5.html 6.63 KB
Newer Older
1
2
3
<HTML><HEAD><TITLE>Manpage of NANORC</TITLE>
</HEAD><BODY>
<H1>NANORC</H1>
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
4
Section: File Formats (5)<BR>Updated: August 24, 2003<BR><A HREF="#index">Index</A>
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<A HREF="http://localhost/cgi-bin/man/man2html">Return to Main Contents</A><HR>



<A NAME="lbAB">&nbsp;</A>
<H2>NAME</H2>

nanorc - GNU nano's rcfile
<A NAME="lbAC">&nbsp;</A>
<H2>DESCRIPTION</H2>

This manual page documents GNU <B>nano</B>'s rcfile.
<P>

<B>nano</B> is a small, free and friendly editor which aims to replace
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
20
Pico, the default editor included in the non-free Pine package.  Rather
21
22
23
24
than just copying Pico's look and feel, <B>nano</B> also implements some
missing (or disabled by default) features in Pico, such as &quot;search and
replace&quot; and &quot;go to line number&quot;.
<P>
25

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
26
The <I>nanorc</I> file contains the default settings for <B>nano</B>.
27
During startup, <B>nano</B> will first read its system-wide settings from
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
28
<I>SYSCONFDIR/nanorc</I>,
29
30
31
32
33
34

and then user-specific settings from
<I>~/.nanorc</I>.

<P>
<A NAME="lbAD">&nbsp;</A>
35
36
37
38
<H2>OPTIONS</H2>

The configuration file accepts a series of &quot;set&quot; and &quot;unset&quot; commands,
which can be used to configure nano on startup without using the
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
39
40
41
command-line options.  Additionally, the &quot;syntax&quot; and &quot;color&quot; keywords
are used to define syntax highlighting rules for different text
patterns.  GNU nano will read one command per line.
42
<P>
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
43
44
Options in rcfiles take precedence over nano's defaults, and command
line options override rcfile settings.
45
<P>
46
47
Options are unset by default, except for options that take an argument.
<P>
48
49
50
51
52
53
The supported commands and arguments are:
<P>
<DL COMPACT>
<DT><B>set/unset autoindent</B><DD>
Use auto-indentation.
<DT><B>set/unset backup</B><DD>
54
55
56
Create backup files in
<I>filename~</I>.

57
<DT><B>set/unset const</B><DD>
58
Constantly display the cursor position in the status bar.
59
60
61
<DT><B>set/unset cut</B><DD>
Use cut to end of line with ^K by default.
<DT><B>set fill </B><I>n</I><DD>
62
63
64
65
66
67
68
Wrap lines at column number <I>n</I>.  If <I>n</I> is 0 or less, the line
length will be the screen width less <I>n</I>.  The default value is -8.
<DT><B>set/unset historylog</B><DD>
Enable
<I>~/.nano_history</I>

for saving and reading search/replace strings.
69
70
71
72
73
74
75
76
77
78
79
<DT><B>set/unset multibuffer</B><DD>
Allow inserting files into their own buffers.
<DT><B>set/unset noconvert</B><DD>
Don't convert files from DOS/Mac format.
<DT><B>set/unset nofollow</B><DD>
Don't follow symlinks when writing files.
<DT><B>set/unset nohelp</B><DD>
Don't display the help lists at the bottom of the screen.
<DT><B>set/unset nowrap</B><DD>
Don't wrap text at all.
<DT><B>set operatingdir &quot;</B><I>directory</I>&quot;<DD>
80
<B>nano</B> will only read and write files inside <I>directory</I> and its
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
81
82
83
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.
84
85
86
<DT><B>set/unset preserve</B><DD>
Preserve the XON and XOFF keys (^Q and ^S).
<DT><B>set quotestr &quot;</B><I>string</I>&quot;<DD>
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
87
88
89
The email-quote string, used to justify email-quoted paragraphs.  This
is an &quot;extended regular expression&quot; if your system supports them,
otherwise a literal string.  The default value is
90
91
92
<P>
<TT>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TT>set quotestr &quot;^([&nbsp;\t]*[|&gt;:}#])+&quot;<BR>
<P>
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
93
if you have regexps, otherwise set quotestr &quot;&gt;&nbsp;&quot;.  Note that '\t'
94
above stands for a literal Tab character.
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
95
96
97
98
<DT><B>set/unset rebinddelete</B><DD>
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.
99
100
101
102
103
<DT><B>set/unset regexp</B><DD>
Do regular expression searches by default.
<DT><B>set/unset smooth</B><DD>
Use smooth scrolling by default.
<DT><B>set speller </B><I>spellprog</I><DD>
104
105
Use spelling checker <I>spellprog</I> instead of the built-in one, which
calls <I>spell</I>.
106
107
108
<DT><B>set/unset suspend</B><DD>
Allow nano to be suspended with ^Z.
<DT><B>set tabsize </B><I>n</I><DD>
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
109
Use a tab size of <I>n</I> instead of the default (8); must be greater
110
111
112
113
114
115
116
117
than 0.
<DT><B>set/unset tempfile</B><DD>
Save automatically on exit, don't prompt.
<DT><B>set/unset view</B><DD>
Disallow file modification.
<DT><B>syntax </B><I>str</I> [<I>fileregex</I> ... ]

<DD>
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
118
119
120
121
Defines a syntax named <I>str</I> which can be activated via the <B>-Y</B>
flag, or will be automatically activated if the current filename matches
<I>fileregex</I>.  All following <B>color</B> statements will apply to
<I>syntax</I> until a new syntax is defined.
122
123
124
<DT><B>color </B><I>fgcolor</I>[,<I>bgcolor</I>] <I>regex</I> ...

<DD>
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
125
126
127
128
129
130
For the currently defined syntax, display all expressions matching
<I>regex</I> with foreground color <I>fgcolor</I> and optional background
color <I>bgcolor</I>.  Legal colors for foreground and background color
are: white, black, red, blue, green, yellow, magenta, and cyan.  You may
use the prefix &quot;bright&quot; to force a stronger color highlight.  If your
terminal supports transparency, not specifying a <I>bgcolor</I> tells
131
132
133
134
<B>nano</B> to attempt to use a transparent background.
<DT><B>color </B><I>fgcolor</I>[,<I>bgcolor</I>] start=<I>sr</I> end=<I>er</I>

<DD>
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
135
136
137
138
139
Display expressions which start with <I>sr</I> and end with <I>er</I>
with foreground color <I>fgcolor</I> and optional background color
<I>bgcolor</I>.  This allows syntax highlighting to span multiple lines.
Note that all subsequent instances of <I>sr</I> after an initial <I>sr</I>
is found will be highlighted until the first instance of <I>er</I>.
140
141
142
<I>
<P>
</DL>
143
144
145
146
</I><A NAME="lbAE">&nbsp;</A>
<H2>FILES</H2>

<DL COMPACT>
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
147
<DT><I>SYSCONFDIR/nanorc</I>
148
149
150
151
152
153
154
155
156

<DD>
System-wide configuration file
<DT><I>~/.nanorc</I>

<DD>
Per-user configuration file
</DL>
<A NAME="lbAF">&nbsp;</A>
157
158
159
160
161
162
163
164
<H2>SEE ALSO</H2>


<DL COMPACT>
<DT><B><A HREF="http://localhost/cgi-bin/man/man2html?1+nano">nano</A></B>(1)<DD>
</DL>
<P>

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
165
<I>/usr/share/doc/nano/examples/nanorc.sample</I> (or equivalent on your
166
system)
167
168
169
<A NAME="lbAG">&nbsp;</A>
<H2>AUTHOR</H2>

170
171
172
173
174
175
176
Chris Allegretta &lt;<A HREF="mailto:chrisa@asty.org">chrisa@asty.org</A>&gt;, et al (see
<I>AUTHORS</I>

and
<I>THANKS</I>

for details).
177
178
179
180
181
182
183
This manual page was written by Jordi Mallach &lt;<A HREF="mailto:jordi@gnu.org">jordi@gnu.org</A>&gt;.
<P>

<HR>
<A NAME="index">&nbsp;</A><H2>Index</H2>
<DL>
<DT><A HREF="#lbAB">NAME</A><DD>
184
185
186
<DT><A HREF="#lbAC">DESCRIPTION</A><DD>
<DT><A HREF="#lbAD">OPTIONS</A><DD>
<DT><A HREF="#lbAE">FILES</A><DD>
187
188
189
190
191
192
193
<DT><A HREF="#lbAF">SEE ALSO</A><DD>
<DT><A HREF="#lbAG">AUTHOR</A><DD>
</DL>
<HR>
This document was created by
<A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
using the manual pages.<BR>
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
194
Time: 21:17:00 GMT, August 24, 2003
195
196
</BODY>
</HTML>