can cancell acc mode

This commit is contained in:
Michael Neale
2025-10-29 13:13:41 +11:00
parent f53cd8e8f3
commit 6cfa1e225c

View File

@@ -700,7 +700,10 @@ async fn run_accumulative_mode(
}
}
}
Err(ReadlineError::Interrupted) => continue,
Err(ReadlineError::Interrupted) => {
output.print("\n👋 Interrupted. Goodbye!");
break;
}
Err(ReadlineError::Eof) => {
output.print("\n👋 Goodbye!");
break;