nano

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

commit 7dd5484cb554cd6c09d3d9a407c3e7c16f74a162
parent 37f1d43ce367c78711745f49aa39b2c5042ba8f9
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Fri, 18 Sep 2020 15:32:09 +0200

feedback: show a helpful message for ^G even when there is no help

Saying that "Help is not available" is useless.
Better say something that might help a newbie.

Diffstat:
Msrc/help.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/help.c b/src/help.c @@ -568,7 +568,7 @@ void do_help(void) show_help(); #else if (currmenu == MMAIN || currmenu == MBROWSER) - statusbar(_("Help is not available")); + statusbar(_("^W = Ctrl+W M-W = Alt+W")); else beep(); #endif