diff --git a/rust/forevervm/src/commands/repl.rs b/rust/forevervm/src/commands/repl.rs index 9c1f64f..9be1e16 100644 --- a/rust/forevervm/src/commands/repl.rs +++ b/rust/forevervm/src/commands/repl.rs @@ -24,6 +24,7 @@ pub async fn machine_repl(machine_name: Option) -> anyhow::Result<( match readline { Ok(line) => { + rl.add_history_entry(line.as_str())?; let result = repl.exec(&line).await; match result { Ok(mut result) => {