nano

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

commit 1542cbf942af9b39c39775fbcde5c1d75326e08a
parent 727abceb0faff11742a5069583f2073648dba339
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Wed,  8 Jul 2020 15:41:56 +0200

bindings: add mistakenly removed M-J (Full Justify) back to the main menu

This fixes https://savannah.gnu.org/bugs/?58729.

Bug existed since commit ee03c4b8 from six weeks ago.

Diffstat:
Msrc/global.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/global.c b/src/global.c @@ -1324,6 +1324,7 @@ void shortcut_init(void) add_to_sclist(MMAIN, "M-D", 0, do_wordlinechar_count, 0); #endif #ifdef ENABLE_JUSTIFY + add_to_sclist(MMAIN, "M-J", 0, do_full_justify, 0); add_to_sclist(MEXECUTE, "^J", 0, do_full_justify, 0); #endif #if !defined(NANO_TINY) || defined(ENABLE_HELP)