From: David Lawrence Ramsey Date: Sun, 21 Nov 2004 18:51:30 +0000 (+0000) Subject: documentation fix: list sh as an example of a Bourne shell X-Git-Tag: v1.3.5~4 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=e56d936bd410a2c6c864213e008d8929459a87cf;p=nano.git documentation fix: list sh as an example of a Bourne shell git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2116 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/ChangeLog b/ChangeLog index 6fc508bf..75d161bc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -398,6 +398,7 @@ CVS code - versions of the manpages. (DLR) - Update the given cvs commands so that they work again, and mention the need for ssh to do cvs checkouts. (DLR) + - List sh as an example of a Bourne shell. (DLR) - faq.html: - Fixed inaccuracy: Pico compatibility mode was made the default in nano 1.1.99pre1, not 1.2.2. (DLR) diff --git a/README.CVS b/README.CVS index eba0c6a5..1662f5bf 100644 --- a/README.CVS +++ b/README.CVS @@ -20,7 +20,7 @@ packages: These should be available on your GNU mirror. First, you need to set up cvs to download the CVS tree using ssh. If -you're using a Bourne shell (e.g. bash), do +you're using a Bourne shell (e.g. bash or sh), do $ export CVS_RSH=ssh If you're using a C shell (e.g. tcsh or csh), do $ setenv CVS_RSH ssh diff --git a/doc/faq.html b/doc/faq.html index 26c0b73b..05f84fa4 100644 --- a/doc/faq.html +++ b/doc/faq.html @@ -174,7 +174,7 @@

4. Running

4.1. Ack! My backspace/delete/enter/double bucky/meta key doesn't seem to work! What can I do?

Try setting your $TERM variable to 'vt100'. Nano doesn't yet support every term entry under the sun.

-

Bourne shell users (like bash): export TERM=vt100
+

Bourne shell users (bash and sh): export TERM=vt100
C Shell users (tcsh and csh): setenv TERM vt100

4.2. How do I type the F13-F16 keys shown in the help browser? My keyboard only has F1-F12!

It depends on the terminal type you're using. On some terminals, such as the FreeBSD console, xterm, konsole, and gnome-terminal, Shift-F1 to Shift-F4 will generate F13 to F16. On other terminals, such as the Linux console, rxvt, or Eterm, Shift-F3 to Shift-F6 will generate F13 to F16.

@@ -245,6 +245,7 @@

8. ChangeLog

+2004/11/21 - List sh as an example of a Bourne shell. (DLR) 2004/11/05 - Fixed inaccuracy: Pico compatibility mode was made the default in nano 1.1.99pre1, not 1.2.2. Also added question about how to type F13-F16 on terminals lacking keys past F12 (suggested by Chris), question about how to select text for the clipboard in X terminals with nano's mouse support turned on (answer found by Joseph Birthisel), and misc. fixes and link updates. (DLR)
2004/04/07 - Removed NumLock glitch question, as it's no longer needed. (DLR)
2004/01/30 - Fixed inaccuracy: multibuffer mode was first in nano 1.1.0, not 1.1.12. (DLR)