clap-rs / clap

A full featured, fast Command Line Argument Parser for Rust
docs.rs/clap
Apache License 2.0
13.65k stars 1.02k forks source link

fix(complete): Don't panic on broken pipe #5453

Closed yedayak closed 2 months ago

yedayak commented 2 months ago

If the completion is piped to another command, for example into less, and that program stops before reading everything, the write fails and the program panics. Make it exit gracefully instead.