John Dunning
John Dunning
Actually, shouldn't it link to https://github.com/pages-themes/minimal, where the underlying templates are? This repo just seems to be a demo page.
It's a bit brute force, but you could disable *Automatic tab discarding* in `chrome://flags`.
Everything on the discarded tab is unloaded, including the scripts that cVim injects into every page. That's why the keyboard shortcut stops working. Turning off Chrome's discarding should prevent that...
Ah, then that's a bug in Chrome. I do see that behavior when ctrl-tabbing to a discarded page, without having The Great Discarder installed. It might be possible to write...
@prachp , thanks for investigating. I first saw the issue on a high-DPI screen with a scaled UI, where the browser zoom was at 100%. But you're right, the same...
I came to this thread from the same SC issue as @WilliamHoangUK, having needed transient props for the first time after moving to MUI v5. Having some sort of built-in...
Thanks for the link to the old docs! It's truly shocking how poorly documented this API is. Even how-to's for basic things like uploading an image asset are nigh impossible...
I just ran into this as well. All I did was add a `build-figma-plugin.main.js` file to the top-level directory. It contained just this code: ``` module.exports = function (buildOptions) {...
I think the `build-figma-plugin.main.js` file is imported [here](https://github.com/yuanqing/create-figma-plugin/blob/8b63d7bb9a12351d4d3a43ab7b9085e62f7e9f43/packages/build/src/utilities/build-bundles-async/build-bundles-async.ts#L44). It's resolving an absolute path to the build override file and then dynamically importing it. From [this node bug](https://github.com/nodejs/node/issues/31710) (which is "by...
Thanks for the feedback! I was actually just thinking about matching against an array of strings, from a discussion in #11. Would you expect the score for an array of...