Xandor Schiefer
Xandor Schiefer
I have a simpler implementation here: https://github.com/JohannesKlauss/react-hotkeys-hook/pull/1132
Might be useful to cache previous choices by default (with an option to ignore that history if desired). Just print to the console that previous choice was used from amongst...
It still works fine with spaces for me.
Ampersand.js (a backbone-inspired JS framework) also uses this pattern. +1

With all refs being nullable now, do we still need the bivariance hack in `RefCallback`? Would prefer to have soundness there. It was reintroduced in https://github.com/DefinitelyTyped/DefinitelyTyped/pull/59395.
+1 Love the plugin. Just turned on 2FA after mergin my accounts and would love to have support for it.
If you're not using a full Desktop Environment, you can use [`darkman`](https://darkman.whynothugo.nl/) to automatically switch various programs between light and dark mode, and there's [`darkman.el`](https://darkman.grtcdr.tn) to sync the Emacs theme.
I worked around this by adding the following to my `config.el`: ```elisp (use-package! spell-fu :config (ispell-check-version)) ```
```typescript type PercentageParser = (A extends `${infer S extends '+' | '-'}${string}` ? S : '') extends infer S extends string ? (A extends `${string}${infer P extends '%'}` ? P...