Example: M-C
.TP
.B F
-followed by a numeric value from 1-16
+followed by a numeric value from 1 to 16.
Example: F10
.TP
Valid function names to be bound include:
Justify the current text.
.TP
.B insert
-Insert a file into the current buffer (or a new buffer with multi-buffer enbled).
+Insert a file into the current buffer (or into a new buffer when multibuffer
+is enabled).
.TP
.B whereis
-Search for text in the program.
+Search for text in the current buffer.
.TP
.B searchagain
-Repat the last search command.
+Repeat the last search command.
.TP
.B up
Move up in the editor or browser.
Cut the current line of text and store it.
.TP
.B uncut
-Copy the currently stored text into the current file location.
+Copy the currently stored text into the current buffer position.
.TP
.B curpos
Show the current line, column, word positions in the file.
.TP
.B firstline
-Move to the first line of the file
+Move to the first line of the file.
.TP
.B lastline
Move to the last line of the file.
Move to a specific line (and column if specified).
.TP
.B replace
-Interactively replace text within the editor.
+Interactively replace text within the current buffer.
.TP
.B mark
Begin selecting text for cutting or pasting at the current position.
Move the cursor to the end of the current line.
.TP
.B beginpara
-Move the cursor to the beginning of the current paragraph
+Move the cursor to the beginning of the current paragraph.
.TP
.B endpara
-Move the cursor to the beginning of the current paragraph.
+Move the cursor to the end of the current paragraph.
.TP
.B findbracket
-Move the cursor to the matching bracket (brace, etc) of the one under the cursor.
+Move the cursor to the matching bracket (brace, parenthesis, etc.) of the one
+under the cursor.
.TP
.B scrollup
Scroll up one line of text from the current position.
Count the number of words in the current buffer.
.TP
.B refresh
-Refresh the screen
+Refresh the screen.
.TP
.B suspend
-Suspend the editor (if the suspend functino is enabled, see the
-"suspendenable" entry below.
+Suspend the editor (if the suspend function is enabled, see the
+"suspendenable" entry below).
.TP
.B casesens
Toggle case sensitivity in searching (search/replace menus only).
.TP
.B regexp
-Toggle whether searches/replaces are based on literal strings or regular expressions.
+Toggle whether searching/replacing is based on literal strings or regular expressions.
.TP
.B prevhistory
Show the previous history entry in the prompt menus (e.g. search).
Switch back to searching instead of replacing.
.TP
.B gototext
-Search for files matching a string in the file browser (reading or writing files)
+Search for files matching a string in the file browser (reading or writing files).
.TP
.B dosformat
When writing a file, switch to writing a DOS format (CR/LF).
Move to the last file when using the file browser (reading or writing files).
.TP
.B nohelp
-Toggle showing/hiding the two line list of key bindings at the bottom of the screen.
+Toggle showing/hiding the two-line list of key bindings at the bottom of the screen.
.TP
.B constupdate
-Constantly display the current line, column, etc position.
+Constantly display the current line, column, word positions.
.TP
.B morespace
-Toggle showing/hiding the blank space which 'seperates' the 'title' from the file text.
+Toggle showing/hiding the blank line which 'separates' the 'title' from the file text.
.TP
.B smoothscroll
Toggle smooth scrolling when moving via the arrow keys.
.TP
-.B whitesplacedisplay
+.B whitespacedisplay
+Toggle whether whitespace is shown.
.TP
.B smarthome
Toggle whether the smart home key function is enabled.
.TP
.B autoindent
-Toggle whether new lines will conain the same amount of whitespace as the line above.
+Toggle whether new lines will contain the same amount of whitespace as the line above.
.TP
.B cuttoend
-Toggle whether cutting text will cut the whole line or just from the current cursor.
-position to the end of the line
+Toggle whether cutting text will cut the whole line or just from the current cursor
+position to the end of the line.
.TP
.B nowrap
Toggle whether long lines will be wrapped to the next line.
The 'search for a file' menu in the file browser.
.TP
.B gotodir
-The 'go to directory' menu
+The 'go to directory' menu.
.TP
.B all
-Special name meaning apply to all menus where this function exists.
+A special name meaning: apply to all menus where this function exists.
.SH FILES
.TP
.I SYSCONFDIR/nanorc
s->seq = 0;
else if (s->type == META && (!strcasecmp(&s->keystr[2], "space")))
s->seq = (int) ' ';
- /* Note to translators: these strings are internal sentinel values,
- and aren't presented to the user. Don't translate them */
else if (s->type == RAW && (!strcasecmp(s->keystr, "kup")))
s->seq = KEY_UP;
else if (s->type == RAW && (!strcasecmp(s->keystr, "kdown")))
const char *to_files_msg = "";
const char *first_file_msg = "";
const char *whereis_next_msg = "";
-/* TRANSLATORS: Try to keep this at most 12 characters. */
const char *last_file_msg = "";
const char *new_buffer_msg = "";
const char *goto_dir_msg;
const char *ext_cmd_msg = "";
#else
-/* TRANSLATORS: Try to keep this and previous strings at most 10
+/* TRANSLATORS: Try to keep the following five strings at most 10
* characters. */
const char *prev_history_msg = N_("PrevHstory");
const char *next_history_msg = N_("NextHstory");
const char *prepend_msg = N_("Prepend");
/* TRANSLATORS: Try to keep this at most 16 characters. */
const char *backup_file_msg = N_("Backup File");
+/* TRANSLATORS: Try to keep this at most 16 characters. */
const char *ext_cmd_msg = N_("Execute Command");
#ifdef ENABLE_MULTIBUFFER
const char *whereis_msg = N_("Where Is");
const char *prev_page_msg = N_("Prev Page");
const char *next_page_msg = N_("Next Page");
- /* TRANSLATORS: Try to keep this string at most 10 characters. */
-
- /* TRANSLATORS: Try to keep this and following strings at most 10
- * characters. */
const char *first_line_msg = N_("First Line");
const char *last_line_msg = N_("Last Line");
const char *suspend_msg = N_("Suspend");
#endif
const char *refresh_msg = N_("Refresh");
const char *insert_file_msg = N_("Insert File");
+ /* TRANSLATORS: Try to keep this and previous strings at most 10
+ * characters. */
const char *go_to_line_msg = N_("Go To Line");
#ifndef DISABLE_HELP
s->scfunc = (void *) do_toggle;
s->execute = FALSE;
s->toggle = SMOOTH_SCROLL;
- } else if (!strcasecmp(input, "whitesplacedisplay")) {
+ } else if (!strcasecmp(input, "whitespacedisplay")) {
s->scfunc = (void *) do_toggle;
s->execute = FALSE;
s->toggle = WHITESPACE_DISPLAY;