Adam Porter

Results 2644 comments of Adam Porter

Thank you for asking, but I agree with your assessment. And although I've been interested in this package, I don't actually use it in any of my published packages. So...

I just stumbled across a few uses of `memoize` in my Emacs config that I'd forgotten about: ```el (require 'memoize) (defalias 'ap/directory-files-memoized (memoize (symbol-function 'directory-files) "1 minute")) ;; based on...

@nagy Thanks for that. Also FWIW Emacs has `with-memoization` now, but it works slightly differently.

FYI, the function added in https://github.com/skeeto/emacs-memoize/pull/10 handles this.

That's very interesting, Chris, thanks. I confirm the same results with your script. It is very surprising what a difference it makes. I wonder if that points to a bottleneck...

FYI: See discussion at https://github.com/skeeto/emacs-memoize/pull/10#issuecomment-877633800

> Do you know if the multisession works with Emacs 27? I remember first seeing the multisession as part of the emoji implementation of Emacs 29. No, it was added...

Hi Prot, No problem. I'm afraid my to-do list for Emacs packages is already more than I have time for, so I'll have to respectfully decline to send a patch....

I don't know if I have a list of faces per se. But if it helps, here's the code I currently use to customize these faces when changing theme: ```el...

Thanks!