Roland Fredenhagen

Results 349 comments of Roland Fredenhagen

> Observation: The AppImage app will open the PDF on browsers and in the native document viewer, but will not open on Okular. The version built from source does not...

The AppImage seems to still have the same behavior

After I ran into this again, I thought I might as well start working on it. Will only implement the simple case where everything has the same type for now....

I'm gonna write down some more thoughts: if no types are specified, or `forward` is used, every field annotated with `#[as_ref]` would be required to be the same type? The...

https://lib.rs/crates/smart-default could be inspiration for the api

Well any of our derives that support enums have this problem. Because it happens when syn tries to parse the enum.

> Maybe this could be considered a bug in syn then? I guess, but I don't see how they could do it differently than adding a `Expr::Unknown(TokenStream)` and employing a...

In the end, I want to provide a `git config` like sub command, that can set and query configuration values. But the need to modify the on disc configuration file...

I would want to keep comments and such, but that would require to not use serde for the writing but a different trait that could ask a Config provider to...

I experimented a bit, and it looks like it wouldn't be too terrible to do a serde serializer that preservers the original data if possible: https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=dbda15adfbdf58defcaf2c5707a3a033 It uses `toml-edit` which...