main: let the main loop restore the main menu, if needed
Don't make it the responsibility of the executed functions to restore the list of shortcuts of the edit window. Just detect whether another menu was displayed, and if so, redisplay the main menu.master
parent
17fb6dfdc0
commit
9106cc8ecc
|
@ -131,6 +131,8 @@ char *do_browser(char *path)
|
||||||
curs_set(0);
|
curs_set(0);
|
||||||
lastmessage = HUSH;
|
lastmessage = HUSH;
|
||||||
|
|
||||||
|
bottombars(MBROWSER);
|
||||||
|
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
if (kbinput == KEY_WINCH) {
|
if (kbinput == KEY_WINCH) {
|
||||||
/* Remember the selected file, to be able to reselect it. */
|
/* Remember the selected file, to be able to reselect it. */
|
||||||
|
@ -245,9 +247,6 @@ char *do_browser(char *path)
|
||||||
#endif
|
#endif
|
||||||
/* TRANSLATORS: This is a prompt. */
|
/* TRANSLATORS: This is a prompt. */
|
||||||
browser_refresh, _("Go To Directory"));
|
browser_refresh, _("Go To Directory"));
|
||||||
|
|
||||||
bottombars(MBROWSER);
|
|
||||||
|
|
||||||
/* If the directory begins with a newline (i.e. an
|
/* If the directory begins with a newline (i.e. an
|
||||||
* encoded null), treat it as though it's blank. */
|
* encoded null), treat it as though it's blank. */
|
||||||
if (i < 0 || *answer == '\n') {
|
if (i < 0 || *answer == '\n') {
|
||||||
|
@ -782,11 +781,9 @@ void findnextfile(const char *needle)
|
||||||
/* Search for a filename. */
|
/* Search for a filename. */
|
||||||
void do_filesearch(void)
|
void do_filesearch(void)
|
||||||
{
|
{
|
||||||
if (filesearch_init() != 0) {
|
/* If the user cancelled or jumped to first or last file, don't search. */
|
||||||
/* Cancelled, or a blank search string, or done something. */
|
if (filesearch_init() != 0)
|
||||||
bottombars(MBROWSER);
|
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
|
|
||||||
/* If answer is now "", copy last_search into answer. */
|
/* If answer is now "", copy last_search into answer. */
|
||||||
if (*answer == '\0')
|
if (*answer == '\0')
|
||||||
|
@ -801,8 +798,6 @@ void do_filesearch(void)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
findnextfile(answer);
|
findnextfile(answer);
|
||||||
|
|
||||||
bottombars(MBROWSER);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Search again for the last given filename, without prompting. */
|
/* Search again for the last given filename, without prompting. */
|
||||||
|
|
|
@ -590,7 +590,6 @@ void switch_to_prevnext_buffer(bool to_next)
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
dump_filestruct(openfile->current);
|
dump_filestruct(openfile->current);
|
||||||
#endif
|
#endif
|
||||||
display_main_list();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Switch to the previous entry in the openfile filebuffer. */
|
/* Switch to the previous entry in the openfile filebuffer. */
|
||||||
|
@ -1342,8 +1341,6 @@ void do_insertfile_void(void)
|
||||||
FALSE
|
FALSE
|
||||||
#endif
|
#endif
|
||||||
);
|
);
|
||||||
|
|
||||||
display_main_list();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* When passed "[relative path]" or "[relative path][filename]" in
|
/* When passed "[relative path]" or "[relative path][filename]" in
|
||||||
|
@ -2474,8 +2471,6 @@ void do_writeout_void(void)
|
||||||
/* If the user chose to discard the buffer, close it. */
|
/* If the user chose to discard the buffer, close it. */
|
||||||
if (do_writeout(FALSE) == 2)
|
if (do_writeout(FALSE) == 2)
|
||||||
close_and_go();
|
close_and_go();
|
||||||
|
|
||||||
display_main_list();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
|
|
|
@ -167,8 +167,8 @@ bool refresh_needed = FALSE;
|
||||||
/* Did a command mangle enough of the buffer that we should
|
/* Did a command mangle enough of the buffer that we should
|
||||||
* repaint the screen? */
|
* repaint the screen? */
|
||||||
|
|
||||||
int currmenu;
|
int currmenu = MMOST;
|
||||||
/* The currently loaded menu. */
|
/* The currently active menu, initialized to a dummy value. */
|
||||||
sc *sclist = NULL;
|
sc *sclist = NULL;
|
||||||
/* Pointer to the start of the shortcuts list. */
|
/* Pointer to the start of the shortcuts list. */
|
||||||
subnfunc *allfuncs = NULL;
|
subnfunc *allfuncs = NULL;
|
||||||
|
|
|
@ -1112,8 +1112,6 @@ void do_exit(void)
|
||||||
close_and_go();
|
close_and_go();
|
||||||
else if (i != 1)
|
else if (i != 1)
|
||||||
statusbar(_("Cancelled"));
|
statusbar(_("Cancelled"));
|
||||||
|
|
||||||
display_main_list();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Close the current buffer, and terminate nano if it was the last. */
|
/* Close the current buffer, and terminate nano if it was the last. */
|
||||||
|
@ -2635,12 +2633,12 @@ int main(int argc, char **argv)
|
||||||
fprintf(stderr, "Main: bottom win, top win and edit win\n");
|
fprintf(stderr, "Main: bottom win, top win and edit win\n");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
display_main_list();
|
|
||||||
|
|
||||||
display_buffer();
|
display_buffer();
|
||||||
|
|
||||||
while (TRUE) {
|
while (TRUE) {
|
||||||
currmenu = MMAIN;
|
if (currmenu != MMAIN)
|
||||||
|
display_main_list();
|
||||||
|
|
||||||
focusing = TRUE;
|
focusing = TRUE;
|
||||||
lastmessage = HUSH;
|
lastmessage = HUSH;
|
||||||
|
|
||||||
|
|
|
@ -917,6 +917,8 @@ int do_yesno_prompt(bool all, const char *msg)
|
||||||
}
|
}
|
||||||
} while (response == -2);
|
} while (response == -2);
|
||||||
|
|
||||||
currmenu = oldmenu;
|
/* Restore the previously active menu. */
|
||||||
|
bottombars(oldmenu);
|
||||||
|
|
||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
|
|
|
@ -104,7 +104,6 @@ void not_found_msg(const char *str)
|
||||||
* search, if any. */
|
* search, if any. */
|
||||||
void search_replace_abort(void)
|
void search_replace_abort(void)
|
||||||
{
|
{
|
||||||
display_main_list();
|
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
if (openfile->mark_set)
|
if (openfile->mark_set)
|
||||||
edit_refresh();
|
edit_refresh();
|
||||||
|
@ -916,7 +915,6 @@ void do_gotolinecolumn(ssize_t line, ssize_t column, bool use_answer,
|
||||||
/* Cancel, or Enter with blank string. */
|
/* Cancel, or Enter with blank string. */
|
||||||
if (i < 0) {
|
if (i < 0) {
|
||||||
statusbar(_("Cancelled"));
|
statusbar(_("Cancelled"));
|
||||||
display_main_list();
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -937,7 +935,6 @@ void do_gotolinecolumn(ssize_t line, ssize_t column, bool use_answer,
|
||||||
line < 1 || column < 1) {
|
line < 1 || column < 1) {
|
||||||
if (i == 0)
|
if (i == 0)
|
||||||
statusbar(_("Invalid line or column number"));
|
statusbar(_("Invalid line or column number"));
|
||||||
display_main_list();
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -959,7 +956,6 @@ void do_gotolinecolumn(ssize_t line, ssize_t column, bool use_answer,
|
||||||
if (interactive) {
|
if (interactive) {
|
||||||
edit_update(CENTERING);
|
edit_update(CENTERING);
|
||||||
edit_refresh();
|
edit_refresh();
|
||||||
display_main_list();
|
|
||||||
} else {
|
} else {
|
||||||
/* If the target line is close to the tail of the file, put the last
|
/* If the target line is close to the tail of the file, put the last
|
||||||
* line of the file on the bottom line of the screen; otherwise, just
|
* line of the file on the bottom line of the screen; otherwise, just
|
||||||
|
|
19
src/text.c
19
src/text.c
|
@ -3139,8 +3139,6 @@ void do_spell(void)
|
||||||
unlink(temp);
|
unlink(temp);
|
||||||
free(temp);
|
free(temp);
|
||||||
|
|
||||||
currmenu = MMAIN;
|
|
||||||
|
|
||||||
/* If the spell-checker printed any error messages onscreen, make
|
/* If the spell-checker printed any error messages onscreen, make
|
||||||
* sure that they're cleared off. */
|
* sure that they're cleared off. */
|
||||||
total_refresh();
|
total_refresh();
|
||||||
|
@ -3187,16 +3185,16 @@ void do_linter(void)
|
||||||
|
|
||||||
if (i == -1) {
|
if (i == -1) {
|
||||||
statusbar(_("Cancelled"));
|
statusbar(_("Cancelled"));
|
||||||
goto exit_from_lint;
|
return;
|
||||||
} else if (i == 1 && (do_writeout(FALSE) != TRUE))
|
} else if (i == 1 && (do_writeout(FALSE) != TRUE))
|
||||||
goto exit_from_lint;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
lintcopy = mallocstrcpy(NULL, openfile->syntax->linter);
|
lintcopy = mallocstrcpy(NULL, openfile->syntax->linter);
|
||||||
/* Create a pipe up front. */
|
/* Create a pipe up front. */
|
||||||
if (pipe(lint_fd) == -1) {
|
if (pipe(lint_fd) == -1) {
|
||||||
statusbar(_("Could not create pipe"));
|
statusbar(_("Could not create pipe"));
|
||||||
goto exit_from_lint;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
blank_bottombars();
|
blank_bottombars();
|
||||||
|
@ -3244,14 +3242,14 @@ void do_linter(void)
|
||||||
if (pid_lint < 0) {
|
if (pid_lint < 0) {
|
||||||
close(lint_fd[0]);
|
close(lint_fd[0]);
|
||||||
statusbar(_("Could not fork"));
|
statusbar(_("Could not fork"));
|
||||||
goto exit_from_lint;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Get the system pipe buffer size. */
|
/* Get the system pipe buffer size. */
|
||||||
if ((pipe_buff_size = fpathconf(lint_fd[0], _PC_PIPE_BUF)) < 1) {
|
if ((pipe_buff_size = fpathconf(lint_fd[0], _PC_PIPE_BUF)) < 1) {
|
||||||
close(lint_fd[0]);
|
close(lint_fd[0]);
|
||||||
statusbar(_("Could not get size of pipe buffer"));
|
statusbar(_("Could not get size of pipe buffer"));
|
||||||
goto exit_from_lint;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Read in the returned syntax errors. */
|
/* Read in the returned syntax errors. */
|
||||||
|
@ -3349,7 +3347,7 @@ void do_linter(void)
|
||||||
|
|
||||||
if (!WIFEXITED(lint_status) || WEXITSTATUS(lint_status) > 2) {
|
if (!WIFEXITED(lint_status) || WEXITSTATUS(lint_status) > 2) {
|
||||||
statusbar(invocation_error(openfile->syntax->linter));
|
statusbar(invocation_error(openfile->syntax->linter));
|
||||||
goto exit_from_lint;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
free(read_buff);
|
free(read_buff);
|
||||||
|
@ -3357,7 +3355,7 @@ void do_linter(void)
|
||||||
if (parsesuccess == 0) {
|
if (parsesuccess == 0) {
|
||||||
statusline(HUSH, _("Got 0 parsable lines from command: %s"),
|
statusline(HUSH, _("Got 0 parsable lines from command: %s"),
|
||||||
openfile->syntax->linter);
|
openfile->syntax->linter);
|
||||||
goto exit_from_lint;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
bottombars(MLINTER);
|
bottombars(MLINTER);
|
||||||
|
@ -3464,9 +3462,6 @@ void do_linter(void)
|
||||||
free(tmplint->filename);
|
free(tmplint->filename);
|
||||||
free(tmplint);
|
free(tmplint);
|
||||||
}
|
}
|
||||||
|
|
||||||
exit_from_lint:
|
|
||||||
display_main_list();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef DISABLE_SPELLER
|
#ifndef DISABLE_SPELLER
|
||||||
|
|
Loading…
Reference in New Issue