nano

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

commit 1a926d79c5cbe0b6db39b6179f457949ddde68a6
parent c79fe1a1602bcc2a17bbbe3e24ec952cde498cb4
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Mon, 19 Feb 2018 20:35:47 +0100

help: mention that some keys work on a region when the mark is on

This fixes https://savannah.gnu.org/bugs/?53188.
Reported-by: Ken Tyler <kent@werple.net.au>

Diffstat:
Msrc/global.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/global.c b/src/global.c @@ -529,7 +529,7 @@ void shortcut_init(void) #endif ; const char *writeout_gist = - N_("Write the current file to disk"); + N_("Write the current buffer (or the marked region) to disk"); const char *readfile_gist = N_("Insert another file into the current one"); const char *whereis_gist = @@ -549,7 +549,7 @@ void shortcut_init(void) const char *prevpage_gist = N_("Go one screenful up"); const char *nextpage_gist = N_("Go one screenful down"); const char *cut_gist = - N_("Cut the current line and store it in the cutbuffer"); + N_("Cut current line (or marked region) and store it in cutbuffer"); const char *uncut_gist = N_("Uncut from the cutbuffer into the current line"); const char *cursorpos_gist = N_("Display the position of the cursor"); @@ -562,7 +562,7 @@ void shortcut_init(void) #ifndef NANO_TINY const char *mark_gist = N_("Mark text starting from the cursor position"); const char *copy_gist = - N_("Copy the current line and store it in the cutbuffer"); + N_("Copy current line (or marked region) and store it in cutbuffer"); const char *indent_gist = N_("Indent the current line (or marked lines)"); const char *unindent_gist = N_("Unindent the current line (or marked lines)"); const char *undo_gist = N_("Undo the last operation");