nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit ef97655753f539156c95d2a296c3f9865157cebb
parent 24ed1bb5769afc75f9108e4f162d9ddca17f3bd2
Author: Benno Schulenberg <bensberg@justemail.net>
Date:   Sun,  6 Apr 2014 08:57:36 +0000

Limiting M-T to the main, and M-J to the main and search menus.


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4736 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
MChangeLog | 4++++
Msrc/global.c | 7++++---
2 files changed, 8 insertions(+), 3 deletions(-)

diff --git 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. diff --git a/src/global.c b/src/global.c @@ -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);