From 7dd5484cb554cd6c09d3d9a407c3e7c16f74a162 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Fri, 18 Sep 2020 15:32:09 +0200 Subject: [PATCH] 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. --- src/help.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/help.c b/src/help.c index 5b70e56f..ecb549fb 100644 --- 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