[bim] Update terminal titles more often

This commit is contained in:
K. Lange 2018-09-05 21:36:40 +09:00
parent afa04c5aa5
commit f7f1be3b01
1 changed files with 4 additions and 0 deletions

View File

@ -2866,6 +2866,7 @@ void write_file(char * file) {
memcpy(env->file_name, file, strlen(file) + 1);
}
update_title();
redraw_all();
}
@ -3165,6 +3166,7 @@ void process_command(char * cmd) {
env = buffer_new();
setup_buffer(env);
redraw_all();
update_title();
} else if (!strcmp(argv[0], "w")) {
/* w: write file */
if (argc > 1) {
@ -3195,9 +3197,11 @@ void process_command(char * cmd) {
} else if (!strcmp(argv[0], "tabp")) {
/* Next tab */
previous_tab();
update_title();
} else if (!strcmp(argv[0], "tabn")) {
/* Previous tab */
next_tab();
update_title();
} else if (!strcmp(argv[0], "indent")) {
env->indent = 1;
redraw_statusbar();