Implemented cmd runtime expansion for the prompt

This commit is contained in:
2025-03-09 03:51:49 -04:00
parent 58abe3bc3d
commit 9b805c542c
6 changed files with 84 additions and 48 deletions

View File

@@ -58,6 +58,7 @@ pub fn main() {
log!(TRACE, "Entered loop");
match prompt::read_line(&mut shenv) {
Ok(line) => {
shenv.meta_mut().start_timer();
let _ = exec_input(line, &mut shenv).eprint();
}
Err(e) => {