1
1

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>
Этот коммит содержится в:
Benno Schulenberg 2018-02-19 20:35:47 +01:00
родитель c79fe1a160
Коммит 1a926d79c5

Просмотреть файл

@ -529,7 +529,7 @@ void shortcut_init(void)
#endif #endif
; ;
const char *writeout_gist = 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 = const char *readfile_gist =
N_("Insert another file into the current one"); N_("Insert another file into the current one");
const char *whereis_gist = const char *whereis_gist =
@ -549,7 +549,7 @@ void shortcut_init(void)
const char *prevpage_gist = N_("Go one screenful up"); const char *prevpage_gist = N_("Go one screenful up");
const char *nextpage_gist = N_("Go one screenful down"); const char *nextpage_gist = N_("Go one screenful down");
const char *cut_gist = 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 = const char *uncut_gist =
N_("Uncut from the cutbuffer into the current line"); N_("Uncut from the cutbuffer into the current line");
const char *cursorpos_gist = N_("Display the position of the cursor"); const char *cursorpos_gist = N_("Display the position of the cursor");
@ -562,7 +562,7 @@ void shortcut_init(void)
#ifndef NANO_TINY #ifndef NANO_TINY
const char *mark_gist = N_("Mark text starting from the cursor position"); const char *mark_gist = N_("Mark text starting from the cursor position");
const char *copy_gist = 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 *indent_gist = N_("Indent the current line (or marked lines)");
const char *unindent_gist = N_("Unindent 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"); const char *undo_gist = N_("Undo the last operation");