tweaks: fully include Savefile and Wherewas in the tiny version
If help is enabled, those functions should be described too, and if nanorc is enabled, they should both be rebindable.master
parent
ada78dc89d
commit
c9ccb39752
|
@ -633,8 +633,8 @@ void shortcut_init(void)
|
||||||
const char *comment_gist =
|
const char *comment_gist =
|
||||||
N_("Comment/uncomment the current line (or marked lines)");
|
N_("Comment/uncomment the current line (or marked lines)");
|
||||||
#endif
|
#endif
|
||||||
#ifndef NANO_TINY
|
|
||||||
const char *savefile_gist = N_("Save file without prompting");
|
const char *savefile_gist = N_("Save file without prompting");
|
||||||
|
#ifndef NANO_TINY
|
||||||
const char *findprev_gist = N_("Search next occurrence backward");
|
const char *findprev_gist = N_("Search next occurrence backward");
|
||||||
const char *findnext_gist = N_("Search next occurrence forward");
|
const char *findnext_gist = N_("Search next occurrence forward");
|
||||||
const char *recordmacro_gist = N_("Start/stop recording a macro");
|
const char *recordmacro_gist = N_("Start/stop recording a macro");
|
||||||
|
@ -985,14 +985,13 @@ void shortcut_init(void)
|
||||||
N_("Record"), WITHORSANS(recordmacro_gist), TOGETHER, VIEW);
|
N_("Record"), WITHORSANS(recordmacro_gist), TOGETHER, VIEW);
|
||||||
add_to_funcs(run_macro, MMAIN,
|
add_to_funcs(run_macro, MMAIN,
|
||||||
N_("Run Macro"), WITHORSANS(runmacro_gist), BLANKAFTER, VIEW);
|
N_("Run Macro"), WITHORSANS(runmacro_gist), BLANKAFTER, VIEW);
|
||||||
|
#endif
|
||||||
add_to_funcs(do_search_backward, MMAIN,
|
add_to_funcs(do_search_backward, MMAIN,
|
||||||
/* TRANSLATORS: This starts a backward search. */
|
/* TRANSLATORS: This starts a backward search. */
|
||||||
N_("Where Was"), WITHORSANS(wherewas_gist), BLANKAFTER, VIEW);
|
N_("Where Was"), WITHORSANS(wherewas_gist), BLANKAFTER, VIEW);
|
||||||
|
|
||||||
add_to_funcs(do_savefile, MMAIN,
|
add_to_funcs(do_savefile, MMAIN,
|
||||||
N_("Save"), WITHORSANS(savefile_gist), BLANKAFTER, NOVIEW);
|
N_("Save"), WITHORSANS(savefile_gist), BLANKAFTER, NOVIEW);
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef ENABLE_HISTORIES
|
#ifdef ENABLE_HISTORIES
|
||||||
add_to_funcs(get_history_older_void, MWHEREIS|MREPLACE|MREPLACEWITH|MWHEREISFILE,
|
add_to_funcs(get_history_older_void, MWHEREIS|MREPLACE|MREPLACEWITH|MWHEREISFILE,
|
||||||
|
@ -1471,10 +1470,8 @@ sc *strtosc(const char *input)
|
||||||
s->scfunc = discard_buffer;
|
s->scfunc = discard_buffer;
|
||||||
else if (!strcasecmp(input, "writeout"))
|
else if (!strcasecmp(input, "writeout"))
|
||||||
s->scfunc = do_writeout_void;
|
s->scfunc = do_writeout_void;
|
||||||
#ifndef NANO_TINY
|
|
||||||
else if (!strcasecmp(input, "savefile"))
|
else if (!strcasecmp(input, "savefile"))
|
||||||
s->scfunc = do_savefile;
|
s->scfunc = do_savefile;
|
||||||
#endif
|
|
||||||
else if (!strcasecmp(input, "insert"))
|
else if (!strcasecmp(input, "insert"))
|
||||||
s->scfunc = do_insertfile_void;
|
s->scfunc = do_insertfile_void;
|
||||||
else if (!strcasecmp(input, "whereis"))
|
else if (!strcasecmp(input, "whereis"))
|
||||||
|
|
Loading…
Reference in New Issue