mirror of
git://git.sv.gnu.org/nano.git
synced 2024-11-26 14:51:36 +03:00
in nano.texi, per Mike Frysinger's patch, add missing configure options,
so that all of them are documented git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3163 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
da0691b4ad
commit
1520350e20
@ -133,6 +133,8 @@ CVS code -
|
|||||||
when the MORE_SPACE flag is set. (DLR)
|
when the MORE_SPACE flag is set. (DLR)
|
||||||
- doc/nano.texi:
|
- doc/nano.texi:
|
||||||
- Fix inconsistent wording. (DLR)
|
- Fix inconsistent wording. (DLR)
|
||||||
|
- Add missing configure options, so that all of them are
|
||||||
|
documented. (Mike Frysinger, minor tweaks by DLR)
|
||||||
- doc/nanorc.sample:
|
- doc/nanorc.sample:
|
||||||
- Tweak the "c-file" regex for characters to properly accept
|
- Tweak the "c-file" regex for characters to properly accept
|
||||||
'\"' and reject '"' and '''. (DLR)
|
'\"' and reject '"' and '''. (DLR)
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
@smallbook
|
@smallbook
|
||||||
@set EDITION 0.1
|
@set EDITION 0.1
|
||||||
@set VERSION 1.3.9
|
@set VERSION 1.3.9
|
||||||
@set UPDATED 05 Nov 2005
|
@set UPDATED 11 Nov 2005
|
||||||
|
|
||||||
@dircategory Editors
|
@dircategory Editors
|
||||||
@direntry
|
@direntry
|
||||||
@ -492,12 +492,12 @@ familiar with compiling programs with autoconf support:
|
|||||||
@item make install
|
@item make install
|
||||||
@end itemize
|
@end itemize
|
||||||
|
|
||||||
if you are looking to optimize @code{nano} for size, you may want to
|
|
||||||
consider the following command line options:
|
|
||||||
|
|
||||||
|
|
||||||
@table @code
|
@table @code
|
||||||
|
|
||||||
|
@item --enable-debug
|
||||||
|
Enable support for runtime debug output. This can get pretty messy, so
|
||||||
|
chances are you only want this feature to work on the nano source.
|
||||||
|
|
||||||
@item --disable-tabcomp
|
@item --disable-tabcomp
|
||||||
Disable the tab completion code when reading or writing files.
|
Disable the tab completion code when reading or writing files.
|
||||||
|
|
||||||
@ -529,14 +529,43 @@ internals of the editor, like the marker code (^^) and the cut to line
|
|||||||
(-k) option, which depends on the marker code to work properly. It also
|
(-k) option, which depends on the marker code to work properly. It also
|
||||||
disables the function toggles.
|
disables the function toggles.
|
||||||
|
|
||||||
|
@item --enable-extra
|
||||||
|
Enable extra features. At the moment, this is just easter egg-type
|
||||||
|
stuff.
|
||||||
|
|
||||||
|
@item --enable-color
|
||||||
|
Enable support for syntax coloring of files. See the nanorc
|
||||||
|
documentation for more details. The nanorc feature will also be
|
||||||
|
enabled.
|
||||||
|
|
||||||
|
@item --enable-multibuffer
|
||||||
|
Enable support for opening multiple files at a time and switching
|
||||||
|
between them on the fly.
|
||||||
|
|
||||||
|
@item --enable-nanorc
|
||||||
|
Enable support for reading the nanorc file at startup. You can store
|
||||||
|
custom settings in the nanorc file rather than having to pass command
|
||||||
|
line options to get desired behavior.
|
||||||
|
|
||||||
|
@item --enable-all
|
||||||
|
Shortcut for enabling the above four features (extra, color,
|
||||||
|
multibuffer, nanorc).
|
||||||
|
|
||||||
@item --disable-wrapping
|
@item --disable-wrapping
|
||||||
Disable all word wrapping in the editor. This also eliminates the -w
|
Disable all word wrapping in the editor. This also eliminates the -w
|
||||||
command line flag, as nonwrapping is then the default behavior.
|
command line flag, as nonwrapping is then the default behavior.
|
||||||
|
|
||||||
|
@item --disable-wrapping-as-root
|
||||||
|
Disable word wrapping by default when nano is run as root.
|
||||||
|
|
||||||
@item --disable-nls
|
@item --disable-nls
|
||||||
Disables Native Language support. This will make the available GNU
|
Disables Native Language support. This will make the available GNU
|
||||||
@code{nano} translations unusable.
|
@code{nano} translations unusable.
|
||||||
|
|
||||||
|
@item --enable-utf8
|
||||||
|
Enable support for reading and writing Unicode files. This will require
|
||||||
|
either the wide version of ncurses, or a UTF-8-enabled version of Slang.
|
||||||
|
|
||||||
@item --with-slang
|
@item --with-slang
|
||||||
Compiling @code{nano} with Slang is supported, and will make the binary
|
Compiling @code{nano} with Slang is supported, and will make the binary
|
||||||
notably smaller than if compiled with ncurses or other curses libraries.
|
notably smaller than if compiled with ncurses or other curses libraries.
|
||||||
|
Loading…
Reference in New Issue
Block a user