1 2 3 4 5 6 7 8
/// Known command → suggested correction mappings. pub fn known_corrections() -> Vec<(&'static str, &'static str)> { vec![ ("npm test", "try: npx vitest or npm run test"), ("cargo run test", "try: cargo test"), ("python test", "try: pytest"), ] }