Anders Johansson

Results 49 comments of Anders Johansson

Yes, I'd rather consider this a bug, since it breaks the expected functionality of in-build and other packages.

Oh, something like this, @metakermit ``` elisp (defun toggle-night-color-theme () "Switch to/from night color scheme." (interactive) (if (eq frame-background-mode 'dark) (setq frame-background-mode 'light) (setq frame-background-mode 'dark)) (load-theme 'solarized) (mapc 'frame-set-background-mode...

This is possible through the customization options in alert though. To customize how all notifications from org-pomodoro are displayed (through minibuffer messages in this case) one would do: (add-to-list 'alert-user-configuration...

Copying my comment from sr.ht mailing-list: > As discussed in another thread (”Re-direct to institution auth (Microsoft 365) not working”), this may have to do with the CORS-situation of the...

One issue that I did think about is that 14-word sentences in Swedish can tend to be pretty long, as Swedish, like German, write compound words together, to give fairly...

About 8 seconds, timing myself. But I think it would be something like that for most people, if they don't stumble on the words, which is quite possible reading a...

That’s great! I’m away from my computer for a few weeks now so won’t be able to take it forward for a while.

The sample extraction seems to result in an empty file? Could it be that all sentences are rejected for some reason or is there some other problem? One problem that...

I guess it would be possible to adapt @mronkko's perl script for that purpose: https://github.com/mronkko/ZoteroCleanOrphans/. Kind of the only thing that would need to be changed is the paths and...

This is a tricky problem to solve! `helm-preselect` searches on the formatted candidates in `helm-buffer` (it would perhaps be better if it adhered to `match-on-real` [which is true for `helm-find-files`],...