Open digitalsignalperson opened 1 year ago
This also happens when starting the service on the commandline with systemctl. Some automatically added newlines are pushed to the open terminal
From suggestion of @htrefil, I just do this for the fix
#[tokio::main]
async fn main() -> ExitCode {
+ time::sleep(Duration::from_millis(100)).await;
let filter = EnvFilter::builder()
As described in this comment in #45, when pressing the Enter key to start rkvm in the terminal, the key release event may be eaten by rkvm. The effect can be weirdness with different input events and spamming of newlines in the terminal until the Enter key is pressed again to provide the missing release event.