nanorc - GNU nano's rcfile
This manual page briefly documents GNU nano's rcfile.
nano is a small, free and friendly editor which aims to replace Pico, the default editor included in the non-free Pine package. Rather than just copying Pico's look and feel, nano also implements some missing (or disabled by default) features in Pico, such as "search and replace" and "go to line and column number".
The nanorc file contains the default settings for nano. It should not be in DOS or Mac format. During startup,
~ will first read its system-wide settings from SYSCONFDIR/nanorc, and then user-specific settings from
/.nanorc.
The configuration file accepts a series of set and unset commands, which can be used to configure nano on startup without using the command line options. Additionally, the syntax, color, and icolor keywords are used to define syntax highlighting rules for different text patterns. nano will read one command per line.
Options in nanorc files take precedence over nano's defaults, and command line options override nanorc settings. Also, options are unset by default, except for those that take arguments.
Quotes inside string parameters don't have to be escaped with backslashes. The last double quote in the string will be treated as its end. For example, for the brackets option, ""')>]}" will match ", ', ), >, ], and }.
The supported commands and arguments are:
Use auto-indentation.
Create backup files in filename~.
set backupdir directory
Set the directory where nano puts unique backup files if file backups are enabled.
Do backwards searches by default.
Use bold text instead of reverse video text.
set brackets string
Set the characters treated as closing brackets when justifying paragraphs. They cannot contain blank charac-
ters. Only closing punctuation, optionally followed by closing brackets, can end sentences. The default value
is ""')>]}".
Do case sensitive searches by default.
Constantly display the cursor position in the status bar.
Use cut to end of line by default.
set fill n
Wrap lines at column number n. If n is 0 or less, the maximum line length will be the screen width less n
columns. The default value is -8.
Enable ~/.nano_history for saving and reading search/replace strings.
set matchbrackets string
Set the opening and closing brackets that can be found by bracket searches. They cannot contain blank char-
acters. The former set must come before the latter set, and both must be in the same order. The default value
is "(<[{)>]}".
Use the blank line below the titlebar as extra editing space.
Enable mouse support, if available for your system. When enabled, mouse clicks can be used to place the cur-
sor, set the mark (with a double click), and execute shortcuts. The mouse will work in the X Window System,
and on the console when gpm is running.
Allow inserting files into their own buffers.
Don't convert files from DOS/Mac format.
Don't follow symlinks when writing files.
Don't display the help lists at the bottom of the screen.
Don't add newlines to the ends of files.
Don't wrap text at all.
set operatingdir directory
nano will only read and write files inside directory and its subdirectories. Also, the current directory is
changed to here, so files are inserted from this diractory. By default, the operating directory feature is turned
off.
Preserve the XON and XOFF keys (^Q and ^S).
set punct string
Set the characters treated as closing punctuation when justifying paragraphs. They cannot contain blank char-
acters. Only closing punctuation, optionally followed by closing brackets, can end sentences. The default
value is "!.?".
nano will not report errors in the nanorc file and ask them to be acknowledged by pressing enter at startup. If
this is used it should be placed at the top of the file to be fully effective.
Do quick statusbar blanking. Statusbar messages will disappear after 1 keystroke instead of 25.
set quotestr string
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 "^([ \t]*[#:>\|}])+" if you have extended
regular expression support, or "> " otherwise. Note that '\t' stands for a literal Tab character.
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.
Interpret the numeric keypad keys so that they all work properly. You should only need to use this option if
they don't, as mouse support won't work properly with this option enabled.
Do extended regular expression searches by default.
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.
Use smooth scrolling by default.
Enable soft line wrapping for easier viewing of very long lones.
set speller spellprog
Use spelling checker spellprog instead of the built-in one, which calls spell.
Allow nano to be suspended.
set tabsize n
Use a tab size of n columns. The value of n must be greater than 0. The default value is 8.
Convert typed tabs to spaces.
Save automatically on exit, don't prompt.
Enable experimental generic-purpose undo code.
Disallow file modification.
Enable soft line wrapping for easier viewing of very long lones.
set whitespace string
Set the two characters used to display the first characters of tabs and spaces. They must be single-column
characters.
Detect word boundaries more accurately by treating punctuation characters as parts of words.
syntax str ["fileregex" ... ]
Defines a syntax named str which can be activated via the -Y/--syntax command line option, or will be auto-
matically activated if the current filename matches the extended regular expression fileregex. All following
color and icolor statements will apply to syntax until a new syntax is defined.
The none syntax is reserved; specifying it on the command line is the same as not having a syntax at all. The
default syntax is special: it takes no fileregex, and applies to files that don't match any other syntax's fileregex. color fgcolor,bgcolor regex ...
For the currently defined syntax, display all expressions matching the extended regular expression regex with
foreground color fgcolor and background color bgcolor, 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 trans-
parency, not specifying a bgcolor tells nano to attempt to use a transparent background.
icolor fgcolor,bgcolor regex ...
Same as above, except that the expression matching is case insensitive.
color fgcolor,bgcolor start="sr" end="er"
Display expressions which start with the extended regular expression sr and end with the extended regular
expression er with foreground color fgcolor and background color bgcolor, at least one of which must be speci-
fied. This allows syntax highlighting to span multiple lines. Note that all subsequent instances of sr after an ini-
tial sr is found will be highlighted until the first instance of er.
icolor fgcolor,bgcolor start="sr" end="er"
Same as above, except that the expression matching is case insensitive.
include syntaxfile
Read in self-contained color syntaxes from syntaxfile. Note that syntaxfile can only contain syntax, color,
and icolor commands.
Key bindings may be reassigned via the following commands:
bind key function menu
Rebinds the key key to a new function named function in the context of menu menu. The |
^ |
followed by an alpha character or the word "Space". Example: ^C |
||
M- F |
followed by a printable character or the word "Space". Example: M-C followed by a numeric value from 1 to 16. Example: F10 |
Valid function names to be bound include:
Invoke the help menu.
Cancel the current command.
Exit from the program.
Write the current buffer to disk.
Justify the current text.
Insert a file into the current buffer (or into a new buffer when multibuffer is enabled).
Search for text in the current buffer.
Repeat the last search command.
Move up in the editor or browser.
Move down in the editor or browser.
Move left in the editor or browser.
Move right in the editor or browser.
Cut the current line of text and store it.
Copy the currently stored text into the current buffer position.
Show the current line, column, word positions in the file.
Move to the first line of the file.
Move to the last line of the file.
Move to a specific line (and column if specified).
Interactively replace text within the current buffer.
Begin selecting text for cutting or pasting at the current position.
Copy the currently marked text without deleting it.
Indent the currently marked text (shift to the right).
Un-indent the currently marked text (shift to the left).
Move the cursor to the beginning of the next word.
Move the cursor to the beginning of the previous word.
Move the cursor to the beginning of the current line.
Move the cursor to the end of the current line.
Move the cursor to the beginning of the current paragraph.
Move the cursor to the end of the current paragraph.
Move the cursor to the matching bracket (brace, parenthesis, etc.) of the one under the cursor.
Scroll up one line of text from the current position.
Scroll down one line of text from the current position.
Switch to editing/viewing the previous buffer when using multibuffer mode.
Switch to editing/viewing the next buffer when using multibuffer mode.
Insert the next character verbatim into the file.
Insert a tab at the current cursor location.
Insert a new line below the current one.
Delete the character under the cursor.
Justify the entire current file.
Count the number of words in the current buffer.
Refresh the screen.
Undo the text action peformed (add text, delete text, etc).
Redo the last undone action (i.e., undo an undo).
Suspend the editor (if the suspend function is enabled, see the "suspendenable" entry below).
Toggle case sensitivity in searching (search/replace menus only).
Toggle whether searching/replacing is based on literal strings or regular expressions.
Show the previous history entry in the prompt menus (e.g. search).
Show the next history entry in the prompt menus (e.g. search).
Switch back to searching instead of replacing.
Search for files matching a string in the file browser (reading or writing files).
When writing a file, switch to writing a DOS format (CR/LF).
When writing a file, switch to writing a Mac format.
When writing a file, append to the end instead of overwriting.
When writing a file, 'prepend' (write at the beginning) instead of overwriting.
When writing a file, create a backup of the current file.
Move to the first file when using the file browser (reading or writing files).
Move to the last file when using the file browser (reading or writing files).
Toggle showing/hiding the two-line list of key bindings at the bottom of the screen.
Constantly display the current line, column, word positions.
Toggle showing/hiding the blank line which 'separates' the 'title' from the file text.
Toggle smooth scrolling when moving via the arrow keys.
Toggle whether whitespace is shown.
Toggle whether the smart home key function is enabled.
Toggle whether new lines will contain the same amount of whitespace as the line above.
Toggle whether cutting text will cut the whole line or just from the current cursor position to the end of the line.
Toggle whether long lines will be wrapped to the next line.
Toggle whether the suspend sequence (normally ^Z) will suspend the editor window.
Valid menu sections are:
The main editor window where text is entered.
The search menu (AKA whereis).
The 'search to replace' menu.
The 'replace with' menu, which comes up after 'search to replace'.
The 'goto line (and column)' menu.
The 'write file' menu.
The 'insert file' menu.
The menu for inserting output from an external comman, reached from the insert menu.
The help menu.
The interactive spell checker Yes/no menu.
The file browser for inserting or writing a file.
The 'search for a file' menu in the file browser.
The 'go to directory' menu.
A special name meaning: apply to all menus where this function exists.
unbind key menu
Unbind the key key from the menu named menu or from all menus by using all. Same key syntax as for bind-
ing. Rebinds the key key to a new function named function in the context of menu menu. The format of key
should be one of:
SYSCONFDIR/nanorc
System-wide configuration file |
|||
~ |
|||
/.nanorc |
Per-user configuration file |
nano(1)
PREFIX/share/examples/nano/nanorc.sample
Chris Allegretta <chrisa@asty.org>, et al (see AUTHORS and THANKS for details). This manual page was origi- nally written by Jordi Mallach <jordi@gnu.org>, for the Debian system (but may be used by others).