Added +execute (for, e.g. `bb +e:"bb +goto:$(ls | pick "Go to file:

")"`)
This commit is contained in:
Bruce Hill 2019-10-03 13:35:53 -07:00
parent 9c01fd6a37
commit 6b63ea5d40

9
bb.c
View File

@ -708,6 +708,15 @@ bb_result_t process_cmd(bb_t *bb, const char *cmd)
}
}
}
case 'e': { // +execute:
if (!value || !value[0]) return BB_INVALID;
move_cursor(tty_out, 0, termheight-1);
fputs(T_ON(T_SHOW_CURSOR), tty_out);
restore_term(&default_termios);
run_script(bb, value);
init_term();
return BB_OK;
}
case 'g': { // +goto:
if (!value) return BB_INVALID;
entry_t *e = load_entry(bb, value, 1);