help: swap the order of the Complete and Comment functions

So that Commenting comes closer to the somewhat related Indenting
and Unindenting functions.
master
Benno Schulenberg 2017-12-26 21:36:29 +01:00
parent f9ebf038e0
commit 4c20135749
1 changed files with 5 additions and 5 deletions

View File

@ -970,13 +970,13 @@ void shortcut_init(void)
add_to_funcs(do_unindent, MMAIN,
N_("Unindent Text"), WITHORSANS(unindent_gist), BLANKAFTER, NOVIEW);
#endif
#ifdef ENABLE_WORDCOMPLETION
add_to_funcs(complete_a_word, MMAIN,
N_("Complete"), WITHORSANS(completion_gist), TOGETHER, NOVIEW);
#endif
#ifdef ENABLE_COMMENT
add_to_funcs(do_comment, MMAIN,
N_("Comment Lines"), WITHORSANS(comment_gist), BLANKAFTER, NOVIEW);
N_("Comment Lines"), WITHORSANS(comment_gist), TOGETHER, NOVIEW);
#endif
#ifdef ENABLE_WORDCOMPLETION
add_to_funcs(complete_a_word, MMAIN,
N_("Complete"), WITHORSANS(completion_gist), BLANKAFTER, NOVIEW);
#endif
#ifndef NANO_TINY
add_to_funcs(record_macro, MMAIN,