Alexandre Bury
Alexandre Bury
Ouch, indeed. I think we should add an internal flag that gets set on an error and reset on initialization/reset, and check that flag before running `decompressStream`. Technically not zero-cost,...
Hi, and thanks for the report! In general, there _may_ be overheads in the rust wrapper. Rust's `Read`/`Write` abstractions may involve some extra memcopies depending on the use-case. I'm open...
Thanks for the work! I merged main into this branch (solving minor conflicts that arose when views became `Send`), and it should now be closer to ready. One remark: the...
Thanks again for the work!
Hi! No reason, just didn't think about it. Would definitely appreciate a PR!
Hi, and thanks for the report! The logger backend is not attached by default. It's only attached in `cursive::logger::init()` (which itself is not called by any other code in `cursive`)....
Thanks for the report! We're currently using [`ansi-parser`](https://crates.io/crates/ansi-parser) to parse that (https://gitlab.com/davidbittner/ansi-parser). It looks like it's indeed not properly parsing some of the escapes output by `delta`. Looks like a...
Hi, and thanks for the work! I'm just concerned that this would cause excessive I/O in most cases. Maybe we need a different function specifically for when another application may...
This is a very good point! Having a more systematic approach to screenshots (or even small videos) would be great.
Hi, and thanks for the report! Indeed, there was an error in the layout logic with hidden scrollbars. It should be fixed on the latest commit.