help wanted
Repository-Metriken
- Stars
- (3.090 Sterne)
- PR-Merge-Metriken
- (Durchschn. Merge 4m) (1 gemergte PR in 30 T)
Beschreibung
Currently the Cargo subprocess spawned by cargo-expand does not display Cargo's usual progress bar. I believe this is because we pipe the child's stderr to perform filtering here:
and that means Cargo does not get a winsize from this ioctl:
I tried a naive fix in #61 but it didn't work, the second ioctl fails with:
Inappropriate ioctl for device (os error 25)
Will need to figure out what's the correct way to provide a winsize to the child process.