nano

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

commit c43177487af6af21449fe3c27e295b72790dc723
parent f442f91187548173877cc9f121ce416f9e901934
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Mon,  8 Oct 2018 19:48:02 +0200

help: pull "Older" and "Newer" into view on an 80-column terminal

The ^P and ^N keystrokes for Older and Newer are relevant to searching
and should be visible in the help lines.  FullJustify, paragraph jumps,
and top/tail jumping are there only for compatibility with Pico but
don't make any sense there, so it's no problem if they are pushed out
of view.

Diffstat:
Msrc/global.c | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/global.c b/src/global.c @@ -817,6 +817,12 @@ void shortcut_init(void) add_to_funcs(flip_replace, MREPLACE, N_("No Replace"), WITHORSANS(whereis_gist), BLANKAFTER, VIEW); +#ifdef ENABLE_HISTORIES + add_to_funcs(get_history_older_void, MWHEREIS|MREPLACE|MREPLACEWITH|MWHEREISFILE, + N_("Older"), WITHORSANS(older_gist), TOGETHER, VIEW); + add_to_funcs(get_history_newer_void, MWHEREIS|MREPLACE|MREPLACEWITH|MWHEREISFILE, + N_("Newer"), WITHORSANS(newer_gist), BLANKAFTER, VIEW); +#endif #ifdef ENABLE_JUSTIFY add_to_funcs(do_full_justify, MWHEREIS, N_("FullJstify"), WITHORSANS(fulljustify_gist), TOGETHER, NOVIEW); @@ -988,12 +994,6 @@ void shortcut_init(void) add_to_funcs(do_savefile, MMAIN, N_("Save"), WITHORSANS(savefile_gist), BLANKAFTER, NOVIEW); #endif -#ifdef ENABLE_HISTORIES - add_to_funcs(get_history_older_void, MWHEREIS|MREPLACE|MREPLACEWITH|MWHEREISFILE, - N_("Older"), WITHORSANS(older_gist), TOGETHER, VIEW); - add_to_funcs(get_history_newer_void, MWHEREIS|MREPLACE|MREPLACEWITH|MWHEREISFILE, - N_("Newer"), WITHORSANS(newer_gist), BLANKAFTER, VIEW); -#endif #ifndef ENABLE_JUSTIFY add_to_funcs(flip_goto, MWHEREIS,