Christian Vallentin

Results 100 comments of Christian Vallentin

This issue came up in a question on Stack Overflow. For anybody in need of a workaround for integer tags, then I [answered with a workaround] on Stack Overflow, using...

Personally, I'd prefer something like `#[error(with = fn)]`, where `fn` is `Fn(..., &mut fmt::Formatter) -> fmt::Result`, with `...` being references to the fields of the enum variant. ```rust #[derive(Error, Debug)]...

I like that approach more, but yeah, like I said, it definitely wasn't pretty. Personally, I approve of `long("")`, but I could definitely also see someone being confused by it...

I could use some more information if you don't mind! :) Could you clarify which OS you're using? and also after calling `vkelInit()` (assuming it returns `VK_TRUE`), does printing the...

I'll look into it, I'm in the process of rewriting `vkelIsSupported`, as it kinda doesn't differentiate between instance and device.

I was looking for this feature as well. As I have "fonts" dir in my project. To work around this, I'm currently doing the following: ```shell typst --font-path fonts watch...

So I am by no means an expert, and only just started playing around with this library myself. But when I did `cargo run --example switch` on a computer with...

Just in case you don't know, Askama has [whitespace control]. In short, if you add dashes e.g. `{% ... %}` vs `{%- ... -%}`, then along the direction of the...

If this is added, then please make it optional. I inversely prefer that the slashes aren't highlighted :)

Whether officially supported or not, currently both `mod other;` and `include!("other.rs");` works. However, the thing that doesn't work, is that `rust-script script.rs`, does not recompile if only `other.rs` changed. So...