Feature Request: Pause?
When working through a large set of warnings, I would like to be able to pause bacon to stop re-rendering on each save. This is because on every save the list gets progressively re-rendered / re-ordered which makes it difficult to handle a set of known warnings.
The reason I would like to use bacon here instead of just just directly running cargo check is because it provides a nice summary view and I would like to "unpause" occasionally to start the background compilation again.
This makes sense.
There is no implementation in the rust std library to pause Child instances however it would be possible to just freeze accepting new output.
@TheTollingBell There's no technical problem here, I just lack time for writing the implementation at the moment
In fact, I think I just encountered a situation in which I'd like to look at a lot of warnings, and ignore most of them, by running clippy with -W clippy::pedantic:
I wonder if what would be needed isn't a shortcut (with remote call API so that it can be called from an editor) to acknowledge a warning and make it go away (for a session). Maybe along "pausing" the results. What's your opinion on that @AlJohri ?