Adrian Alic

Results 9 comments of Adrian Alic

How come this is still not merged? I think fixing this would spare many users of this theme trouble

I see, thanks for the explanation. It looks like I had a misunderstanding of WIRE compatibility. I would have expected `buf` to just look at the message structure. On a...

It seems like you already planned to select descendants https://github.com/y21/tl/blob/1b8fab3021cb6c8ab9645e5e3e4d44d307b618d5/src/queryselector/selector.rs#L18 The match case is just not implemented in `matches`. This would probably be a good first step, right?

> Yep, though I'm not sure about the complexity of adding this to the query selector. It's probably worth mentioning somewhere in the docs that not all of the query...

Have you considered putting a `&VDom` reference into the NodeHandler struct? Because we need to give the parser to the `select_query` function every time, and this makes writing chainable APIs...

Thanks for explaining your thoughts, I see now how that approach creates some problems. I really like the idea of a sink though

wow good stuff! I think those are great improvements! I'll try out the new features, cheers!

What do you think of adding a `ParserOptions::skip_whitespace()`? I noticed when parsing there were quite a few `Raw(Bytes("\n\n"))` that I'd like to ignore. Or should I rather create a sink...

I'm also on Fedora 42 w/ clang 20. I'm using this quick fix: ``` export CXXFLAGS="$CXXFLAGS -include cstdint" ```