]> git.wh0rd.org Git - nano.git/commitdiff
Limiting M-T to the main, and M-J to the main and search menus.
authorBenno Schulenberg <bensberg@justemail.net>
Sun, 6 Apr 2014 08:57:36 +0000 (08:57 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Sun, 6 Apr 2014 08:57:36 +0000 (08:57 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4736 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/global.c

index ad7274c5825fa2727b0e6c03c19f463b67dea754..7a9cb54e96cf19fbe2fc7330ddb291818c63f6a6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-04-06  Benno Schulenberg  <bensberg@justemail.net>
+       * src/global.c (shortcut_init): Limit M-T (cut-till-end) to the main
+       menu, and M-J (full-justify) to the main and search menus.
+
 2014-04-05  Benno Schulenberg  <bensberg@justemail.net>
        * src/nano.c (version): Print the correct configuration options.
        * src/{chars.c,nano.c,text.c}: Cosmetic tweaks.
index 74bb0d5cf18cdeba5a7ef40db0803466e26ab40e..d0aaa1417cc3359ce0154beb58e6a111cffd5333 100644 (file)
@@ -1229,14 +1229,15 @@ void shortcut_init(bool unjustify)
     add_to_sclist(MMAIN, "M->", switch_to_next_buffer_void, 0, TRUE);
     add_to_sclist(MMAIN, "M-.", switch_to_next_buffer_void, 0, TRUE);
 #endif
-    add_to_sclist(MALL, "M-V", do_verbatim_input, 0, TRUE);
 
+    add_to_sclist(MALL, "M-V", do_verbatim_input, 0, TRUE);
 #ifndef NANO_TINY
-    add_to_sclist(MALL, "M-T", do_cut_till_end, 0, TRUE);
+    add_to_sclist(MMAIN, "M-T", do_cut_till_end, 0, TRUE);
 #ifndef DISABLE_JUSTIFY
-    add_to_sclist(MALL, "M-J", do_full_justify, 0, TRUE);
+    add_to_sclist(MMAIN|MWHEREIS, "M-J", do_full_justify, 0, TRUE);
 #endif
     add_to_sclist(MMAIN, "M-D", do_wordlinechar_count, 0, TRUE);
+
     add_to_sclist(MMAIN, "M-X", do_toggle_void, NO_HELP, TRUE);
     add_to_sclist(MMAIN, "M-C", do_toggle_void, CONST_UPDATE, TRUE);
     add_to_sclist(MMAIN, "M-O", do_toggle_void, MORE_SPACE, TRUE);