pihentagy
pihentagy
And it would be nice, if the UI would indicate if it needs saving. So, when in a clear state, the Save button should be disabled.
Is it difficult to implement this?
To query the dark mode once: ```js if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) { // dark mode is enabled document.documentElement.classList.add('dark-mode'); } else { // dark mode is disabled document.documentElement.classList.remove('dark-mode'); } ```...
Not digged into the code actually, so say if this won't work, but my thoughts are: - require a scheme for all plugs (use [zod](https://zod.dev/) or [valibot](https://github.com/fabian-hiller/valibot) - parse the...
There could be dependant plugs, so one may want to allow to dig in other plugs settings though...
A bit unclear for me what is the situations with the keymaps. Should one define all commands without any keybinding, right?
I have the `pages` directory as a symlink. Logseq does not detect any of the files inside it, so it is not searchable.
The root of the problem is that some antivirus software blocks`curl.exe` to avoid downloading spam. I had the same problem, have Avast Free working in the background. When pausing protecting,...