nano-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Nano-devel] [PATCH] help: mention that some keys work on a region when


From: Benno Schulenberg
Subject: [Nano-devel] [PATCH] help: mention that some keys work on a region when the mark is on
Date: Mon, 19 Feb 2018 20:44:43 +0100

This fixes https://savannah.gnu.org/bugs/?53188.
Reported-by: Ken Tyler <address@hidden>
---
 src/global.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/global.c b/src/global.c
index 041b09c2..624d28f5 100644
--- a/src/global.c
+++ b/src/global.c
@@ -527,9 +527,9 @@ 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");
+               N_("Insert another file into current buffer (or into new 
buffer)");
        const char *whereis_gist =
                N_("Search forward for a string or a regular expression");
        const char *wherewas_gist =
@@ -547,7 +547,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");
@@ -560,7 +560,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");
-- 
2.14.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]