mirror of git://git.sv.gnu.org/nano.git
GNU nano 1.1.9 release
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1211 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
193d77527b
commit
8b75a78f6f
|
@ -1,4 +1,4 @@
|
|||
CVS code -
|
||||
GNU nano 1.1.9 - 05/12/2002
|
||||
- General:
|
||||
- Typos n misspellings all over the place (David Benbennick).
|
||||
- Allow --tiny and --multibuffer to cooperate (who the heck
|
||||
|
|
14
NEWS
14
NEWS
|
@ -1,3 +1,17 @@
|
|||
05/12/2002 - GNU nano 1.1.9 is released, happy Mother's Day! This release
|
||||
includes many new features, including a prepend mode
|
||||
(^O,M-P), a new "syntax" command in the .nanorc to allow
|
||||
multiple syntax highlighting types, and a new -Y, --syntax
|
||||
flag to set a specific one if there's no filename regex to
|
||||
match it against (i.e. w/mutt). The ^space and M-space keys
|
||||
will now show up in the help menu, which itself has been
|
||||
tweaked a bit, and many more configure options should now
|
||||
cooperate (like the odd pairing of --enable-tiny and
|
||||
--enable-multibuffer). The marker should now work
|
||||
when using multiple buffers, and the huge memory leak in
|
||||
color syntax highlighting has been fixed. A lot of
|
||||
new stuff for everyone's favorite text editor ;) Have fun!
|
||||
|
||||
03/30/2002 - GNU nano 1.1.8 is released. New features include an
|
||||
"Insert Output of External Command", ^R^X, and a .spec
|
||||
file is now included in the distribution. There are
|
||||
|
|
|
@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script.
|
|||
AC_INIT
|
||||
AC_CONFIG_SRCDIR([nano.c])
|
||||
AC_PREREQ(2.52)
|
||||
AM_INIT_AUTOMAKE(nano, 1.1.8-cvs)
|
||||
AM_INIT_AUTOMAKE(nano, 1.1.9)
|
||||
AM_CONFIG_HEADER(config.h:config.h.in)
|
||||
AM_ACLOCAL_INCLUDE(m4)
|
||||
ALL_LINGUAS="es de fr it id fi hu ca cs gl uk ru sv nn nl da pl nb"
|
||||
|
|
6
faq.html
6
faq.html
|
@ -203,7 +203,7 @@ nano was developed).</font></blockquote>
|
|||
of nano?</font></h2>
|
||||
|
||||
<blockquote><font color="#330000">The current version of nano *should*
|
||||
be 1.1.8. Of course you should always check the nano homepage to
|
||||
be 1.1.9. Of course you should always check the nano homepage to
|
||||
see what the latest and greatest version is.</font></blockquote>
|
||||
|
||||
<h2>
|
||||
|
@ -394,7 +394,7 @@ try:
|
|||
3.7. Tell me more about this multibuffer stuff!</font></h2>
|
||||
|
||||
<blockquote><font color="#330000"> To use multiple file buffers, you must
|
||||
be using nano 1.1.8 or newer, and you must have configured nano with
|
||||
be using nano 1.1.9 or newer, and you must have configured nano with
|
||||
<b>--enable-multibuffer</b> or <b>--enable-extra</b> (use nano -V to check).
|
||||
Then when you want to enable inserting a file into its own buffer instead of
|
||||
into the current file, just hit <b>Meta-F</b>, then insert the file as normal
|
||||
|
@ -414,7 +414,7 @@ buffer is open.
|
|||
|
||||
<blockquote><font color="#330000"> It's not hard at all! But, your version
|
||||
of nano must have beem compiled with <b>--enable-nanorc</b>, and again must
|
||||
be version 1.1.8 or newer (use nano -V to check your version and compiled
|
||||
be version 1.1.9 or newer (use nano -V to check your version and compiled
|
||||
features). Then simply copy the <b>nanorc.sample</b>
|
||||
that came with the nano source or your nano package (most likely in
|
||||
/usr/doc/nano) to .nanorc in your home directory. If you didn't get one,
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
@c Run `makeinfo' rather than `texinfo-format-buffer'.
|
||||
@smallbook
|
||||
@set EDITION 0.1
|
||||
@set VERSION 1.1.8
|
||||
@set VERSION 1.1.9
|
||||
@set UPDATED 4 Jan 2002
|
||||
|
||||
@dircategory Editors
|
||||
|
@ -23,7 +23,7 @@
|
|||
@titlepage
|
||||
@title GNU @code{nano}
|
||||
@subtitle a small and friendly text editor.
|
||||
@subtitle version 1.1.8
|
||||
@subtitle version 1.1.9
|
||||
|
||||
@author Chris Allegretta
|
||||
@page
|
||||
|
|
|
@ -90,7 +90,7 @@
|
|||
# color brightred "float " "char " "int " "void " "NULL" "[A-Z_]\{2,\}"
|
||||
# color brightred "static" "const" "[\ ]struct" "^struct" "if " "while[\ \n\(]"
|
||||
# color brightred "do[\ \n\(]" "else[\ \n]" "case " "switch " "break;"
|
||||
# color brightcyan "#define" "#include" "#ifn*def" "#endif" "#elif" "#else"
|
||||
# color brightcyan "#define" "#include" "#ifn*def" "#endif" "#elif" "#else" "#if "
|
||||
|
||||
# You will in general want your comments and strings to come last, becase
|
||||
# syntax highlighting rules will be applied in the order they are read in
|
||||
|
|
Loading…
Reference in New Issue