Jan R
Jan R
I can reproduce this. It also happens when I only use the example code from hideshow.el: ```elisp (defun hideshowvis-display-code-line-counts (ov) (when (eq 'code (overlay-get ov 'hs)) (overlay-put ov 'display (format...
I think I found a fix. With this I don't see the issue happening anymore. Could you try and see if this works for you? ```elisp (defun hideshowvis-display-code-line-counts (ov) (when...
I have the same problem. I'm seeing this prompt whenever a new calendar or address book gets added: ``` Should vdirsyncer attempt to create it? [y/N]: y ``` This is...
Agreed. I just discovered the ongoing rewrite of vdirsyncer [here](https://pimutils.org/blog/2025-01-08-pimsync-a-successor-to-vdirsyncer/). I didn't get around to test it, yet but maybe it already has this feature?
Thanks for all those fitting names! org-pilot made me think of org-cockpit which I think fits as this menu tries to pack all of org's functionality into an easily reachable...
Thanks for the bug report. I can't reproduce it, though. I've tried the following with Emacs 29.1 in a macOs and nix-darwin config: 1. Create new buffer containing (w/o the...
I could reproduce this in Emacs 31 (current development version), only. I plan to get this fixed before that version gets released but it's not a high priority for me,...
I've found the reason. It seems to be a bug in the htmlize lib impatient-mode uses. Repro steps: 1. create new buffer 2. M-x impatient-mode 3. Insert this snippet: `(insert...
@the42 I've added a work-around to not trigger the limitation in htmlize anymore and opened a bug there (see above)
There is only one use of rx in org-menu in org-menu-toggle-zwspace. You could try to evaluate `(defun org-menu-toggle-zwspace () nil)` after loading org-menu as a hacky work-around until this is...