]> git.wh0rd.org Git - nano.git/commitdiff
minor faq updates
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 14 Jun 2005 02:32:37 +0000 (02:32 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 14 Jun 2005 02:32:37 +0000 (02:32 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2660 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
doc/faq.html

index bc9ffa893d0b7a6615fa35f8c6d041e034da0484..881bc9b7316390a7717d24e81b23a28886c1b505 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -265,8 +265,8 @@ CVS code -
          (DLR)
        - Check for iswpunct() and mbstowcs(). (DLR)
 - doc/faq.html:
-       - Update the question about the FAQ to mention the current
-         maintainer. (DLR)
+       - Update section 1.1 to mention the current maintainer. (DLR)
+       - Minor capitalization and wording tweaks. (DLR)
 - doc/nanorc.sample:
        - In the "nanorc" regexes, tweak the "color" regex to properly
          color a line that specifies a background color without a
index 76975475780a429a7ee8938fe7e814c74f0418fb..2d66c51cbe27d6399aa924e7f173438e4b6d78f0 100644 (file)
 <blockquote><p>To use multiple file buffers, you must be using nano 1.1.0 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 with <b>^R</b>.  If you always want files to be loaded into their own buffers, use the <b>--multibuffer</b> or <b>-F</b> flag when you invoke nano.</p>
   <p>You can move between the buffers you have open with the <b>Meta-&lt;</b> and <b>Meta-&gt;</b> keys, or more easily with <b>Meta-,</b> and <b>Meta-.</b> (clear as mud, right? =-). When you have more than one file buffer open, the ^X shortcut will say &quot;Close&quot;, instead of the normal &quot;Exit&quot; when only one buffer is open.</p></blockquote>
 <h2><a name="3.8"></a>3.8. Tell me more about this verbatim input stuff!</h2>
-<blockquote><p>To use verbatim input, you must be using nano 1.3.1 or newer. When you want to insert a literal character into the file you're editing, such as a control character that nano usually treats as a command, first press <b>Meta-V</b>. (If you're not at a prompt, you'll get the message &quot;Verbatim input&quot;.) Then press the key(s) that generate the character you want.</p>
+<blockquote><p>To use verbatim input, you must be using nano 1.3.1 or newer. When you want to insert a literal character into the file you're editing, such as a control character that nano usually treats as a command, first press <b>Meta-V</b>. (If you're not at a prompt, you'll get the message &quot;Verbatim Input&quot;.) Then press the key(s) that generate the character you want.</p>
   <p>Alternatively, you can press <b>Meta-V</b> and then type a four-digit hexadecimal code from 0000 to ffff (case-insensitive), and the character with the corresponding value will be inserted instead.</p></blockquote>
 <h2><a name="3.9"></a>3.9. How do I make a .nanorc file that nano will read when I start it?</h2>
 <blockquote><p>It's not hard at all! But, your version of nano must have been compiled with <b>--enable-nanorc</b>, and again must be version 1.1.12 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, the syntax is simple. Flags are turned on and off by using the word <b>set</b> and the getopt_long flag for the feature, for example &quot;set nowrap&quot; or &quot;set suspend&quot;.</p></blockquote>
 <h2><a name="8"></a>8. ChangeLog</h2>
 <blockquote>
 <p>
-2005/06/08 - Updated the question about the FAQ to mention the current maintainer. (DLR)
+2005/06/13 - Minor capitalization and wording fixes. (DLR)
+2005/06/08 - Updated section 1.1 to mention the current maintainer. (DLR)
 2005/03/09 - Added question about opening files with names beginning with '+'s, and added a few more miscellaneous cosmetic fixes. (DLR)<br>
 2005/01/03 - Removed now-inaccurate note about verbatim input's not working at prompts, and update its description to mention that it handles hexadecimal values now. (DLR)<br>
 2004/11/21 - Listed sh as an example of a Bourne shell. (DLR)<br>