nano-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Nano-devel] [PATCH 2/2] help: pull "Older" and "Newer" into view on an


From: Benno Schulenberg
Subject: [Nano-devel] [PATCH 2/2] help: pull "Older" and "Newer" into view on an 80-column terminal
Date: Mon, 8 Oct 2018 20:03:57 +0200

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.
---
 src/global.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/global.c b/src/global.c
index cceeb57b..9a6a7aeb 100644
--- a/src/global.c
+++ b/src/global.c
@@ -809,6 +809,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);
@@ -980,12 +986,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,
-- 
2.17.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]