Olivier
Olivier
I had post this bug [GCC PR 80962](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80962). I do not know haw bug report can be merged. Now I think the issue is broader. This gcc buggy behavior can...
Hi is it possible to add highlight groups clighterTemplateTypeParameterRef and clighterTemplateNonTypeParameterRef? I think it could be helpfull because it will help to see which variables are influenced by template parameter.
Could not Snafu also conditionally supports error types as: ```rust #derive(Debug, Snafu) enum Error { Foo{ source: T} } ``` I suppose it could be done by detecting that a...
There is another issue: the \ within `cargo test -- ` must have spaces escaped, other wise `cargo test` split the \ at each space and run all tests that...
Finaly I have [forked](https://github.com/Kannen/rust-tools.nvim) your repo and added native support for code lens and more: - RustRunSingle that run span the rust-analyzer.runSingle whose range cover the cursor position - RustDebugSingle...
I implemented a color crate, without knowing about "palette" and implemented different color spaces rgb, linear rgb, XYZ... and also color appearance model: Lab, Cam16 and Android HTC for a...
I have seen your code, there are cryptic macros "palette_internal". If you explain me I can try to implement Cam16 otherwise, here is an implementation: ``` #![allow(non_snake_case)] use super::{ChromaticAdaptation, ViewingCondition...
Ok, I'll try to implement it. How do we do? I have never worked with GitHub collaboratively. I have forked your repo. Should I push changes to the forked repo...
What about caching the rgb_to_xyz matrix and its inverse in the trait Primaries? This will dramatically increase conversion performance. It would be implemented as trait methods whose default implementation call...