Deselect nonexistent files after commands are run

This commit is contained in:
Bruce Hill 2023-10-15 02:12:29 -04:00
parent 03f0c2ad98
commit 9147b35b84

6
bb.c
View File

@ -364,6 +364,12 @@ static void handle_next_key_binding(bb_t *bb)
fputs("\033[K", tty_out); fputs("\033[K", tty_out);
restore_term(&orig_termios); restore_term(&orig_termios);
run_script(bb, binding->script); run_script(bb, binding->script);
for (entry_t *next, *e = bb->selected; e; e = next) {
next = e->selected.next;
struct stat buf;
if (stat(e->fullname, &buf) != 0)
set_selected(bb, e, 0);
}
init_term(); init_term();
set_title(bb); set_title(bb);
check_cmdfile(bb); check_cmdfile(bb);