Sebastian Thiel
Sebastian Thiel
With these changes, I think this PR could be ready to go. It makes clear which 'special methods' are supported, and basically makes clear that all backends support everything, except...
Thanks a lot for the review @fintelia and sorry for not getting it earlier. Now the 'capabilities' test shows that all the `zlib` related things are basically unsupported by `miniz_oxide`,...
Thanks so much for making me aware of this feature! It is true that Git globs include character classes, Gitoxide also implements them, and that it's possible to pass specs...
It took a while, but left-sided glob patterns are now fully implemented. Compare what `ref-map` now produces, compared to Git. ```sh 06:19:48 remote-refs Connecting to "https://github.com/GitoxideLabs/gitoxide" refs/tags/v[0.9]* df1d23e4e6c489a74ab6c6845de49e54fe5a8f4d refs/tags/v0.1.0 object:19e7fec7deb5a6419f36a2732c90006377414181...
I could also validate that `clap` isn't doing this, instead it's here: https://github.com/gitbutlerapp/gitbutler/blob/15a089a1673d2451741d33ca173aecc135abb0c9/crates/but/src/rub/mod.rs#L227
Thanks a lot for reporting! This is a known issue, but it might be that by now there are better ways to deal with it. To see if the events...
> Yes right now I am using offsets.. I get the offsets with [`Parser::into_offset_iter`](https://docs.rs/pulldown-cmark/latest/pulldown_cmark/struct.Parser.html#method.into_offset_iter) and then I can use [String::replace_range](https://doc.rust-lang.org/std/string/struct.String.html#method.replace_range) in the original string. That way I guarantee that I...
Thanks for sharing! I'd also think that with the range-based iterator one should be able to do better, but only if the consumed range is complete, i.e. contains all the...
Thanks a lot for sharing - I am very interested in this line of work! Right now, without a cache and from my imperfect memory, we are easily slower by...
Thanks for being so upfront about it, much appreciated! Accepting cache-support in some shape or form should, and this is my hope, also mean that you can submit fixes and...