Chris

Results 39 comments of Chris

Adding `/** @jsxImportSource react */` to the top of the root layout makes `{ compiler: { emotion: true } }` work.

Calling `controller.abort()` in `onerror` can't cancel retries with this library. `onerror` is called here, after which the retry timer will be reset when it doesn't throw, without checking for `aborted`...

> Yes, there are keyboards that let you switch to Dvorak, Colemak, Azerty etc. in hardware (especially low-volume mechanical keyboards), but this stuff is pretty niche. In this case the...

You can configure the paths with arguments: https://github.com/Systemcluster/The-Witcher-3-Mod-manager/blob/c42e2024df733646810a54dfea8c2e227a46ddb4/main.py#L39-L47 Or inside the config file: https://github.com/Systemcluster/The-Witcher-3-Mod-manager/blob/c42e2024df733646810a54dfea8c2e227a46ddb4/src/configuration/config.py#L62-L67

I assume this is related to the changes in #189.

Changed in `0.9.2`, thanks!

I updated [my fork](https://github.com/Systemcluster/The-Witcher-3-Mod-manager) to run on Linux 👍

> It's kind of annoying because some 70% of examples will fail when running cargo doc or cargo test without specifying --all-features constantly. You can add your crate to its...

> The current heavy_compute shows bevy as about ~2x slower than specs. However, parallel_light_compute (see discussion) shows bevy is very sensitive to batch size and can be anywhere up to...

With `blank_lines_lower_bound` set to `0`, rustfmt (`1.4.27-nightly (580d826e 2020-11-16)`) will still insert blank lines between `fn`s, for example ```rust impl A { fn a() { /* ... */ } fn...