You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
failed printing to stdout: Broken pipe (os error 32) speaks to a println!() panic. Rust's println! macro ignores SIGPIPE as it is obviously doing here and continues to try to write to stout after SIGPIPE was trying to communicate to it that it's closed. Moving to writeln!(stdout, "{}", style_line(...)) should fix this error. Will add PR when I have some time shortly.
Description
I've worked out how to use
fsrx
to speed up my reading of manpages. However, intermittently, I get an error when closing the pager.Expected behavior
Everything works as desired except for the error at the end.
Environment
fsrx
version:1.0.2
The text was updated successfully, but these errors were encountered: