nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 4a9b97b101561df4865be8f1b590d78377461772
parent 28b4bd79323051d45437b73e5dd257dcdddba147
Author: Benno Schulenberg <bensberg@justemail.net>
Date:   Tue,  5 Apr 2016 15:42:58 +0200

help: only speak of Control and Meta sequences

Don't call the latter ones Escape sequences, because both Control
and Meta sequences can be entered using the Escape key.

Diffstat:
Msrc/help.c | 14++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/src/help.c b/src/help.c @@ -336,14 +336,12 @@ void help_init(void) "the third line from the bottom and shows important " "messages. "); htx[1] = N_("The bottom two lines show the most commonly used " - "shortcuts in the editor.\n\n The notation for " - "shortcuts is as follows: Control-key sequences are " - "notated with a caret (^) symbol and can be entered " - "either by using the Control (Ctrl) key or pressing " - "the Escape (Esc) key twice. Escape-key sequences are " - "notated with the Meta (M-) symbol and can be entered " - "using either the Esc, Alt, or Meta key depending on " - "your keyboard setup. "); + "shortcuts in the editor.\n\n Shortcuts are written as " + "follows: Control-key sequences are notated with a '^' " + "and can be entered either by using the Ctrl key or " + "pressing the Esc key twice. Meta-key sequences are " + "notated with 'M-' and can be entered using either the " + "Alt, Cmd, or Esc key, depending on your keyboard setup. "); htx[2] = N_("Also, pressing Esc twice and then typing a " "three-digit decimal number from 000 to 255 will enter " "the character with the corresponding value. The "