nano

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

commit 445cd2a6c52afa65991f9e9d946c7a76c5f89b03
parent fb073ec88d9fe2fa73cb4d6220f52904c74e2132
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Tue, 28 Jan 2020 10:01:02 +0100

usage: improve the description of --restricted and --quickblank

Give a little more information than just a rehash of the long option.

Diffstat:
Msrc/nano.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/nano.c b/src/nano.c @@ -598,10 +598,10 @@ void usage(void) N_("Regular expression to match quoting")); #endif if (!ISSET(RESTRICTED)) - print_opt("-R", "--restricted", N_("Restricted mode")); + print_opt("-R", "--restricted", N_("Restrict access to the filesystem")); print_opt(_("-T <#cols>"), _("--tabsize=<#cols>"), N_("Set width of a tab to #cols columns")); - print_opt("-U", "--quickblank", N_("Do quick statusbar blanking")); + print_opt("-U", "--quickblank", N_("Wipe status bar upon next keystroke")); print_opt("-V", "--version", N_("Print version information and exit")); #ifndef NANO_TINY print_opt("-W", "--wordbounds",