]> git.wh0rd.org Git - nano.git/commitdiff
Adding M-\ and M-/ for First and Last Line to the help viewer.
authorBenno Schulenberg <bensberg@justemail.net>
Tue, 15 Apr 2014 19:28:11 +0000 (19:28 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Tue, 15 Apr 2014 19:28:11 +0000 (19:28 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4778 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/global.c
src/help.c

index 8b5b3b59a142be0e278ed3c0beac6852432c88a2..f19d3f3548ac871148b58a2456212c35e126eade 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,10 @@
        * src/*.c: Normalize whitespace around '==' comparison.
        * configure.ac: Check for the availability of snprintf(),
        fixes Savannah bug #42070 reported by David Lawrence Ramsey.
+       * src/global.c (shortcut_init), src/help.c (do_help): Add the
+       shortcuts M-\ and M-/ for First Line and Last Line to the help
+       viewer, instead of ^Y and ^V, which are already taken for Page
+       Up and Page Down.  Also, stop them from aborting the viewer.
 
 2014-04-14  Benno Schulenberg  <bensberg@justemail.net>
        * src/{proto.h,cut.c,nano.c,text.c}: Remove the unused parameter
index f1ae3b06de57e9d3accb73f4bba8c1cae72742c8..ca226b436239068998135d0d8d60ee8b22a4ba9f 100644 (file)
@@ -835,10 +835,10 @@ void shortcut_init(void)
 #endif
 
     add_to_funcs(do_first_line,
-       (MMAIN|MWHEREIS|MREPLACE|MREPLACE2|MGOTOLINE),
+       (MMAIN|MHELP|MWHEREIS|MREPLACE|MREPLACE2|MGOTOLINE),
        first_line_msg, IFSCHELP(nano_firstline_msg), FALSE, VIEW);
     add_to_funcs(do_last_line,
-       (MMAIN|MWHEREIS|MREPLACE|MREPLACE2|MGOTOLINE),
+       (MMAIN|MHELP|MWHEREIS|MREPLACE|MREPLACE2|MGOTOLINE),
        last_line_msg, IFSCHELP(nano_lastline_msg), TRUE, VIEW);
 
     add_to_funcs(do_gotolinecolumn_void, (MMAIN|MWHEREIS),
@@ -1179,13 +1179,13 @@ void shortcut_init(void)
     add_to_sclist(MWHEREIS|MREPLACE|MREPLACE2,
        "M-R", regexp_void, 0, FALSE);
 
-    add_to_sclist(MMAIN, "M-\\", do_first_line, 0, TRUE);
-    add_to_sclist(MMAIN, "M-|", do_first_line, 0, TRUE);
-    add_to_sclist(MMAIN, "M-/", do_last_line, 0, TRUE);
-    add_to_sclist(MMAIN, "M-?", do_last_line, 0, TRUE);
-    add_to_sclist(MWHEREIS|MREPLACE|MREPLACE2|MGOTOLINE|MHELP,
+    add_to_sclist(MMAIN|MHELP, "M-\\", do_first_line, 0, TRUE);
+    add_to_sclist(MMAIN|MHELP, "M-|", do_first_line, 0, TRUE);
+    add_to_sclist(MMAIN|MHELP, "M-/", do_last_line, 0, TRUE);
+    add_to_sclist(MMAIN|MHELP, "M-?", do_last_line, 0, TRUE);
+    add_to_sclist(MWHEREIS|MREPLACE|MREPLACE2|MGOTOLINE,
        "^Y", do_first_line, 0, TRUE);
-    add_to_sclist(MWHEREIS|MREPLACE|MREPLACE2|MGOTOLINE|MHELP,
+    add_to_sclist(MWHEREIS|MREPLACE|MREPLACE2|MGOTOLINE,
        "^V", do_last_line, 0, TRUE);
 
 #ifndef DISABLE_BROWSER
index da64350941d291f5058c4253763949d03eb6b5b8..9c170a583ad2c877a3ca3128b15fd3283d219706 100644 (file)
@@ -164,13 +164,11 @@ void do_help(void (*refresh_func)(void))
        } else if (f->scfunc == do_first_line) {
                if (meta_key)
                    line = 0;
-               break;
        } else if (f->scfunc == do_last_line) {
                if (meta_key) {
                    if (line + (editwinrows - 1) < last_line)
                        line = last_line - (editwinrows - 1);
                }
-               break;
            /* Abort the help browser. */
        } else if (f->scfunc == do_exit) {
                abort = TRUE;