Elias Gabriel Amaral da Silva
Elias Gabriel Amaral da Silva
An update, I won't find time anytime soon to help with this.
Coincidentally I'm also looking for an equalizer for pipewire input (microphones) rather than output (headphones). I was searching AutoEq docs and it looks like it doesn't support this feature :(...
Is this related to #72?
> an alternative is the [storages proposal](https://internals.rust-lang.org/t/is-custom-allocators-the-right-abstraction/13460?u=programmerjake) ([wg-allocators issue](https://github.com/rust-lang/wg-allocators/issues/79)) that allows an ArrayVec to be written `Vec` where an array is used instead of an allocator, the array is stored...
I'm also interested! @segeljakt did you eventually fork rustyline or went with another solution?
There are ways to shim stdout for the web, like [wasm-glue](https://github.com/DeMille/wasm-glue) and [this nightly-only feature](https://github.com/rust-lang/rust/issues/31343). I'm not finding how to shim stdin right now, at least not for wasm32-unknown-unknown, but...
The whole site is down for me
Actually, no, that wouldn't work.. custom derive can't change the defined enum. It would need to be something like this ```rust #[derive_parser(grammar = "grammar.pest")] pub enum Rule; ```
Well, an alternate design is to add both `Rule` and `MyParser` to the source code, and add an attribute to make `MyParse` refer to `Rule` or vice-versa. Something like this:...
So https://github.com/haskell/vscode-haskell/pull/174 wasn't merged, and JustusAdam/language-haskell#186 (the followup PR) wasn't either, so.. the extension currently doesn't have this feature, right? (Or is there another PR I'm missing?)