Takaaki ISHIKAWA

Results 59 comments of Takaaki ISHIKAWA

I'm not sure but it is not the problem of org-tree-slide. It is probably because of org itself according to the following article. https://adam.kruszewski.name/2022-05-08-org-publish-call-org-fold-core-region-error.html

If the change is a breaking from org 9.6, then I'll fix it in org-tree-slide.

OK, I think we can fix it if `.doom.d/modules/lang/org/autoload/contrib-present.el` will be updated something like: ``` ;;;###autoload (defun +org-present-hide-blocks-h () "Hide org #+ constructs." (save-excursion (goto-char (point-min)) (while (re-search-forward "^[[:space:]]*\\(#\\+\\)\\(\\(?:BEGIN\\|END\\|ATTR\\)[^[:space:]]+\\).*" nil...

Currently, `org-tree-slide` doesn't support such feature but I've heard that redrawing an image within an org buffer according to the frame width is possible by hacking `org-remove-flyspell-overlays-in` and `org-display-inline-images`. Sorry...

Hi! Thank you for reporting it. I'll check later :)

That's a good idea. I think it is something like a "front page of a presentation" not a header of each slide. Using materials above the first org heading in...

A workaround only for this case, please copy paste this code to your init.el. ``` (with-eval-after-load "org-tree-slide" (defun org-tree-slide--slide-in (blank-lines) "Apply slide in. The slide will be moved from BLANK-LINES...

I think your proposed approach is nice because I did similar way in `org-tree-slide--show-slide-header`. Regarding the issue on showing asterisks, could you kindly provide a screenshot in this thread?

Honestly speaking, it is really hard to show the asterisk in a sliding header because it is the key element to introduce the sliding effect. At this moment, unfortunately I...

Yeah, actually adding such feature is my wish listed in my org file. I'll select transient rather than hydra due to my personal preference.