]> git.wh0rd.org Git - nano.git/commitdiff
Putting the movement keys in the help viewer in the order of increasing stride.
authorBenno Schulenberg <bensberg@justemail.net>
Tue, 22 Apr 2014 10:02:55 +0000 (10:02 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Tue, 22 Apr 2014 10:02:55 +0000 (10:02 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4800 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/global.c

index 8a4f7c1494759956be1ec4d6d16d80774a2d99e1..2de2fa1d656424ae9d60f12860fc934f059afee1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-04-22  Benno Schulenberg  <bensberg@justemail.net>
+       * src/global.c (shortcut_init): Put the movement keys in the
+       help viewer in the order of increasing stride.
+
 2014-04-21  Benno Schulenberg  <bensberg@justemail.net>
        * doc/syntax/nanorc.nanorc: There is no F0 key.
        * src/global.c (first_sc_for): Adjust two comments -- the help
index 2e47d4cb5c45fe82042a6bc228ab22e0a901c174..8bb1eb38f5bdb01ba5f749d0b0706eef3cad11be 100644 (file)
@@ -545,6 +545,8 @@ void shortcut_init(void)
     const char *get_help_msg = N_("Get Help");
     const char *exit_msg = N_("Exit");
     const char *whereis_msg = N_("Where Is");
+    const char *prev_line_tag = N_("Prev Line");
+    const char *next_line_tag = N_("Next Line");
     const char *prev_page_msg = N_("Prev Page");
     const char *next_page_msg = N_("Next Page");
     const char *first_line_msg = N_("First Line");
@@ -788,9 +790,14 @@ void shortcut_init(void)
 #endif
 
 #ifndef DISABLE_HELP
-    add_to_funcs(do_exit, MHELP, exit_msg, nano_exit_msg, FALSE, VIEW);
+    /* The description ("x") and blank_after (0) are irrelevant,
+     * because the help viewer does not have a help text. */
+    add_to_funcs(do_exit, MHELP, exit_msg, "x", 0, VIEW);
 
-    add_to_funcs(total_refresh, MHELP, refresh_msg, nano_refresh_msg, FALSE, VIEW);
+    add_to_funcs(total_refresh, MHELP, refresh_msg, "x", 0, VIEW);
+
+    add_to_funcs(do_up_void, MHELP, prev_line_tag, "x", 0, VIEW);
+    add_to_funcs(do_down_void, MHELP, next_line_tag, "x" , 0, VIEW);
 #endif
 
     add_to_funcs(do_page_up, MMAIN|MHELP|MBROWSER,
@@ -905,9 +912,9 @@ void shortcut_init(void)
        IFSCHELP(nano_nextword_msg), FALSE, VIEW);
 #endif
 
-    add_to_funcs(do_up_void, (MMAIN|MHELP|MBROWSER), N_("Prev Line"),
+    add_to_funcs(do_up_void, (MMAIN|MBROWSER), prev_line_tag,
        IFSCHELP(nano_prevline_msg), FALSE, VIEW);
-    add_to_funcs(do_down_void, (MMAIN|MHELP|MBROWSER), N_("Next Line"),
+    add_to_funcs(do_down_void, (MMAIN|MBROWSER), next_line_tag,
        IFSCHELP(nano_nextline_msg), TRUE, VIEW);
 
     add_to_funcs(do_home, MMAIN, N_("Home"), IFSCHELP(nano_home_msg),