* src/{nano.h,proto.h,color.c,cut.c,files.c,global.c,help.c,nano.c,
search.c,text.c,utils.c} - Add, fix, and remove some #endif comments,
remove an obsolete comment, and remove some superfluous #ifndefs.
+ * src/global.c (shortcut_init) - Put ^B and ^F in the same order as
+ all other command keys: first the backward then the forward motion.
2014-03-16 Benno Schulenberg <bensberg@justemail.net>
* src/nano.h - Display more help items when the terminal is wider.
}
#endif /* !NANO_TINY */
- add_to_funcs(do_right, MMAIN, N_("Forward"), IFSCHELP(nano_forward_msg),
- FALSE, VIEW);
-
-#ifndef DISABLE_BROWSER
- add_to_funcs(do_right, MBROWSER, N_("Forward"), IFSCHELP(nano_forwardfile_msg),
- FALSE, VIEW);
-#endif
-
- add_to_funcs(do_right, MALL, "", "", FALSE, VIEW);
-
add_to_funcs(do_left, MMAIN, N_("Back"), IFSCHELP(nano_back_msg),
FALSE, VIEW);
+ add_to_funcs(do_right, MMAIN, N_("Forward"), IFSCHELP(nano_forward_msg),
+ FALSE, VIEW);
#ifndef DISABLE_BROWSER
add_to_funcs(do_left, MBROWSER, N_("Back"), IFSCHELP(nano_backfile_msg),
FALSE, VIEW);
+ add_to_funcs(do_right, MBROWSER, N_("Forward"), IFSCHELP(nano_forwardfile_msg),
+ FALSE, VIEW);
#endif
add_to_funcs(do_left, MALL, "", "", FALSE, VIEW);
+ add_to_funcs(do_right, MALL, "", "", FALSE, VIEW);
#ifndef NANO_TINY
add_to_funcs(do_prev_word_void, MMAIN, N_("Prev Word"),